| 12345678910111213141516171819 |
- import type { Node } from '@babel/types'
- import { isCallOf } from './utils'
- import type { ScriptCompileContext } from './context'
- export const DEFINE_EXPOSE = 'defineExpose'
- export function processDefineExpose(
- ctx: ScriptCompileContext,
- node: Node,
- ): boolean {
- if (isCallOf(node, DEFINE_EXPOSE)) {
- if (ctx.hasDefineExposeCall) {
- ctx.error(`duplicate ${DEFINE_EXPOSE}() call`, node)
- }
- ctx.hasDefineExposeCall = true
- return true
- }
- return false
- }
|