We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c6461a commit 3e127c2Copy full SHA for 3e127c2
src/main.ts
@@ -183,6 +183,7 @@ export function printParseErrorCode(code: ParseErrorCode) {
183
case ParseErrorCode.InvalidEscapeCharacter: return 'InvalidEscapeCharacter';
184
case ParseErrorCode.InvalidCharacter: return 'InvalidCharacter';
185
}
186
+ return '<unknown ParseErrorCode>';
187
188
189
export type NodeType = 'object' | 'array' | 'property' | 'string' | 'number' | 'boolean' | 'null';
0 commit comments