Skip to content

Commit

Permalink
Fixed an issue with ESAQUOTE reference in AQUOTE
Browse files Browse the repository at this point in the history
  • Loading branch information
daKuleMune committed May 25, 2018
1 parent 5f3bb5a commit d2739ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions BnfRules.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ exports.bnfRules = {
//DO BE REMOVED IN THIS MAJOR VERSION! DO NOT USE!
AQEANYCHAR( token ){
return token.Or( [
token.Rule( "ESAQUOTE" ),
token.Rule( "ESCAQUOTE" ),
token.Rule( "ANYCHAR" ),
token.Rule( "SQUOTE" ),
token.Rule( "QUOTE" ),
Expand All @@ -206,7 +206,7 @@ exports.bnfRules = {
rule : ( t ) =>
t.Grammar( "GROUP", ( t1 ) =>
t1.Or( [
t1.Rule( "ESAQUOTE" ),
t1.Rule( "ESCAQUOTE" ),
t1.Rule( "ANYCHAR" ),
t1.Rule( "SQUOTE" ),
t1.Rule( "QUOTE" ),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"license": "GPL-3.0",
"dependencies" : [],
"main" : "./Compiler.js",
"version" : "1.0.0"
"version" : "1.0.1"
}

0 comments on commit d2739ec

Please sign in to comment.