File tree Expand file tree Collapse file tree 2 files changed +1777
-811
lines changed Expand file tree Collapse file tree 2 files changed +1777
-811
lines changed Original file line number Diff line number Diff line change 1
1
import "module" with { type : "json" } ;
2
2
import * as v1 from "module" with { type : "json" } ;
3
3
import { v2 } from "module" with { type : "json" } ;
4
- import v3 from "module" assert { type : "json" } ;
4
+ import v3 from "module" with { type : "json" } ;
5
5
6
6
export { v4 } from "module" with { type : "json" } ;
7
7
export * from "module" with { type : "json" } ;
@@ -11,3 +11,14 @@ const v6 = import("module", { "with": { type: "json" } });
11
11
12
12
import "module" ; // missing semicolon
13
13
assert ( { type : "json" } ) ; // function call, not import assertion
14
+
15
+ import "module" assert { type : "json" } ;
16
+ import * as v1 from "module" assert { type : "json" } ;
17
+ import { v2 } from "module" assert { type : "json" } ;
18
+ import v3 from "module" assert { type : "json" } ;
19
+
20
+ export { v4 } from "module" assert { type : "json" } ;
21
+ export * from "module" assert { type : "json" } ;
22
+ export * as v5 from "module" assert { type : "json" } ;
23
+
24
+ const v6 = import ( "module" , { assert : { type : "json" } } ) ;
You can’t perform that action at this time.
0 commit comments