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
|
import type { TextDocument, Range } from 'vscode-languageserver'
import moo from 'moo'
export function getTextWithoutComments(
doc: TextDocument,
type: 'html' | 'js' | 'jsx' | 'css',
range?: Range
): string
export function getTextWithoutComments(text: string, type: 'html' | 'js' | 'jsx' | 'css'): string
export function getTextWithoutComments(
docOrText: TextDocument | string,
type: 'html' | 'js' | 'jsx' | 'css',
range?: Range
): string {
let text = typeof docOrText === 'string' ? docOrText : docOrText.getText(range)
if (type === 'js' || type === 'jsx') {
return getJsWithoutComments(text)
}
if (type === 'css') {
return text.replace(/\/\*.*?\*\//gs, replace)
}
return text.replace(/<!--.*?-->/gs, replace)
}
function replace(match: string): string {
return match.replace(/./gs, (char) => (char === '\n' ? '\n' : ' '))
}
let jsLexer: moo.Lexer
function getJsWithoutComments(text: string): string {
if (!jsLexer) {
jsLexer = moo.states({
main: {
commentLine: /\/\/.*?$/,
commentBlock: { match: /\/\*[^]*?\*\//, lineBreaks: true },
stringDouble: /"(?:[^"\\]|\\.)*"/,
stringSingle: /'(?:[^'\\]|\\.)*'/,
stringBacktick: /`(?:[^`\\]|\\.)*`/,
other: { match: /[^]/, lineBreaks: true },
},
})
}
let str = ''
jsLexer.reset(text)
for (let token of jsLexer) {
if (token.type === 'commentLine') {
str += ' '.repeat(token.value.length)
} else if (token.type === 'commentBlock') {
str += token.value.replace(/./g, ' ')
} else {
str += token.value
}
}
return str
}
|