| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 3a6dcdf commit 6e70c5c
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -367,6 +367,7 @@ Node options that are allowed are: | |||
| 367 | 367 | - `--zero-fill-buffers` | |
| 368 | 368 | ||
| 369 | 369 | V8 options that are allowed are: | |
| 370 | + - `--abort-on-uncaught-exception` | ||
| 370 | 371 | - `--max_old_space_size` | |
| 371 | 372 | ||
| 372 | 373 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3811,6 +3811,7 @@ static void CheckIfAllowedInEnv(const char* exe, bool is_env, | |||
| 3811 | 3811 | "--icu-data-dir", | |
| 3812 | 3812 | ||
| 3813 | 3813 | // V8 options | |
| 3814 | + "--abort-on-uncaught-exception", | ||
| 3814 | 3815 | "--max_old_space_size", | |
| 3815 | 3816 | }; | |
| 3816 | 3817 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -41,7 +41,8 @@ function disallow(opt) { | |||
| 41 | 41 | ||
| 42 | 42 | const printA = require.resolve('../fixtures/printA.js'); | |
| 43 | 43 | ||
| 44 | - expect('-r ' + printA, 'A\nB\n'); | ||
| 44 | + expect(`-r ${printA}`, 'A\nB\n'); | ||
| 45 | + expect('--abort-on-uncaught-exception', 'B\n'); | ||
| 45 | 46 | expect('--no-deprecation', 'B\n'); | |
| 46 | 47 | expect('--no-warnings', 'B\n'); | |
| 47 | 48 | expect('--trace-warnings', 'B\n'); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments