(url, fn, filePath)
| 24 | var byPath = {}; |
| 25 | |
| 26 | function KnownPoint(url, fn, filePath) { |
| 27 | this.url = url; |
| 28 | if (fn) { this.handle = fn; } |
| 29 | if (filePath) { this.filePath = filePath; } |
| 30 | |
| 31 | byPath[url] = this; |
| 32 | } |
| 33 | |
| 34 | KnownPoint.prototype.options = {}; |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected