Files
Kmake/test/parallel/test-eval-disallow-code-generation-from-strings.js
2026-05-26 23:36:42 -07:00

10 lines
257 B
JavaScript

// 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);