-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjscomments.js
More file actions
283 lines (260 loc) · 5.58 KB
/
jscomments.js
File metadata and controls
283 lines (260 loc) · 5.58 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
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
var Parser = require('./jsstate').Parser
var pp = Parser.prototype
var tt = require('./jstokentype').types
pp.commentBegin = function(start){
var comments = this.storeComments
var above = ''
for(var i = 0, l = comments.length; i < l; i++){
var cm = comments[i]
if(typeof cm === 'object'){
comments.splice(0, i+1)
break
}
if(cm === 1) above += '\n'
else if(cm === 2) above += '\r'
else above += cm
}
if(i === l) comments.length = 0
return above
}
pp.commentEnd = function(node, above, tail, ignore){
// add the prefix
if(above && above.length) node.above = above
var comments = this.storeComments
for(var i = 0, l = comments.length; i < l; i++){
var cm = comments[i]
if(cm === tail){
comments.splice(0, i)
return
}
if(typeof cm !== 'object') break
}
var side = ''
for(; i < l; i++){
var cm = comments[i]
if(typeof cm === 'object' ){
if(cm !== ignore){
comments.splice(0, i)
if(side.length) node.side = side
return
}
}
else if(cm === 1){
side += '\n'
comments.splice(0, i + 1)
node.side = side
return
}
else if(cm === 2){
side += '\r'
comments.splice(0, i + 1)
node.side = side
return
}
else {
side += cm
}
}
if(side.length) node.side = side
comments.length = 0
}
pp.commentEndSplit = function(node, above, tail, split){
// add the prefix
if(above.length) node.above = above
var comments = this.storeComments
for(var i = 0, l = comments.length; i < l; i++){
var cm = comments[i]
if(cm === tail){
comments.splice(0, i)
return
}
if(typeof cm !== 'object') break
}
var side = ''
for(; i < l; i++){
var cm = comments[i]
if(typeof cm === 'object' ){
if(cm !== split){
comments.splice(0, i)
if(side.length) node.side = side
return
}
}
else if(cm === 1){
side += '\n'
if(comments[i+1] !== split){
comments.splice(0, i + 1)
node.side = side
return
}
}
else if(cm === 2){
side += '\r'
comments.splice(0, i + 1)
node.side = side
return
}
else {
side += cm
}
}
if(side.length) node.side = side
comments.length = 0
}
// called on the head of a block
pp.commentTop = function(node){
var out = ''
var comments = this.storeComments
for(var i = 0, l = comments.length; i < l; i++){
var item = comments[i]
if(typeof item != 'object'){
if(item === 1){
out += '\n'
comments.splice(0, i + 1)
break
}
else if(item === 2){
out += '\r'
comments.splice(0, i + 1)
break
}
out += item
}
}
if(out.length){
if(node) node.top = out
return out
}
}
// this is called at a } we run to it then splice and leave that for the next layer up
pp.commentBottom2 = function(tail, node){
var out = ''
var comments = this.storeComments
//console.log('tail',cmt.join(','))
for(var i = 0, l = comments.length;i < l; i++){
var item = comments[i]
if(item === tail){
comments.splice(0, i + 1)
break
}
if(typeof item !== 'object'){
if(item === 1){
out += '\n'
}
else if(item === 2){
out += '\r'
}
else out += item
}
}
if(i==l){
comments.splice(0, l - 1)
//comments.length = 0
}
if(out.length && node)node.bottom = out
return out
}
// this is called at a } we run to it then splice and leave that for the next layer up
pp.commentBottom = function(tail, node){
var out = ''
var comments = this.storeComments
//console.log('tail',cmt.join(','))
for(var i = 0, l = comments.length;i < l; i++){
var item = comments[i]
if(item === tail){
comments.splice(0, i + 1)
break
}
if(typeof item !== 'object'){
if(item === 1){
out += '\n'
}
else if(item === 2){
out += '\r'
}
else out += item
}
}
if(i==l){
comments.splice(0, l - 1)
//comments.length = 0
}
if(out.length && node)node.bottom = out
return out
}
pp.commentsDump = function(){
var out = []
for(var i = 0; i < this.storeComments.length; i++){
var item = this.storeComments[i]
if(typeof item === 'object'){
out.push(item.label)
}
else if(item === 1){
out.push('#N')
}
else out.push('#' + item)
}
console.log(out)
}
pp.commentAround = function(node, token){
var comments = this.storeComments
for(var i = 0,l = comments.length;i < l; i++){
if(comments[i] == token){
var out = ''
// scan backwards for the comments before
for(var j = i - 1;j>=0;j--){
var item = comments[j]
if(typeof item === 'object') break
if(item === 1) out = '\n' + out
else if(item === 2) out = '\r' + out
else{
out = item + out
}
}
if(out.length){
node.around1 = out
out = ''
}
// scan forward for the comments after
for(var j = i + 1, l = comments.length; j < l; j++){
var item = comments[j]
if(typeof item === 'object') break
if(item === 1) out += '\n'
else if(item === 2) out += '\r'
else out += item
}
if(out.length) node.around2 = out
comments.splice(0, j)
return
}
}
}
pp.commentAfter = function(token){
var comments = this.storeComments
//if(token === tt._var) console.log(comments)
for(var i = 0,l = comments.length;i < l; i++){
if(comments[i] == token){
var out = ''
// scan forward for the comments after
for(var j = i + 1, l = comments.length; j < l; j++){
var item = comments[j]
if(typeof item === 'object') break
if(item === 1) out += '\n'
else if(item === 2) out += '\r'
else out += item
}
comments.splice(0, j)
return out
}
}
}
pp.commentClear = function(token){
var comments = this.storeComments
//if(token === tt._var) console.log(comments)
for(var i = 0,l = comments.length;i < l; i++){
if(comments[i] == token){
comments.splice(0,i+1)
return
}
}
}