File tree 5 files changed +10
-4
lines changed
5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 8.8.1 (2022-10-24)
2
+
3
+ ### Bug fixes
4
+
5
+ Make type for ` Comment ` compatible with estree types.
6
+
1
7
## 8.8.0 (2022-07-21)
2
8
3
9
### Bug fixes
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ declare namespace acorn {
224
224
}
225
225
226
226
interface Comment extends AbstractToken {
227
- type : string
227
+ type : 'Line' | 'Block'
228
228
value : string
229
229
start : number
230
230
end : number
Original file line number Diff line number Diff line change 5527
5527
5528
5528
// Acorn is a tiny, fast JavaScript parser written in JavaScript.
5529
5529
5530
- var version = "8.8.0 " ;
5530
+ var version = "8.8.1 " ;
5531
5531
5532
5532
Parser . acorn = {
5533
5533
Parser : Parser ,
Original file line number Diff line number Diff line change @@ -5521,7 +5521,7 @@ pp.readWord = function() {
5521
5521
5522
5522
// Acorn is a tiny, fast JavaScript parser written in JavaScript.
5523
5523
5524
- var version = "8.8.0 " ;
5524
+ var version = "8.8.1 " ;
5525
5525
5526
5526
Parser . acorn = {
5527
5527
Parser : Parser ,
Original file line number Diff line number Diff line change 16
16
],
17
17
"./package.json" : " ./package.json"
18
18
},
19
- "version" : " 8.8.0 " ,
19
+ "version" : " 8.8.1 " ,
20
20
"engines" : {
21
21
"node" : " >=0.4.0"
22
22
},
You can’t perform that action at this time.
0 commit comments