From 16738711164cd31d3fe0e15826b1b3e06413651e Mon Sep 17 00:00:00 2001 From: Iban Eguia Date: Wed, 2 Sep 2020 15:45:29 +0200 Subject: [PATCH] Some cleanup (#666) --- .github/ISSUE_TEMPLATE/bug_report.md | 14 +- .github/ISSUE_TEMPLATE/custom.md | 8 +- .github/ISSUE_TEMPLATE/feature_request.md | 5 +- .github/PULL_REQUEST_TEMPLATE.md | 7 +- .github/workflows/master.yml | 13 +- .github/workflows/pull_request.yml | 6 +- .github/workflows/rust.yml | 50 +- .github/workflows/security_audit.yml | 2 +- .github/workflows/webassembly.yml | 51 ++ .prettierignore | 8 + .vscode/launch.json | 14 +- .vscode/tasks.json | 41 +- CODE_OF_CONDUCT.md | 24 +- Cargo.lock | 76 ++- Makefile | 14 - README.md | 1 - boa/benches/README.md | 7 +- .../bench_scripts/arithmetic_operations.js | 2 +- boa/benches/bench_scripts/array_access.js | 6 +- boa/benches/bench_scripts/array_create.js | 12 +- boa/benches/bench_scripts/array_pop.js | 239 ++++++- .../bench_scripts/boolean_object_access.js | 10 +- boa/benches/bench_scripts/fibonacci.js | 12 +- boa/benches/bench_scripts/for_loop.js | 12 +- .../bench_scripts/goal_symbol_switch.js | 4 +- boa/benches/bench_scripts/hello_world.js | 3 +- boa/benches/bench_scripts/long_repetition.js | 14 +- .../bench_scripts/number_object_access.js | 10 +- boa/benches/bench_scripts/object_creation.js | 10 +- .../bench_scripts/object_prop_access_const.js | 10 +- .../bench_scripts/object_prop_access_dyn.js | 10 +- boa/benches/bench_scripts/regexp.js | 4 +- boa/benches/bench_scripts/regexp_creation.js | 4 +- boa/benches/bench_scripts/regexp_literal.js | 4 +- .../bench_scripts/regexp_literal_creation.js | 4 +- boa/benches/bench_scripts/string_compare.js | 12 +- boa/benches/bench_scripts/string_concat.js | 8 +- boa/benches/bench_scripts/string_copy.js | 6 +- .../bench_scripts/string_object_access.js | 10 +- boa/benches/bench_scripts/symbol_creation.js | 2 +- boa/src/syntax/parser/tests.rs | 4 +- docs/debugging.md | 7 +- docs/profiling.md | 1 - index.js | 2 +- package.json | 9 +- webpack.config.js | 36 +- yarn.lock | 646 +++++++++++++----- 47 files changed, 972 insertions(+), 482 deletions(-) create mode 100644 .github/workflows/webassembly.yml create mode 100644 .prettierignore delete mode 100644 Makefile diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 59e8e907a8..9773988656 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,10 +1,9 @@ --- name: "\U0001F41B Bug report" about: Create a report to help us improve -title: '' +title: "" labels: bug -assignees: '' - +assignees: "" --- **Build environment (please complete the following information):** - - OS: [e.g. Fedora Linux] - - Version: [e.g. 32] - - Target triple: [e.g. x86_64-unknown-linux-gnu] - - Rustc version: [e.g. rustc 1.43.0 (4fb7144ed 2020-04-20), running `rustc -V`] + +- OS: [e.g. Fedora Linux] +- Version: [e.g. 32] +- Target triple: [e.g. x86_64-unknown-linux-gnu] +- Rustc version: [e.g. rustc 1.43.0 (4fb7144ed 2020-04-20), running `rustc -V`] **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md index 6b629d9563..56ac0923c3 100644 --- a/.github/ISSUE_TEMPLATE/custom.md +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -1,13 +1,13 @@ --- name: Custom about: Open an issue in the repo that is neither a bug or a feature, such a new idea -title: '' -labels: '' -assignees: '' - +title: "" +labels: "" +assignees: "" --- + E.g.: I think we should improve the way the JavaScript interpreter works by... diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 655a05e9d7..a78986bab9 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,10 +1,9 @@ --- name: "\U0001F680 Feature request" about: Suggest a new ECMAScript feature to be implemented, or a new capability of the engine. -title: '' +title: "" labels: enhancement -assignees: '' - +assignees: "" ---