1// Flags: --disallow-code-generation-from-strings 2'use strict'; 3 4require('../common'); 5const assert = require('assert'); 6 7// Verify that v8 option --disallow-code-generation-from-strings is still 8// respected 9assert.throws(() => eval('"eval"'), EvalError); 10