Skip to content

Commit

Permalink
Merge 86df1fc into 5a85c59
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams authored Mar 31, 2020
2 parents 5a85c59 + 86df1fc commit fa1ce00
Show file tree
Hide file tree
Showing 40 changed files with 3,207 additions and 2,140 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 fa1ce00

Please sign in to comment.