Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Commit

Permalink
Add variant to module node. Closes #37
Browse files Browse the repository at this point in the history
  • Loading branch information
nwronski committed Nov 1, 2016
1 parent 15f53da commit 1599a58
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/sqlite-parser.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/parser.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/grammar.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -2478,6 +2478,7 @@ virtual_module
{
return Object.assign({
'type': 'module',
'variant': 'virtual',
'name': m
}, a);
}
Expand Down
1 change: 1 addition & 0 deletions src/parser.js

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

Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"result": {
"type": "module",
"variant": "virtual",
"name": "happy_module",
"args": {
"type": "expression",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"result": {
"type": "module",
"variant": "virtual",
"name": "happy_module",
"args": {
"type": "expression",
Expand Down

0 comments on commit 1599a58

Please sign in to comment.