(line: string)
| 1015 | } |
| 1016 | |
| 1017 | function plainLine(line: string): readonly CodeEditorSyntaxToken[] { |
| 1018 | if (line.length === 0) return Object.freeze([]); |
| 1019 | return Object.freeze([Object.freeze({ text: line, kind: "plain" as const })]); |
| 1020 | } |
| 1021 | |
| 1022 | export function tokenizeCodeEditorLine( |
| 1023 | line: string, |
no outgoing calls
no test coverage detected