Skip to content

Commit

Permalink
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 <jwilliams720@bloomberg.net>
Co-authored-by: HalidOdat <halidodat@gmail.com>
Co-authored-by: Iban Eguia <iban.eguia@cern.ch>
Co-authored-by: Iban Eguia <razican@protonmail.ch>
  • Loading branch information
5 people committed 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
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

0 comments on commit 48c6e88

Please sign in to comment.