MCPcopy
hub / github.com/plasma-umass/browsix / binding

Method binding

src/browser-node/browser-node.ts:90–98  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

88 }
89
90 binding(name: string): any {
91 if (!(name in _bindings)) {
92 console.log('TODO: unimplemented binding ' + name);
93 (<any>console).trace('TODO: unimplemented binding ' + name);
94 return null;
95 }
96
97 return _bindings[name];
98 }
99
100 // this is from acorn - https://github.com/marijnh/acorn
101 nextTick(fun: any, ...args: any[]): void {

Callers 15

child_process.jsFile · 0.80
util.jsFile · 0.80
_tls_legacy.jsFile · 0.80
_http_client.jsFile · 0.80
net.jsFile · 0.80
vm.jsFile · 0.80
timers.jsFile · 0.80
dns.jsFile · 0.80
cluster.jsFile · 0.80
_tls_wrap.jsFile · 0.80
crypto.jsFile · 0.80
v8.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected