(self)
| 64 | return ['--enable-inspector', '--allow-natives-syntax'] |
| 65 | |
| 66 | def _get_source_path(self): |
| 67 | # Try .js first, and fall back to .mjs. |
| 68 | # TODO(v8:9406): clean this up by never separating the path from |
| 69 | # the extension in the first place. |
| 70 | js_file = self.suite.root / self.path_js |
| 71 | if js_file.exists(): |
| 72 | return js_file |
| 73 | return self.suite.root / self.path_mjs |
no test coverage detected