Home
last modified time | relevance | path

Searched refs:contextifiedObject (Results 1 – 2 of 2) sorted by relevance

/third_party/node/lib/
Dvm.js126 runInContext(contextifiedObject, options) { argument
127 validateContext(contextifiedObject);
129 contextifiedObject,
144 function validateContext(contextifiedObject) { argument
145 if (!isContext(contextifiedObject)) {
147 contextifiedObject);
151 function getRunInContextArgs(contextifiedObject, options = kEmptyObject) { argument
173 contextifiedObject,
272 function runInContext(code, contextifiedObject, options) { argument
273 validateContext(contextifiedObject);
[all …]
/third_party/node/doc/api/
Dvm.md170 ### `script.runInContext(contextifiedObject[, options])`
180 * `contextifiedObject` {Object} A [contextified][] object as returned by the
197 `contextifiedObject` and returns the result. Running code does not have access
416 const contextifiedObject = vm.createContext({
426 // specify `contextifiedObject` as the context this Module belongs to.
435 `, { context: contextifiedObject });
464 // "contextifiedObject" when creating the context.
468 // Using `contextifiedObject` instead of `referencingModule.context`
487 const contextifiedObject = vm.createContext({
498 // specify `contextifiedObject` as the context this Module belongs to.
[all …]