feat(compiler): handle runtime helper injection

This commit is contained in:
Evan You
2019-09-22 23:07:36 -04:00
parent 914087edea
commit 8076ce1f28
10 changed files with 272 additions and 30 deletions

View File

@@ -65,6 +65,8 @@ export type ChildNode =
export interface RootNode extends Node {
type: NodeTypes.ROOT
children: ChildNode[]
imports: string[]
statements: string[]
}
export interface ElementNode extends Node {