Skip to content

Commit

Permalink
Parser fixes #225 #240 #273 (#281)
Browse files Browse the repository at this point in the history
New parser!
Plus loads of tidy up in various places.

Co-authored-by: Jason Williams <[email protected]>
Co-authored-by: HalidOdat <[email protected]>
Co-authored-by: Iban Eguia <[email protected]>
Co-authored-by: Iban Eguia <[email protected]>
  • Loading branch information
5 people authored Mar 31, 2020
1 parent 5a85c59 commit 48c6e88
Show file tree
Hide file tree
Showing 48 changed files with 3,242 additions and 2,175 deletions.
30 changes: 29 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,35 @@
"type": "process",
"label": "Cargo Run",
"command": "cargo",
"args": ["run"],
"args": ["run", "./tests/js/test.js"],
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
},
{
"type": "process",
"label": "Get Tokens",
"command": "cargo",
"args": ["run", "--", "-t=Debug", "./tests/js/test.js"],
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
},
{
"type": "process",
"label": "Get AST",
"command": "cargo",
"args": ["run", "--", "-a=Debug", "./tests/js/test.js"],
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
Expand Down
Loading

0 comments on commit 48c6e88

Please sign in to comment.