2019-09-21 00:16:19 +08:00
|
|
|
import { parse, ParserOptions } from './parse'
|
|
|
|
import { transform, TransformOptions } from './transform'
|
|
|
|
import { generate, CodegenOptions, CodegenResult } from './codegen'
|
2019-09-22 03:47:26 +08:00
|
|
|
import { RootNode } from './ast'
|
|
|
|
import { isString } from '@vue/shared'
|
2019-09-21 00:16:19 +08:00
|
|
|
|
|
|
|
export type CompilerOptions = ParserOptions & TransformOptions & CodegenOptions
|
|
|
|
|
|
|
|
export function compile(
|
2019-09-22 03:47:26 +08:00
|
|
|
template: string | RootNode,
|
2019-09-21 00:16:19 +08:00
|
|
|
options: CompilerOptions = {}
|
|
|
|
): CodegenResult {
|
2019-09-22 03:47:26 +08:00
|
|
|
const ast = isString(template) ? parse(template, options) : template
|
2019-09-21 00:16:19 +08:00
|
|
|
|
|
|
|
transform(ast, {
|
|
|
|
...options,
|
2019-09-22 05:42:12 +08:00
|
|
|
nodeTransforms: [
|
2019-09-21 00:16:19 +08:00
|
|
|
// TODO include built-in core transforms
|
2019-09-22 05:42:12 +08:00
|
|
|
...(options.nodeTransforms || []) // user transforms
|
|
|
|
],
|
|
|
|
directiveTransforms: {
|
|
|
|
// TODO include built-in directive transforms
|
|
|
|
...(options.directiveTransforms || {}) // user transforms
|
|
|
|
}
|
2019-09-21 00:16:19 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
return generate(ast, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Also expose lower level APIs & types
|
2019-09-18 07:08:47 +08:00
|
|
|
export { parse, ParserOptions, TextModes } from './parse'
|
2019-09-20 12:12:37 +08:00
|
|
|
export {
|
|
|
|
transform,
|
2019-09-22 05:42:12 +08:00
|
|
|
createStructuralDirectiveTransform,
|
2019-09-20 12:12:37 +08:00
|
|
|
TransformOptions,
|
2019-09-22 03:47:26 +08:00
|
|
|
TransformContext,
|
2019-09-22 05:42:12 +08:00
|
|
|
NodeTransform as Transform,
|
|
|
|
StructuralDirectiveTransform
|
2019-09-20 12:12:37 +08:00
|
|
|
} from './transform'
|
2019-09-22 03:47:26 +08:00
|
|
|
export {
|
|
|
|
generate,
|
|
|
|
CodegenOptions,
|
|
|
|
CodegenContext,
|
|
|
|
CodegenResult
|
|
|
|
} from './codegen'
|
2019-09-20 12:12:37 +08:00
|
|
|
export { ErrorCodes, CompilerError, createCompilerError } from './errors'
|
2019-09-17 02:43:29 +08:00
|
|
|
export * from './ast'
|
2019-09-22 05:42:12 +08:00
|
|
|
|
|
|
|
// debug
|
|
|
|
export { prepareElementForCodegen } from './transforms/element'
|