Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsh committed Dec 5, 2011
1 parent 84c34d3 commit e8c12dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ Rule modifiers:
3. left: left-associativity support. PSI node for this rule will enclose the one to the left.
4. inner: left-injection. PSI node for this rule will be injected into the one to the left.
5. meta: meta grammar support. Meta rules work in conjunction with external expressions.
You can combine the modifiers. Note that "private left" = "private left inner".
You can combine modifiers. "inner" should only be used together with "left".
Note that "private left" = "private left inner".

Meta rules & external expressions:
External expression << ... >> is simply an inlined external rule reference.
External expression << ... >> is simply an inline variant of external rule.
They can also be used to include meta rule with arguments.
For example:
meta comma_separated_list ::= <<param>> ( ',' <<param>> ) *
Expand Down

0 comments on commit e8c12dc

Please sign in to comment.