safe-parser.js
2.27 KB
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
let tokenizer = require('postcss/lib/tokenize')
let Comment = require('postcss/lib/comment')
let Parser = require('postcss/lib/parser')
class SafeParser extends Parser {
createTokenizer () {
this.tokenizer = tokenizer(this.input, { ignoreErrors: true })
}
comment (token) {
let node = new Comment()
this.init(node, token[2])
let pos =
this.input.fromOffset(token[3]) ||
this.input.fromOffset(this.input.css.length - 1)
node.source.end = {
offset: token[3],
line: pos.line,
column: pos.col
}
let text = token[1].slice(2)
if (text.slice(-2) === '*/') text = text.slice(0, -2)
if (/^\s*$/.test(text)) {
node.text = ''
node.raws.left = text
node.raws.right = ''
} else {
let match = text.match(/^(\s*)([^]*\S)(\s*)$/)
node.text = match[2]
node.raws.left = match[1]
node.raws.right = match[3]
}
}
decl (tokens) {
if (tokens.length > 1 && tokens.some(i => i[0] === 'word')) {
super.decl(tokens)
}
}
unclosedBracket () {}
unknownWord (tokens) {
this.spaces += tokens.map(i => i[1]).join('')
}
unexpectedClose () {
this.current.raws.after += '}'
}
doubleColon () {}
unnamedAtrule (node) {
node.name = ''
}
precheckMissedSemicolon (tokens) {
let colon = this.colon(tokens)
if (colon === false) return
let nextStart, prevEnd
for (nextStart = colon - 1; nextStart >= 0; nextStart--) {
if (tokens[nextStart][0] === 'word') break
}
if (nextStart === 0) return
for (prevEnd = nextStart - 1; prevEnd >= 0; prevEnd--) {
if (tokens[prevEnd][0] !== 'space') {
prevEnd += 1
break
}
}
let other = tokens.slice(nextStart)
let spaces = tokens.slice(prevEnd, nextStart)
tokens.splice(prevEnd, tokens.length - prevEnd)
this.spaces = spaces.map(i => i[1]).join('')
this.decl(other)
}
checkMissedSemicolon () {}
endFile () {
if (this.current.nodes && this.current.nodes.length) {
this.current.raws.semicolon = this.semicolon
}
this.current.raws.after = (this.current.raws.after || '') + this.spaces
while (this.current.parent) {
this.current = this.current.parent
this.current.raws.after = ''
}
}
}
module.exports = SafeParser