(options)
| 131 | } |
| 132 | |
| 133 | runInThisContext(options) { |
| 134 | const { breakOnSigint, args } = getRunInContextArgs(null, options); |
| 135 | if (breakOnSigint && process.listenerCount('SIGINT') > 0) { |
| 136 | return sigintHandlersWrap(super.runInContext, this, args); |
| 137 | } |
| 138 | return ReflectApply(super.runInContext, this, args); |
| 139 | } |
| 140 | |
| 141 | runInContext(contextifiedObject, options) { |
| 142 | validateContext(contextifiedObject); |