Lines Matching defs:const
2 const common = require('../common');
8 const assert = require('assert');
9 const vm = require('vm');
10 const spawn = require('child_process').spawn;
12 const methods = [
18 const method = process.argv[3];
33 const script = `process.send('${method}'); while(true) {}`;
34 const args = method === 'runInContext' ?
37 const options = { breakOnSigint: true };
49 const timeout = setTimeout(() => {}, 1000);
74 for (const method of methods) {
75 const child = spawn(process.execPath, [__filename, 'child', method], {