mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-14 15:31:31 +00:00
AST cleanup; Definition generators scaffolding
This commit is contained in:
@ -1,9 +1,16 @@
|
||||
import { A } from "./other";
|
||||
|
||||
import { A, B, C } from "./other";
|
||||
|
||||
import { A as B, C, D as E, F } from "./other";
|
||||
|
||||
import {
|
||||
A
|
||||
} from "./other";
|
||||
import {
|
||||
A,
|
||||
B,
|
||||
C
|
||||
} from "./other";
|
||||
import {
|
||||
A as B,
|
||||
C,
|
||||
D as E,
|
||||
F
|
||||
} from "./other";
|
||||
import * as A from "./other";
|
||||
|
||||
import "./other";
|
||||
|
Reference in New Issue
Block a user