feat(compiler): basic transform implementation

This commit is contained in:
Evan You
2019-09-17 19:08:47 -04:00
parent a5c1b3283d
commit bbb57c26a2
11 changed files with 1889 additions and 1500 deletions

View File

@@ -1,3 +1,6 @@
export { parse, ParserOptions, TextModes } from './parser'
export { ParserErrorTypes } from './errorTypes'
export { parse, ParserOptions, TextModes } from './parse'
export { transform, Transform, TransformContext } from './transform'
export { ErrorCodes } from './errors'
export * from './ast'
export { transformIf } from './directives/vIf'