Lines Matching refs:code
67 constructor(code, options = kEmptyObject) {
68 code = `${code}`;
99 super(code,
248 function createScript(code, options) {
249 return new Script(code, options);
270 function runInContext(code, contextifiedObject, options) {
280 return createScript(code, options)
284 function runInNewContext(code, contextObject, options) {
290 return createScript(code, options).runInNewContext(contextObject, options);
293 function runInThisContext(code, options) {
297 return createScript(code, options).runInThisContext(options);
300 function compileFunction(code, params, options = kEmptyObject) {
301 validateString(code, 'code');
345 code, filename, lineOffset, columnOffset,