Lines Matching full:script
25 const Script = require('vm').Script; constant
28 let script = new Script('\'passed\';'); variable
29 const result = script.runInThisContext(script);
33 script = new Script('throw new Error(\'test\');'); variable
35 script.runInThisContext(script);
39 script = new Script('hello = 2'); variable
40 script.runInThisContext(script);
50 script = new Script(global.code); variable
51 script.runInThisContext(script);
58 script = new Script('f()'); variable
59 script.runInThisContext(script);