method

parse_group

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_group()
private

No documentation available.

# File actionpack/lib/action_dispatch/journey/parser.rb, line 74
        def parse_group
          advance_token
          node = parse_expressions
          if @next_token == :RPAREN
            node = Group.new(node)
            advance_token
            node
          else
            raise ArgumentError, "missing right parenthesis."
          end
        end