forked from prettier/prettier
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser-typescript.js
67 lines (58 loc) · 1.59 KB
/
parser-typescript.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"use strict";
const createError = require("../common/parser-create-error");
const { hasPragma } = require("./pragma");
const { locStart, locEnd } = require("./loc");
const postprocess = require("./postprocess");
function parse(text, parsers, opts) {
const jsx = isProbablyJsx(text);
let ast;
try {
// Try passing with our best guess first.
ast = tryParseTypeScript(text, jsx);
} catch (firstError) {
try {
// But if we get it wrong, try the opposite.
ast = tryParseTypeScript(text, !jsx);
} catch (secondError) {
// suppose our guess is correct
const e = firstError;
if (typeof e.lineNumber === "undefined") {
throw e;
}
throw createError(e.message, {
start: { line: e.lineNumber, column: e.column + 1 },
});
}
}
return postprocess(ast, { ...opts, originalText: text });
}
function tryParseTypeScript(text, jsx) {
const parser = require("@typescript-eslint/typescript-estree");
return parser.parse(text, {
range: true,
comment: true,
useJSXTextNode: true,
jsx,
tokens: true,
});
}
/**
* Use a naive regular expression to detect JSX
*/
function isProbablyJsx(text) {
return new RegExp(
[
"(^[^\"'`]*</)", // Contains "</" when probably not in a string
"|",
"(^[^/]{2}.*/>)", // Contains "/>" on line not starting with "//"
].join(""),
"m"
).test(text);
}
const parser = { parse, astFormat: "estree", hasPragma, locStart, locEnd };
// Export as a plugin so we can reuse the same bundle for UMD loading
module.exports = {
parsers: {
typescript: parser,
},
};