@internal
(s: string, options: ParseOptions)
| 1192 | } |
| 1193 | /** @internal */ |
| 1194 | matchPart(s: string, options: ParseOptions): string | undefined { |
| 1195 | return segmentTemplateLiteralParts(this, s, options) === undefined ? undefined : s |
| 1196 | } |
| 1197 | /** @internal */ |
| 1198 | asTemplateLiteralParser(): Arrays { |
| 1199 | const tuple = new Arrays(false, this.parts.map(partFromString), []) |
nothing calls this directly
no test coverage detected