MCPcopy Index your code
hub / github.com/nodejs/node / execStateScopeType

Method execStateScopeType

deps/v8/test/debugger/test-api.js:313–326  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

311 }
312
313 execStateScopeType(type) {
314 switch (type) {
315 case "global": return this.ScopeType.Global;
316 case "local": return this.ScopeType.Local;
317 case "with": return this.ScopeType.With;
318 case "closure": return this.ScopeType.Closure;
319 case "catch": return this.ScopeType.Catch;
320 case "block": return this.ScopeType.Block;
321 case "script": return this.ScopeType.Script;
322 case "eval": return this.ScopeType.Eval;
323 case "module": return this.ScopeType.Module;
324 default: %AbortJS("Unexpected scope type");
325 }
326 }
327
328 execStateScopeObjectProperty(serialized_scope, prop) {
329 let found = null;

Callers 1

execStateScopeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected