mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
10 lines
257 B
JavaScript
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);
|