(fileName = 'test.html')
| 10 | |
| 11 | /** Gets a fake `ParseSourceSpan` for testing purposes. */ |
| 12 | export function getFakeSpan(fileName = 'test.html') { |
| 13 | const file = new ParseSourceFile('', fileName); |
| 14 | const location = new ParseLocation(file, 0, 0, 0); |
| 15 | return new ParseSourceSpan(location, location); |
| 16 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…