Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Syntax

Description

$enclosingRule.attr

ENCLOSING_RULE_SCOPE_ATTR
x is enclosing rule, y is a return value, parameter, or
predefined property. Rule ENCLOSING_RULE_SCOPE_ATTR.

No Format
r[int i] returns [int j]
  :    {$r.i, $r.j, $r.start, $r.stop, $r.st, $r.tree}
  ;

$tokenLabel.prop
$tokenRef.prop

token scope attribute. Rule TOKEN_SCOPE_ATTR.

$rulelabel.attr
$ruleref.attr

Rule RULE_SCOPE_ATTR.

$label

either a token label or token/rule list label like label+=expr. Rule LABEL_REF.

$tokenref

in a non-lexer grammar ISOLATED_TOKEN_REF

$lexerruleref

Yields a Token object created from that rule or fragment rule. Rule ISOLATED_LEXER_RULE_REF from lexer .

$y

return value, parameter, predefined rule property, or token/rule
reference within enclosing rule's outermost alt.
y must be a "local" reference; i.e., it must be referring to
something defined within the enclosing rule. Rule LOCAL_ATTR.

No Format
r[int i] returns [int j]
  :    {$i, $j, $start, $stop, $st, $tree}
  ;

$x::y

DYNAMIC_SCOPE_ATTR the only way to access the attributes within a dynamic scope
regardless of whether or not you are in the defining rule. Rule DYNAMIC_SCOPE_ATTR.

No Format
            scope Symbols { List names; }
            r
            scope {int i;}
            scope Symbols;
                :    {$r::i=3;} s {$Symbols::names;}
                ;
            s    :    {$r::i; $Symbols::names;}
                ;

ff

DYNAMIC_NEGATIVE_INDEXED_SCOPE_ATTR

$x[-1]::y

previous (just under top of stack). Rule DYNAMIC_NEGATIVE_INDEXED_SCOPE_ATTR.

$x[-i]::y

top of stack - i where the '-' MUST BE PRESENT;
i.e., i cannot simply be negative without the '-' sign! Rule DYNAMIC_NEGATIVE_INDEXED_SCOPE_ATTR.

$x[i]::y

absolute index i (0..size-1). Rule DYNAMIC_NEGATIVE_INDEXED_SCOPE_ATTR.

$x[0]::y

is the absolute 0 indexed element (bottom of the stack). Rule DYNAMIC_NEGATIVE_INDEXED_SCOPE_ATTR.

$r

r is a rule's dynamic scope or a global shared scope.
Isolated $rulename is not allowed unless it has a dynamic scope and there is no reference to rulename in the enclosing alternative, which would be ambiguous. Rule ISOLATED_DYNAMIC_SCOPE.

The following symbols relate to StringTemplate templates.

...