| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 7cff1e1 commit 459d448
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1945,6 +1945,7 @@ V8 options that are allowed are: | |||
| 1945 | 1945 | * `--interpreted-frames-native-stack` | |
| 1946 | 1946 | * `--jitless` | |
| 1947 | 1947 | * `--max-old-space-size` | |
| 1948 | + * `--max-semi-space-size` | ||
| 1948 | 1949 | * `--perf-basic-prof-only-functions` | |
| 1949 | 1950 | * `--perf-basic-prof` | |
| 1950 | 1951 | * `--perf-prof-unwinding-info` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -709,6 +709,7 @@ PerIsolateOptionsParser::PerIsolateOptionsParser( | |||
| 709 | 709 | V8Option{}, | |
| 710 | 710 | kAllowedInEnvvar); | |
| 711 | 711 | AddOption("--max-old-space-size", "", V8Option{}, kAllowedInEnvvar); | |
| 712 | + AddOption("--max-semi-space-size", "", V8Option{}, kAllowedInEnvvar); | ||
| 712 | 713 | AddOption("--perf-basic-prof", "", V8Option{}, kAllowedInEnvvar); | |
| 713 | 714 | AddOption( | |
| 714 | 715 | "--perf-basic-prof-only-functions", "", V8Option{}, kAllowedInEnvvar); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -72,6 +72,7 @@ expect('--disallow-code-generation-from-strings', 'B\n'); | |||
| 72 | 72 | expect('--huge-max-old-generation-size', 'B\n'); | |
| 73 | 73 | expect('--jitless', 'B\n'); | |
| 74 | 74 | expect('--max-old-space-size=0', 'B\n'); | |
| 75 | + expect('--max-semi-space-size=0', 'B\n'); | ||
| 75 | 76 | expect('--stack-trace-limit=100', | |
| 76 | 77 | /(\s*at f \(\[(eval|worker eval)\]:1:\d*\)\r?\n)/, | |
| 77 | 78 | '(function f() { f(); })();', | |
| Back | FazBrowse Home | New Git URL |
0 commit comments