Skip to content

Commit

Permalink
Adjust SQL grammar to Lezer 0.12 notation
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Oct 23, 2020
1 parent 9af7ceb commit dedf8f7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lang-sql/src/sql.grammar
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ element {
Number
Bool
Null
ParenL[name="("]
ParenR[name=")"]
BraceL[name="["]
BraceR[name="]"]
BracketL[name="{"]
BracketR[name="}"]
Semi[name=";"]
Dot[name="."]
ParenL[@name="("]
ParenR[@name=")"]
BraceL[@name="["]
BraceR[@name="]"]
BracketL[@name="{"]
BracketR[@name="}"]
Semi[@name=";"]
Dot[@name="."]
Operator
Punctuation
SpecialVar
Expand Down

0 comments on commit dedf8f7

Please sign in to comment.