method

parse_expression

rails latest stable - Class: ActionDispatch::Journey::Parser

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

parse_expression()
private

No documentation available.

# File actionpack/lib/action_dispatch/journey/parser.rb, line 58
        def parse_expression
          if @next_token == :STAR
            parse_star
          elsif @next_token == :LPAREN
            parse_group
          else
            parse_terminal
          end
        end