(globals, exports)
| 1 | var ty = require('./types'); |
| 2 | |
| 3 | function Report(globals, exports) { |
| 4 | this._globals = globals; |
| 5 | this._exports = exports; |
| 6 | } |
| 7 | |
| 8 | Report.prototype.getFunction = function(f) { |
| 9 | var global = this._globals.lookup(f); |
nothing calls this directly
no outgoing calls
no test coverage detected