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 11import "module" with { type : "json" } ;
22import * as v1 from "module" with { type : "json" } ;
33import { v2 } from "module" with { type : "json" } ;
4- import v3 from "module" assert { type : "json" } ;
4+ import v3 from "module" with { type : "json" } ;
55
66export { v4 } from "module" with { type : "json" } ;
77export * from "module" with { type : "json" } ;
@@ -11,3 +11,14 @@ const v6 = import("module", { "with": { type: "json" } });
1111
1212import "module" ; // missing semicolon
1313assert ( { 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