mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
1.8 KiB
102 lines
1.8 KiB
{ |
|
// See https://go.microsoft.com/fwlink/?LinkId=733558 |
|
// for the documentation about the tasks.json format |
|
"version": "2.0.0", |
|
"tasks": [ |
|
{ |
|
"type": "process", |
|
"label": "Cargo Run", |
|
"command": "cargo", |
|
"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", |
|
"isDefault": true |
|
}, |
|
"presentation": { |
|
"clear": true |
|
} |
|
}, |
|
{ |
|
"type": "process", |
|
"label": "Cargo Test", |
|
"command": "cargo", |
|
"args": [ |
|
"test" |
|
], |
|
"problemMatcher": [ |
|
"$rustc" |
|
], |
|
"group": { |
|
"kind": "test", |
|
"isDefault": true |
|
}, |
|
"presentation": { |
|
"clear": true |
|
} |
|
}, |
|
{ |
|
"type": "process", |
|
"label": "Cargo Test Build", |
|
"command": "cargo", |
|
"args": [ |
|
"test", |
|
"--no-run" |
|
], |
|
"problemMatcher": [ |
|
"$rustc" |
|
], |
|
"group": { |
|
"kind": "build", |
|
"isDefault": true |
|
} |
|
} |
|
] |
|
}
|
|
|