(file, options)
| 44690 | } |
| 44691 | var binder = createBinder(); |
| 44692 | function bindSourceFile(file, options) { |
| 44693 | ts.performance.mark("beforeBind"); |
| 44694 | ts.perfLogger.logStartBindFile("" + file.fileName); |
| 44695 | binder(file, options); |
| 44696 | ts.perfLogger.logStopBindFile(); |
| 44697 | ts.performance.mark("afterBind"); |
| 44698 | ts.performance.measure("Bind", "beforeBind", "afterBind"); |
| 44699 | } |
| 44700 | ts.bindSourceFile = bindSourceFile; |
| 44701 | function createBinder() { |
| 44702 | var file; |
nothing calls this directly
no test coverage detected