Files
Kmake/test/parallel/test-eval-disallow-code-generation-from-strings.js

10 lines
257 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
// Flags: --disallow-code-generation-from-strings
'use strict';
require('../common');
const assert = require('assert');
// Verify that v8 option --disallow-code-generation-from-strings is still
// respected
assert.throws(() => eval('"eval"'), EvalError);