|
|
|
|
|
|
|
|
|
'use strict'; |
|
import * as formatter from './impl/format'; |
|
import * as edit from './impl/edit'; |
|
import * as scanner from './impl/scanner'; |
|
import * as parser from './impl/parser'; |
|
|
|
|
|
|
|
|
|
export const createScanner = scanner.createScanner; |
|
export var ScanError; |
|
(function (ScanError) { |
|
ScanError[ScanError["None"] = 0] = "None"; |
|
ScanError[ScanError["UnexpectedEndOfComment"] = 1] = "UnexpectedEndOfComment"; |
|
ScanError[ScanError["UnexpectedEndOfString"] = 2] = "UnexpectedEndOfString"; |
|
ScanError[ScanError["UnexpectedEndOfNumber"] = 3] = "UnexpectedEndOfNumber"; |
|
ScanError[ScanError["InvalidUnicode"] = 4] = "InvalidUnicode"; |
|
ScanError[ScanError["InvalidEscapeCharacter"] = 5] = "InvalidEscapeCharacter"; |
|
ScanError[ScanError["InvalidCharacter"] = 6] = "InvalidCharacter"; |
|
})(ScanError || (ScanError = {})); |
|
export var SyntaxKind; |
|
(function (SyntaxKind) { |
|
SyntaxKind[SyntaxKind["OpenBraceToken"] = 1] = "OpenBraceToken"; |
|
SyntaxKind[SyntaxKind["CloseBraceToken"] = 2] = "CloseBraceToken"; |
|
SyntaxKind[SyntaxKind["OpenBracketToken"] = 3] = "OpenBracketToken"; |
|
SyntaxKind[SyntaxKind["CloseBracketToken"] = 4] = "CloseBracketToken"; |
|
SyntaxKind[SyntaxKind["CommaToken"] = 5] = "CommaToken"; |
|
SyntaxKind[SyntaxKind["ColonToken"] = 6] = "ColonToken"; |
|
SyntaxKind[SyntaxKind["NullKeyword"] = 7] = "NullKeyword"; |
|
SyntaxKind[SyntaxKind["TrueKeyword"] = 8] = "TrueKeyword"; |
|
SyntaxKind[SyntaxKind["FalseKeyword"] = 9] = "FalseKeyword"; |
|
SyntaxKind[SyntaxKind["StringLiteral"] = 10] = "StringLiteral"; |
|
SyntaxKind[SyntaxKind["NumericLiteral"] = 11] = "NumericLiteral"; |
|
SyntaxKind[SyntaxKind["LineCommentTrivia"] = 12] = "LineCommentTrivia"; |
|
SyntaxKind[SyntaxKind["BlockCommentTrivia"] = 13] = "BlockCommentTrivia"; |
|
SyntaxKind[SyntaxKind["LineBreakTrivia"] = 14] = "LineBreakTrivia"; |
|
SyntaxKind[SyntaxKind["Trivia"] = 15] = "Trivia"; |
|
SyntaxKind[SyntaxKind["Unknown"] = 16] = "Unknown"; |
|
SyntaxKind[SyntaxKind["EOF"] = 17] = "EOF"; |
|
})(SyntaxKind || (SyntaxKind = {})); |
|
|
|
|
|
|
|
export const getLocation = parser.getLocation; |
|
|
|
|
|
|
|
|
|
export const parse = parser.parse; |
|
|
|
|
|
|
|
export const parseTree = parser.parseTree; |
|
|
|
|
|
|
|
export const findNodeAtLocation = parser.findNodeAtLocation; |
|
|
|
|
|
|
|
export const findNodeAtOffset = parser.findNodeAtOffset; |
|
|
|
|
|
|
|
export const getNodePath = parser.getNodePath; |
|
|
|
|
|
|
|
export const getNodeValue = parser.getNodeValue; |
|
|
|
|
|
|
|
export const visit = parser.visit; |
|
|
|
|
|
|
|
|
|
|
|
export const stripComments = parser.stripComments; |
|
export var ParseErrorCode; |
|
(function (ParseErrorCode) { |
|
ParseErrorCode[ParseErrorCode["InvalidSymbol"] = 1] = "InvalidSymbol"; |
|
ParseErrorCode[ParseErrorCode["InvalidNumberFormat"] = 2] = "InvalidNumberFormat"; |
|
ParseErrorCode[ParseErrorCode["PropertyNameExpected"] = 3] = "PropertyNameExpected"; |
|
ParseErrorCode[ParseErrorCode["ValueExpected"] = 4] = "ValueExpected"; |
|
ParseErrorCode[ParseErrorCode["ColonExpected"] = 5] = "ColonExpected"; |
|
ParseErrorCode[ParseErrorCode["CommaExpected"] = 6] = "CommaExpected"; |
|
ParseErrorCode[ParseErrorCode["CloseBraceExpected"] = 7] = "CloseBraceExpected"; |
|
ParseErrorCode[ParseErrorCode["CloseBracketExpected"] = 8] = "CloseBracketExpected"; |
|
ParseErrorCode[ParseErrorCode["EndOfFileExpected"] = 9] = "EndOfFileExpected"; |
|
ParseErrorCode[ParseErrorCode["InvalidCommentToken"] = 10] = "InvalidCommentToken"; |
|
ParseErrorCode[ParseErrorCode["UnexpectedEndOfComment"] = 11] = "UnexpectedEndOfComment"; |
|
ParseErrorCode[ParseErrorCode["UnexpectedEndOfString"] = 12] = "UnexpectedEndOfString"; |
|
ParseErrorCode[ParseErrorCode["UnexpectedEndOfNumber"] = 13] = "UnexpectedEndOfNumber"; |
|
ParseErrorCode[ParseErrorCode["InvalidUnicode"] = 14] = "InvalidUnicode"; |
|
ParseErrorCode[ParseErrorCode["InvalidEscapeCharacter"] = 15] = "InvalidEscapeCharacter"; |
|
ParseErrorCode[ParseErrorCode["InvalidCharacter"] = 16] = "InvalidCharacter"; |
|
})(ParseErrorCode || (ParseErrorCode = {})); |
|
export function printParseErrorCode(code) { |
|
switch (code) { |
|
case 1 : return 'InvalidSymbol'; |
|
case 2 : return 'InvalidNumberFormat'; |
|
case 3 : return 'PropertyNameExpected'; |
|
case 4 : return 'ValueExpected'; |
|
case 5 : return 'ColonExpected'; |
|
case 6 : return 'CommaExpected'; |
|
case 7 : return 'CloseBraceExpected'; |
|
case 8 : return 'CloseBracketExpected'; |
|
case 9 : return 'EndOfFileExpected'; |
|
case 10 : return 'InvalidCommentToken'; |
|
case 11 : return 'UnexpectedEndOfComment'; |
|
case 12 : return 'UnexpectedEndOfString'; |
|
case 13 : return 'UnexpectedEndOfNumber'; |
|
case 14 : return 'InvalidUnicode'; |
|
case 15 : return 'InvalidEscapeCharacter'; |
|
case 16 : return 'InvalidCharacter'; |
|
} |
|
return '<unknown ParseErrorCode>'; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function format(documentText, range, options) { |
|
return formatter.format(documentText, range, options); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function modify(text, path, value, options) { |
|
return edit.setProperty(text, path, value, options); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function applyEdits(text, edits) { |
|
let sortedEdits = edits.slice(0).sort((a, b) => { |
|
const diff = a.offset - b.offset; |
|
if (diff === 0) { |
|
return a.length - b.length; |
|
} |
|
return diff; |
|
}); |
|
let lastModifiedOffset = text.length; |
|
for (let i = sortedEdits.length - 1; i >= 0; i--) { |
|
let e = sortedEdits[i]; |
|
if (e.offset + e.length <= lastModifiedOffset) { |
|
text = edit.applyEdit(text, e); |
|
} |
|
else { |
|
throw new Error('Overlapping edit'); |
|
} |
|
lastModifiedOffset = e.offset; |
|
} |
|
return text; |
|
} |
|
|