Skip to content

Commit fef49dc

Browse files
overlookmotelmarijnh
authored andcommitted
Consistent field order in Property in tests
1 parent 382140c commit fef49dc

File tree

6 files changed

+103
-103
lines changed

6 files changed

+103
-103
lines changed

test/tests-async-iteration.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,6 @@ test("obj = { async f() { for await (x of xs); } }", {
415415
"end": 15,
416416
"name": "f"
417417
},
418-
"kind": "init",
419418
"value": {
420419
"type": "FunctionExpression",
421420
"start": 15,
@@ -455,7 +454,8 @@ test("obj = { async f() { for await (x of xs); } }", {
455454
}
456455
]
457456
}
458-
}
457+
},
458+
"kind": "init"
459459
}
460460
]
461461
}
@@ -846,7 +846,6 @@ test("obj = { async* f() { await a; yield b; } }", {
846846
"end": 16,
847847
"name": "f"
848848
},
849-
"kind": "init",
850849
"value": {
851850
"type": "FunctionExpression",
852851
"start": 16,
@@ -896,7 +895,8 @@ test("obj = { async* f() { await a; yield b; } }", {
896895
}
897896
]
898897
}
899-
}
898+
},
899+
"kind": "init"
900900
}
901901
]
902902
}
@@ -1249,7 +1249,6 @@ test("var gen = { async *method() {} }", {
12491249
"end": 25,
12501250
"name": "method"
12511251
},
1252-
"kind": "init",
12531252
"value": {
12541253
"type": "FunctionExpression",
12551254
"start": 25,
@@ -1265,7 +1264,8 @@ test("var gen = { async *method() {} }", {
12651264
"start": 28,
12661265
"type": "BlockStatement"
12671266
}
1268-
}
1267+
},
1268+
"kind": "init"
12691269
}
12701270
]
12711271
}
@@ -1360,7 +1360,6 @@ test("var C = class { async *method() {} }", {}, { "ecmaVersion": 9 })
13601360
// "end": 25,
13611361
// "name": "method"
13621362
// },
1363-
// "kind": "init",
13641363
// "value": {
13651364
// "type": "FunctionExpression",
13661365
// "start": 25,
@@ -1429,7 +1428,8 @@ test("var C = class { async *method() {} }", {}, { "ecmaVersion": 9 })
14291428
// }
14301429
// ]
14311430
// }
1432-
// }
1431+
// },
1432+
// "kind": "init"
14331433
// }
14341434
// ]
14351435
// }
@@ -1565,7 +1565,6 @@ test("var C = class { async *method() {} }", {}, { "ecmaVersion": 9 })
15651565
// "end": 25,
15661566
// "name": "method"
15671567
// },
1568-
// "kind": "init",
15691568
// "value": {
15701569
// "type": "FunctionExpression",
15711570
// "start": 25,
@@ -1634,7 +1633,8 @@ test("var C = class { async *method() {} }", {}, { "ecmaVersion": 9 })
16341633
// }
16351634
// ]
16361635
// }
1637-
// }
1636+
// },
1637+
// "kind": "init"
16381638
// }
16391639
// ]
16401640
// }
@@ -1770,7 +1770,6 @@ test("var C = class { async *method() {} }", {}, { "ecmaVersion": 9 })
17701770
// "end": 25,
17711771
// "name": "method"
17721772
// },
1773-
// "kind": "init",
17741773
// "value": {
17751774
// "type": "FunctionExpression",
17761775
// "start": 25,
@@ -1861,7 +1860,8 @@ test("var C = class { async *method() {} }", {}, { "ecmaVersion": 9 })
18611860
// }
18621861
// ]
18631862
// }
1864-
// }
1863+
// },
1864+
// "kind": "init"
18651865
// }
18661866
// ]
18671867
// }

0 commit comments

Comments
 (0)