Lines Matching defs:const
3 const assert = require('assert');
4 const vm = require('vm');
6 const dSymbol = Symbol('d');
7 const sandbox = {
31 const ctx = vm.createContext(sandbox);
33 const result = vm.runInContext(`
34 const getDesc = (prop) => Object.getOwnPropertyDescriptor(this, prop);
35 const result = {
91 const jDesc = Object.getOwnPropertyDescriptor(ctx, 'j');
97 const kDesc = Object.getOwnPropertyDescriptor(ctx, 'k');