@@ -18,12 +18,13 @@ function parseForESLint(code, options) {
18
18
19
19
const ESLINT_VERSION = ESLint . version ;
20
20
const isESLint7 = ESLINT_VERSION . startsWith ( "7." ) ;
21
+ const isESLint8 = ESLINT_VERSION . startsWith ( "8." ) ;
21
22
const { __dirname : dirname , require } = commonJS ( import . meta. url ) ;
22
23
23
24
// @babel /eslint-parser 8 will drop ESLint 7 support
24
25
25
26
const itESLint7 = isESLint7 && ! process . env . BABEL_8_BREAKING ? it : itDummy ;
26
- const itESLint8 = isESLint7 ? itDummy : it ;
27
+ const itESLintGte8 = isESLint7 ? itDummy : it ;
27
28
28
29
const BABEL_OPTIONS = {
29
30
configFile : path . resolve (
@@ -38,11 +39,14 @@ const PROPS_TO_REMOVE = [
38
39
{ key : "typeArguments" , type : null } ,
39
40
{ key : "filename" , type : null } ,
40
41
{ key : "identifierName" , type : null } ,
41
- // espree doesn't support these yet
42
+ // For legacy estree AST
43
+ { key : "attributes" , type : "ImportExpression" } ,
44
+ ] ;
45
+ const PROPS_TO_REMOVE_ESLINT_LT_9 = [
46
+ // old espree doesn't support these
42
47
{ key : "attributes" , type : "ImportDeclaration" } ,
43
48
{ key : "attributes" , type : "ExportNamedDeclaration" } ,
44
49
{ key : "attributes" , type : "ExportAllDeclaration" } ,
45
- { key : "attributes" , type : "ImportExpression" } ,
46
50
{ key : "options" , type : "ImportExpression" } ,
47
51
] ;
48
52
@@ -108,11 +112,32 @@ describe("Babel and Espree", () => {
108
112
ecmaFeatures : babelEcmaFeatures ,
109
113
} ) . ast ;
110
114
111
- deeplyRemoveProperties ( babelAST , PROPS_TO_REMOVE ) ;
112
- deeplyRemoveProperties ( espreeAST , [ "offset" ] ) ;
115
+ deeplyRemoveProperties ( babelAST , [
116
+ ...PROPS_TO_REMOVE ,
117
+ ...PROPS_TO_REMOVE_ESLINT_LT_9 ,
118
+ ] ) ;
113
119
expect ( babelAST ) . toEqual ( espreeAST ) ;
114
- } else {
120
+ } else if ( isESLint8 ) {
115
121
// ESLint 8
122
+ const espreeAST = espree . parse ( code , {
123
+ ...espreeOptions ,
124
+ ecmaVersion : 2024 ,
125
+ } ) ;
126
+
127
+ const babelAST = parseForESLint ( code , {
128
+ eslintVisitorKeys : true ,
129
+ eslintScopeManager : true ,
130
+ babelOptions : BABEL_OPTIONS ,
131
+ ecmaFeatures : babelEcmaFeatures ,
132
+ } ) . ast ;
133
+
134
+ deeplyRemoveProperties ( babelAST , [
135
+ ...PROPS_TO_REMOVE ,
136
+ ...PROPS_TO_REMOVE_ESLINT_LT_9 ,
137
+ ] ) ;
138
+ expect ( babelAST ) . toEqual ( espreeAST ) ;
139
+ } else {
140
+ // ESLint 9
116
141
const espreeAST = espree . parse ( code , {
117
142
...espreeOptions ,
118
143
ecmaVersion : "latest" ,
@@ -126,7 +151,6 @@ describe("Babel and Espree", () => {
126
151
} ) . ast ;
127
152
128
153
deeplyRemoveProperties ( babelAST , PROPS_TO_REMOVE ) ;
129
- deeplyRemoveProperties ( espreeAST , [ "offset" ] ) ;
130
154
expect ( babelAST ) . toEqual ( espreeAST ) ;
131
155
}
132
156
}
@@ -453,7 +477,7 @@ describe("Babel and Espree", () => {
453
477
expect ( babylonAST . tokens [ 3 ] . value ) . toEqual ( "#" ) ;
454
478
} ) ;
455
479
456
- itESLint8 ( "private identifier (token) - ESLint 8" , ( ) => {
480
+ itESLintGte8 ( "private identifier (token) - ESLint 8" , ( ) => {
457
481
const code = "class A { #x }" ;
458
482
const babylonAST = parseForESLint ( code , {
459
483
eslintVisitorKeys : true ,
@@ -506,7 +530,7 @@ describe("Babel and Espree", () => {
506
530
expect ( classDeclaration . body . body [ 0 ] . type ) . toEqual ( "PropertyDefinition" ) ;
507
531
} ) ;
508
532
509
- itESLint8 ( "class fields with ESLint 8" , ( ) => {
533
+ itESLintGte8 ( "class fields with ESLint 8" , ( ) => {
510
534
parseAndAssertSame (
511
535
`
512
536
class A {
@@ -550,7 +574,7 @@ describe("Babel and Espree", () => {
550
574
) . toMatchObject ( staticKw ) ;
551
575
} ) ;
552
576
553
- itESLint8 ( "static (token) - ESLint 8" , ( ) => {
577
+ itESLintGte8 ( "static (token) - ESLint 8" , ( ) => {
554
578
const code = `
555
579
class A {
556
580
static m() {}
@@ -607,7 +631,7 @@ describe("Babel and Espree", () => {
607
631
expect ( babylonAST . tokens [ 17 ] ) . toMatchObject ( topicToken ) ;
608
632
} ) ;
609
633
610
- itESLint8 ( "pipeline # topic token - ESLint 8" , ( ) => {
634
+ itESLintGte8 ( "pipeline # topic token - ESLint 8" , ( ) => {
611
635
const code = `
612
636
x |> #
613
637
y |> #[0]
0 commit comments