(name: string)
| 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 { |
no outgoing calls
no test coverage detected