(hint: string)
| 115 | }; |
| 116 | |
| 117 | const parsePositionHint = (hint: string): PositionHint | undefined => { |
| 118 | if (hint === '1') return PositionHint.END; |
| 119 | if (hint === '0') return PositionHint.START; |
| 120 | return undefined; |
| 121 | }; |
| 122 | |
| 123 | const SOURCE_TAG_KIND_VALUES = new Set<string>(Object.values(SourceTagKind)); |
| 124 |
no outgoing calls
no test coverage detected