(name: string, span: any = jasmine.any(ParseSourceSpan))
| 541 | } |
| 542 | |
| 543 | function placeholder(name: string, span: any = jasmine.any(ParseSourceSpan)): o.PlaceholderPiece { |
| 544 | return new o.PlaceholderPiece(name, span); |
| 545 | } |
| 546 | |
| 547 | function humanizeSourceSpan(span: ParseSourceSpan): string { |
| 548 | return `"${span.toString()}" (${span.start.offset}-${span.end.offset})`; |
no test coverage detected
searching dependent graphs…