Lines Matching +full:vm +full:- +full:other
1 // Copyright Joyent, Inc. and other Node contributors.
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
22 /* eslint-disable strict */
25 const vm = require('vm'); constant
28 const result = vm.runInThisContext('\'passed\';');
33 vm.runInThisContext('throw new Error(\'test\');');
37 vm.runInThisContext('hello = 2');
48 /* eslint-disable no-unused-vars */
49 const baz = vm.runInThisContext(code);
50 /* eslint-enable no-unused-vars */
57 vm.runInThisContext('f()');