-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparse.ts
182 lines (169 loc) · 4.44 KB
/
parse.ts
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
import * as parser from "@babel/parser";
import traverse from "@babel/traverse";
import { File as FileAST, Node } from "@babel/types";
import { ParserOptions, ParserPlugin } from "@babel/parser";
type Locations = Map<number, number>;
export type ParenLocations = { open: Locations; close: Locations };
const CONFUSING = new Set([
"BinaryExpression",
"LogicalExpression",
"UnaryExpression",
"ConditionalExpression",
"AssignmentExpression",
]);
export function findParens(
text: string,
languageId: string,
useFlow: boolean
): ParenLocations {
const openParens: number[] = [];
const closeParens: number[] = [];
function addParens(node: Node) {
if (node.start === null || node.end === null) {
return;
}
openParens.push(node.start);
closeParens.push(node.end);
}
const ast = parser.parse(text, babelOptions({ languageId, useFlow }));
const RIGHT_TO_LEFT_ASSOCIATIVE_OPERATORS = new Set([
"**",
"=",
"+=",
"-=",
"%=",
"**=",
"*=",
"<<=",
">>=",
">>>=",
"&=",
"^=",
"|=",
"&&=",
"||=",
"??=",
]);
traverse(ast, {
enter(path) {
if (!CONFUSING.has(path.type) || !CONFUSING.has(path.parent.type)) {
// People can figure these out probably
return;
}
if (path.node.type === path.parent.type) {
if (
// @ts-ignore
path.node.operator !== undefined &&
// @ts-ignore
path.node.operator === path.parent.operator &&
// @ts-ignore
!RIGHT_TO_LEFT_ASSOCIATIVE_OPERATORS.has(path.node.operator)
) {
// Here the presedence is obvisouly the same, and people can
// infer left-to-right associativity.
return;
}
} else if (path.parent.type === "AssignmentExpression") {
return;
}
addParens(path.node);
},
});
return {
open: groupLineNumbers(openParens),
close: groupLineNumbers(closeParens),
};
}
// @ts-ignore `enums` are not yet included in the types.
const FLOW_PLUGINS: ParserPluginWithOptions = [
["flow", { all: true, enums: true }],
"jsx",
];
function getPlugins(languageId: string, useFlow: boolean): ParserPlugin[] {
switch (languageId) {
case "typescript":
return ["typescript"];
case "typescriptreact":
return ["typescript", "jsx"];
// The `flow` languageId is used interally at Facebook
case "flow":
// @ts-ignore `enums` are not yet included in the types.
return FLOW_PLUGINS;
case "javascriptreact":
if (useFlow) {
return FLOW_PLUGINS;
}
return ["jsx"];
case "javascript":
if (useFlow) {
return FLOW_PLUGINS;
}
return [];
default:
// TODO: enforce this with types
console.warn(`Unexpected languageId: ${languageId}`);
return [];
}
}
function groupLineNumbers(numbers: number[]) {
const counts: Map<number, number> = new Map();
numbers.forEach((num) => {
let current = counts.get(num);
counts.set(num, (current ?? 0) + 1);
});
return counts;
}
// Stolen from Prettier: https://github.com/prettier/prettier/blob/797e93fc0a3a7f2ba2b510a1a246fc6bdbe89025/src/language-js/parser-babel.js#L18-L41
function babelOptions({
languageId,
useFlow,
}: {
languageId: string;
useFlow: boolean;
}): ParserOptions {
const extraPlugins = getPlugins(languageId, useFlow);
return {
sourceType: "unambiguous",
allowAwaitOutsideFunction: true,
allowImportExportEverywhere: true,
allowReturnOutsideFunction: true,
allowSuperOutsideMethod: true,
allowUndeclaredExports: true,
errorRecovery: true,
// This causes expressions that are alaready parenthasized to be parsed to
// `ParenthesizedExpression` which makes them easy for us to skip.
createParenthesizedExpressions: true,
plugins: [
"doExpressions",
"classProperties",
"exportDefaultFrom",
"functionBind",
"functionSent",
"classPrivateProperties",
"throwExpressions",
"classPrivateMethods",
"v8intrinsic",
"partialApplication",
["decorators", { decoratorsBeforeExport: false }],
"privateIn",
[
"moduleAttributes",
{
// @ts-ignore
version: "may-2020",
},
],
[
"recordAndTuple",
{
// @ts-ignore
syntaxType: "hash",
},
],
"decimal",
...extraPlugins,
],
tokens: true,
ranges: true,
};
}