-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport-declaration.ts
335 lines (333 loc) · 9.77 KB
/
export-declaration.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/**
* @file EXPORT_DECLARATION_REGEX
* @module export-regex/declaration
*/
/**
* Declaration `export` statement regex. Ignores matches in comments.
*
* **Note**: Requires unicode support ([flag `u`][1]).
*
* [1]: https://javascript.info/regexp-unicode
*
* @see https://regex101.com/r/8HpMrA
* @see https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/export#syntax
*
* @example
* import { EXPORT_DECLARATION_REGEX } from '@flex-development/export-regex'
* import { dedent } from 'ts-dedent'
*
* const code: string = dedent`
* export const ESM_SYNTAX_REGEX: RegExp = /pattern/gm;
* export declare const RESOLVE_EXTENSIONS: string[]
* export enum Snack{}
* export const enum Snack {}
* export interface User {}
* export class House {}
* export declare abstract class House extends Building {}
* export abstract class House {}
* export async function run() {}
* export async function* run() {}
* export function foo() {}
* export function* foo() {}
* export const $foo = 42
* export const $foo= 42
* export namespace Foo {}
* export type Foo = 'foo'
* export let name1, name2; // also var
* export const name1 = 1, name2 = 2; // also var, let
* export function functionName() {}
* export class ClassName {}
* export function* generatorFunctionName() {}
* export const { name1, name2: bar } = o;
* export const [ name1, name2 ] = array;
* `
*
* const print = (matches: IterableIterator<RegExpMatchArray>): void => {
* console.debug([...matches].map(match => omit(match, ['input'])))
* }
*
* print(code.matchAll(EXPORT_DECLARATION_REGEX))
* // [
* // {
* // '0': 'export const ESM_SYNTAX_REGEX',
* // '1': undefined,
* // '2': 'const',
* // '3': 'ESM_SYNTAX_REGEX',
* // index: 0,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const',
* // exports: 'ESM_SYNTAX_REGEX'
* // }
* // },
* // {
* // '0': 'export declare const RESOLVE_EXTENSIONS',
* // '1': 'declare',
* // '2': 'const',
* // '3': 'RESOLVE_EXTENSIONS',
* // index: 53,
* // groups: [Object: null prototype] {
* // modifiers: 'declare',
* // declaration: 'const',
* // exports: 'RESOLVE_EXTENSIONS'
* // }
* // },
* // {
* // '0': 'export enum Snack',
* // '1': undefined,
* // '2': 'enum',
* // '3': 'Snack',
* // index: 103,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'enum',
* // exports: 'Snack'
* // }
* // },
* // {
* // '0': 'export const enum Snack',
* // '1': undefined,
* // '2': 'const enum',
* // '3': 'Snack',
* // index: 123,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const enum',
* // exports: 'Snack'
* // }
* // },
* // {
* // '0': 'export interface User',
* // '1': undefined,
* // '2': 'interface',
* // '3': 'User',
* // index: 150,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'interface',
* // exports: 'User'
* // }
* // },
* // {
* // '0': 'export class House',
* // '1': undefined,
* // '2': 'class',
* // '3': 'House',
* // index: 175,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'class',
* // exports: 'House'
* // }
* // },
* // {
* // '0': 'export declare abstract class House',
* // '1': 'declare abstract',
* // '2': 'class',
* // '3': 'House',
* // index: 197,
* // groups: [Object: null prototype] {
* // modifiers: 'declare abstract',
* // declaration: 'class',
* // exports: 'House'
* // }
* // },
* // {
* // '0': 'export abstract class House',
* // '1': 'abstract',
* // '2': 'class',
* // '3': 'House',
* // index: 253,
* // groups: [Object: null prototype] {
* // modifiers: 'abstract',
* // declaration: 'class',
* // exports: 'House'
* // }
* // },
* // {
* // '0': 'export async function run',
* // '1': 'async',
* // '2': 'function',
* // '3': 'run',
* // index: 284,
* // groups: [Object: null prototype] {
* // modifiers: 'async',
* // declaration: 'function',
* // exports: 'run'
* // }
* // },
* // {
* // '0': 'export async function* run',
* // '1': 'async',
* // '2': 'function*',
* // '3': 'run',
* // index: 315,
* // groups: [Object: null prototype] {
* // modifiers: 'async',
* // declaration: 'function*',
* // exports: 'run'
* // }
* // },
* // {
* // '0': 'export function foo',
* // '1': undefined,
* // '2': 'function',
* // '3': 'foo',
* // index: 347,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'function',
* // exports: 'foo'
* // }
* // },
* // {
* // '0': 'export function* foo',
* // '1': undefined,
* // '2': 'function*',
* // '3': 'foo',
* // index: 372,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'function*',
* // exports: 'foo'
* // }
* // },
* // {
* // '0': 'export const $foo',
* // '1': undefined,
* // '2': 'const',
* // '3': '$foo',
* // index: 398,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const',
* // exports: '$foo'
* // }
* // },
* // {
* // '0': 'export const $foo',
* // '1': undefined,
* // '2': 'const',
* // '3': '$foo',
* // index: 421,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const',
* // exports: '$foo'
* // }
* // },
* // {
* // '0': 'export namespace Foo',
* // '1': undefined,
* // '2': 'namespace',
* // '3': 'Foo',
* // index: 443,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'namespace',
* // exports: 'Foo'
* // }
* // },
* // {
* // '0': 'export type Foo',
* // '1': undefined,
* // '2': 'type',
* // '3': 'Foo',
* // index: 467,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'type',
* // exports: 'Foo'
* // }
* // },
* // {
* // '0': 'export let name1, name2',
* // '1': undefined,
* // '2': 'let',
* // '3': 'name1, name2',
* // index: 491,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'let',
* // exports: 'name1, name2'
* // }
* // },
* // {
* // '0': 'export const name1 = 1, name2 = 2',
* // '1': undefined,
* // '2': 'const',
* // '3': 'name1 = 1, name2 = 2',
* // index: 536,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const',
* // exports: 'name1 = 1, name2 = 2'
* // }
* // },
* // {
* // '0': 'export function functionName',
* // '1': undefined,
* // '2': 'function',
* // '3': 'functionName',
* // index: 596,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'function',
* // exports: 'functionName'
* // }
* // },
* // {
* // '0': 'export class ClassName',
* // '1': undefined,
* // '2': 'class',
* // '3': 'ClassName',
* // index: 639,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'class',
* // exports: 'ClassName'
* // }
* // },
* // {
* // '0': 'export function* generatorFunctionName',
* // '1': undefined,
* // '2': 'function*',
* // '3': 'generatorFunctionName',
* // index: 674,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'function*',
* // exports: 'generatorFunctionName'
* // }
* // },
* // {
* // '0': 'export const { name1, name2: bar } = o',
* // '1': undefined,
* // '2': 'const',
* // '3': '{ name1, name2: bar }',
* // index: 727,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const',
* // exports: '{ name1, name2: bar }'
* // }
* // },
* // {
* // '0': 'export const [ name1, name2 ] = array',
* // '1': undefined,
* // '2': 'const',
* // '3': '[ name1, name2 ]',
* // index: 767,
* // groups: [Object: null prototype] {
* // modifiers: undefined,
* // declaration: 'const',
* // exports: '[ name1, name2 ]'
* // }
* // }
* // ]
*
* @const {RegExp} EXPORT_DECLARATION_REGEX
*/
const EXPORT_DECLARATION_REGEX: RegExp =
/(?<=^|[\n;](?:[\t ]*(?:\w+ )?)?)export\s*(?<modifiers>(?:\s*declare|\s*abstract|\s*async)+)?\s*(?<declaration>class|const +enum|const|enum|function\*?|interface|let|namespace|type(?! *\{)|var)\s+(?<exports>(?:[$_\p{ID_Start}][$\u200C\u200D\p{ID_Continue}]*(?=[\s=:;/({])(?!.*?,))|(?:[\w\t\n\r .,:$'"=-]+)|(?:[{[][\w\t\n\r .,:$'"-]+[}\]]))(?:\s*=\s*[$_\p{ID_Start}][$\u200C\u200D\p{ID_Continue}]*)?/gu
export default EXPORT_DECLARATION_REGEX