summaryrefslogtreecommitdiff
path: root/test/parallel/test-eval-disallow-code-generation-from-strings.js
blob: c9c0c60b773ce8c8e77081e2c62ffc2d7921803e (plain)
1
2
3
4
5
6
7
8
9
// 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);