compiler-core.d.ts 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073
  1. import { Node as Node$1, Identifier, Function, BlockStatement as BlockStatement$1, Program, ObjectProperty } from '@babel/types';
  2. import { ParserPlugin } from '@babel/parser';
  3. export { generateCodeFrame } from '@vue/shared';
  4. export declare const FRAGMENT: unique symbol;
  5. export declare const TELEPORT: unique symbol;
  6. export declare const SUSPENSE: unique symbol;
  7. export declare const KEEP_ALIVE: unique symbol;
  8. export declare const BASE_TRANSITION: unique symbol;
  9. export declare const OPEN_BLOCK: unique symbol;
  10. export declare const CREATE_BLOCK: unique symbol;
  11. export declare const CREATE_ELEMENT_BLOCK: unique symbol;
  12. export declare const CREATE_VNODE: unique symbol;
  13. export declare const CREATE_ELEMENT_VNODE: unique symbol;
  14. export declare const CREATE_COMMENT: unique symbol;
  15. export declare const CREATE_TEXT: unique symbol;
  16. export declare const CREATE_STATIC: unique symbol;
  17. export declare const RESOLVE_COMPONENT: unique symbol;
  18. export declare const RESOLVE_DYNAMIC_COMPONENT: unique symbol;
  19. export declare const RESOLVE_DIRECTIVE: unique symbol;
  20. export declare const RESOLVE_FILTER: unique symbol;
  21. export declare const WITH_DIRECTIVES: unique symbol;
  22. export declare const RENDER_LIST: unique symbol;
  23. export declare const RENDER_SLOT: unique symbol;
  24. export declare const CREATE_SLOTS: unique symbol;
  25. export declare const TO_DISPLAY_STRING: unique symbol;
  26. export declare const MERGE_PROPS: unique symbol;
  27. export declare const NORMALIZE_CLASS: unique symbol;
  28. export declare const NORMALIZE_STYLE: unique symbol;
  29. export declare const NORMALIZE_PROPS: unique symbol;
  30. export declare const GUARD_REACTIVE_PROPS: unique symbol;
  31. export declare const TO_HANDLERS: unique symbol;
  32. export declare const CAMELIZE: unique symbol;
  33. export declare const CAPITALIZE: unique symbol;
  34. export declare const TO_HANDLER_KEY: unique symbol;
  35. export declare const SET_BLOCK_TRACKING: unique symbol;
  36. export declare const PUSH_SCOPE_ID: unique symbol;
  37. export declare const POP_SCOPE_ID: unique symbol;
  38. export declare const WITH_CTX: unique symbol;
  39. export declare const UNREF: unique symbol;
  40. export declare const IS_REF: unique symbol;
  41. export declare const WITH_MEMO: unique symbol;
  42. export declare const IS_MEMO_SAME: unique symbol;
  43. export declare const helperNameMap: Record<symbol, string>;
  44. export declare function registerRuntimeHelpers(helpers: Record<symbol, string>): void;
  45. type OptionalOptions = 'decodeEntities' | 'whitespace' | 'isNativeTag' | 'isBuiltInComponent' | 'expressionPlugins' | keyof CompilerCompatOptions;
  46. type MergedParserOptions = Omit<Required<ParserOptions>, OptionalOptions> & Pick<ParserOptions, OptionalOptions>;
  47. export declare function baseParse(input: string, options?: ParserOptions): RootNode;
  48. type CompilerCompatConfig = Partial<Record<CompilerDeprecationTypes, boolean | 'suppress-warning'>> & {
  49. MODE?: 2 | 3;
  50. };
  51. interface CompilerCompatOptions {
  52. compatConfig?: CompilerCompatConfig;
  53. }
  54. export declare enum CompilerDeprecationTypes {
  55. COMPILER_IS_ON_ELEMENT = "COMPILER_IS_ON_ELEMENT",
  56. COMPILER_V_BIND_SYNC = "COMPILER_V_BIND_SYNC",
  57. COMPILER_V_BIND_OBJECT_ORDER = "COMPILER_V_BIND_OBJECT_ORDER",
  58. COMPILER_V_ON_NATIVE = "COMPILER_V_ON_NATIVE",
  59. COMPILER_V_IF_V_FOR_PRECEDENCE = "COMPILER_V_IF_V_FOR_PRECEDENCE",
  60. COMPILER_NATIVE_TEMPLATE = "COMPILER_NATIVE_TEMPLATE",
  61. COMPILER_INLINE_TEMPLATE = "COMPILER_INLINE_TEMPLATE",
  62. COMPILER_FILTERS = "COMPILER_FILTERS"
  63. }
  64. export declare function checkCompatEnabled(key: CompilerDeprecationTypes, context: MergedParserOptions | TransformContext, loc: SourceLocation | null, ...args: any[]): boolean;
  65. export declare function warnDeprecation(key: CompilerDeprecationTypes, context: MergedParserOptions | TransformContext, loc: SourceLocation | null, ...args: any[]): void;
  66. export type NodeTransform = (node: RootNode | TemplateChildNode, context: TransformContext) => void | (() => void) | (() => void)[];
  67. export type DirectiveTransform = (dir: DirectiveNode, node: ElementNode, context: TransformContext, augmentor?: (ret: DirectiveTransformResult) => DirectiveTransformResult) => DirectiveTransformResult;
  68. interface DirectiveTransformResult {
  69. props: Property[];
  70. needRuntime?: boolean | symbol;
  71. ssrTagParts?: TemplateLiteral['elements'];
  72. }
  73. export type StructuralDirectiveTransform = (node: ElementNode, dir: DirectiveNode, context: TransformContext) => void | (() => void);
  74. interface ImportItem {
  75. exp: string | ExpressionNode;
  76. path: string;
  77. }
  78. export interface TransformContext extends Required<Omit<TransformOptions, keyof CompilerCompatOptions>>, CompilerCompatOptions {
  79. selfName: string | null;
  80. root: RootNode;
  81. helpers: Map<symbol, number>;
  82. components: Set<string>;
  83. directives: Set<string>;
  84. hoists: (JSChildNode | null)[];
  85. imports: ImportItem[];
  86. temps: number;
  87. cached: number;
  88. identifiers: {
  89. [name: string]: number | undefined;
  90. };
  91. scopes: {
  92. vFor: number;
  93. vSlot: number;
  94. vPre: number;
  95. vOnce: number;
  96. };
  97. parent: ParentNode | null;
  98. grandParent: ParentNode | null;
  99. childIndex: number;
  100. currentNode: RootNode | TemplateChildNode | null;
  101. inVOnce: boolean;
  102. helper<T extends symbol>(name: T): T;
  103. removeHelper<T extends symbol>(name: T): void;
  104. helperString(name: symbol): string;
  105. replaceNode(node: TemplateChildNode): void;
  106. removeNode(node?: TemplateChildNode): void;
  107. onNodeRemoved(): void;
  108. addIdentifiers(exp: ExpressionNode | string): void;
  109. removeIdentifiers(exp: ExpressionNode | string): void;
  110. hoist(exp: string | JSChildNode | ArrayExpression): SimpleExpressionNode;
  111. cache<T extends JSChildNode>(exp: T, isVNode?: boolean): CacheExpression | T;
  112. constantCache: WeakMap<TemplateChildNode, ConstantTypes>;
  113. filters?: Set<string>;
  114. }
  115. export declare function createTransformContext(root: RootNode, { filename, prefixIdentifiers, hoistStatic, hmr, cacheHandlers, nodeTransforms, directiveTransforms, transformHoist, isBuiltInComponent, isCustomElement, expressionPlugins, scopeId, slotted, ssr, inSSR, ssrCssVars, bindingMetadata, inline, isTS, onError, onWarn, compatConfig, }: TransformOptions): TransformContext;
  116. export declare function transform(root: RootNode, options: TransformOptions): void;
  117. export declare function traverseNode(node: RootNode | TemplateChildNode, context: TransformContext): void;
  118. export declare function createStructuralDirectiveTransform(name: string | RegExp, fn: StructuralDirectiveTransform): NodeTransform;
  119. export declare const transformElement: NodeTransform;
  120. export declare function resolveComponentType(node: ComponentNode, context: TransformContext, ssr?: boolean): string | symbol | CallExpression;
  121. export type PropsExpression = ObjectExpression | CallExpression | ExpressionNode;
  122. export declare function buildProps(node: ElementNode, context: TransformContext, props: (DirectiveNode | AttributeNode)[] | undefined, isComponent: boolean, isDynamicComponent: boolean, ssr?: boolean): {
  123. props: PropsExpression | undefined;
  124. directives: DirectiveNode[];
  125. patchFlag: number;
  126. dynamicPropNames: string[];
  127. shouldUseBlock: boolean;
  128. };
  129. export declare function buildDirectiveArgs(dir: DirectiveNode, context: TransformContext): ArrayExpression;
  130. export type Namespace = number;
  131. export declare enum Namespaces {
  132. HTML = 0,
  133. SVG = 1,
  134. MATH_ML = 2
  135. }
  136. export declare enum NodeTypes {
  137. ROOT = 0,
  138. ELEMENT = 1,
  139. TEXT = 2,
  140. COMMENT = 3,
  141. SIMPLE_EXPRESSION = 4,
  142. INTERPOLATION = 5,
  143. ATTRIBUTE = 6,
  144. DIRECTIVE = 7,
  145. COMPOUND_EXPRESSION = 8,
  146. IF = 9,
  147. IF_BRANCH = 10,
  148. FOR = 11,
  149. TEXT_CALL = 12,
  150. VNODE_CALL = 13,
  151. JS_CALL_EXPRESSION = 14,
  152. JS_OBJECT_EXPRESSION = 15,
  153. JS_PROPERTY = 16,
  154. JS_ARRAY_EXPRESSION = 17,
  155. JS_FUNCTION_EXPRESSION = 18,
  156. JS_CONDITIONAL_EXPRESSION = 19,
  157. JS_CACHE_EXPRESSION = 20,
  158. JS_BLOCK_STATEMENT = 21,
  159. JS_TEMPLATE_LITERAL = 22,
  160. JS_IF_STATEMENT = 23,
  161. JS_ASSIGNMENT_EXPRESSION = 24,
  162. JS_SEQUENCE_EXPRESSION = 25,
  163. JS_RETURN_STATEMENT = 26
  164. }
  165. export declare enum ElementTypes {
  166. ELEMENT = 0,
  167. COMPONENT = 1,
  168. SLOT = 2,
  169. TEMPLATE = 3
  170. }
  171. export interface Node {
  172. type: NodeTypes;
  173. loc: SourceLocation;
  174. }
  175. export interface SourceLocation {
  176. start: Position;
  177. end: Position;
  178. source: string;
  179. }
  180. export interface Position {
  181. offset: number;
  182. line: number;
  183. column: number;
  184. }
  185. export type ParentNode = RootNode | ElementNode | IfBranchNode | ForNode;
  186. export type ExpressionNode = SimpleExpressionNode | CompoundExpressionNode;
  187. export type TemplateChildNode = ElementNode | InterpolationNode | CompoundExpressionNode | TextNode | CommentNode | IfNode | IfBranchNode | ForNode | TextCallNode;
  188. export interface RootNode extends Node {
  189. type: NodeTypes.ROOT;
  190. source: string;
  191. children: TemplateChildNode[];
  192. helpers: Set<symbol>;
  193. components: string[];
  194. directives: string[];
  195. hoists: (JSChildNode | null)[];
  196. imports: ImportItem[];
  197. cached: number;
  198. temps: number;
  199. ssrHelpers?: symbol[];
  200. codegenNode?: TemplateChildNode | JSChildNode | BlockStatement;
  201. transformed?: boolean;
  202. filters?: string[];
  203. }
  204. export type ElementNode = PlainElementNode | ComponentNode | SlotOutletNode | TemplateNode;
  205. export interface BaseElementNode extends Node {
  206. type: NodeTypes.ELEMENT;
  207. ns: Namespace;
  208. tag: string;
  209. tagType: ElementTypes;
  210. props: Array<AttributeNode | DirectiveNode>;
  211. children: TemplateChildNode[];
  212. isSelfClosing?: boolean;
  213. innerLoc?: SourceLocation;
  214. }
  215. export interface PlainElementNode extends BaseElementNode {
  216. tagType: ElementTypes.ELEMENT;
  217. codegenNode: VNodeCall | SimpleExpressionNode | CacheExpression | MemoExpression | undefined;
  218. ssrCodegenNode?: TemplateLiteral;
  219. }
  220. export interface ComponentNode extends BaseElementNode {
  221. tagType: ElementTypes.COMPONENT;
  222. codegenNode: VNodeCall | CacheExpression | MemoExpression | undefined;
  223. ssrCodegenNode?: CallExpression;
  224. }
  225. export interface SlotOutletNode extends BaseElementNode {
  226. tagType: ElementTypes.SLOT;
  227. codegenNode: RenderSlotCall | CacheExpression | undefined;
  228. ssrCodegenNode?: CallExpression;
  229. }
  230. export interface TemplateNode extends BaseElementNode {
  231. tagType: ElementTypes.TEMPLATE;
  232. codegenNode: undefined;
  233. }
  234. export interface TextNode extends Node {
  235. type: NodeTypes.TEXT;
  236. content: string;
  237. }
  238. export interface CommentNode extends Node {
  239. type: NodeTypes.COMMENT;
  240. content: string;
  241. }
  242. export interface AttributeNode extends Node {
  243. type: NodeTypes.ATTRIBUTE;
  244. name: string;
  245. nameLoc: SourceLocation;
  246. value: TextNode | undefined;
  247. }
  248. export interface DirectiveNode extends Node {
  249. type: NodeTypes.DIRECTIVE;
  250. /**
  251. * the normalized name without prefix or shorthands, e.g. "bind", "on"
  252. */
  253. name: string;
  254. /**
  255. * the raw attribute name, preserving shorthand, and including arg & modifiers
  256. * this is only used during parse.
  257. */
  258. rawName?: string;
  259. exp: ExpressionNode | undefined;
  260. arg: ExpressionNode | undefined;
  261. modifiers: string[];
  262. /**
  263. * optional property to cache the expression parse result for v-for
  264. */
  265. forParseResult?: ForParseResult;
  266. }
  267. /**
  268. * Static types have several levels.
  269. * Higher levels implies lower levels. e.g. a node that can be stringified
  270. * can always be hoisted and skipped for patch.
  271. */
  272. export declare enum ConstantTypes {
  273. NOT_CONSTANT = 0,
  274. CAN_SKIP_PATCH = 1,
  275. CAN_HOIST = 2,
  276. CAN_STRINGIFY = 3
  277. }
  278. export interface SimpleExpressionNode extends Node {
  279. type: NodeTypes.SIMPLE_EXPRESSION;
  280. content: string;
  281. isStatic: boolean;
  282. constType: ConstantTypes;
  283. /**
  284. * - `null` means the expression is a simple identifier that doesn't need
  285. * parsing
  286. * - `false` means there was a parsing error
  287. */
  288. ast?: Node$1 | null | false;
  289. /**
  290. * Indicates this is an identifier for a hoist vnode call and points to the
  291. * hoisted node.
  292. */
  293. hoisted?: JSChildNode;
  294. /**
  295. * an expression parsed as the params of a function will track
  296. * the identifiers declared inside the function body.
  297. */
  298. identifiers?: string[];
  299. isHandlerKey?: boolean;
  300. }
  301. export interface InterpolationNode extends Node {
  302. type: NodeTypes.INTERPOLATION;
  303. content: ExpressionNode;
  304. }
  305. export interface CompoundExpressionNode extends Node {
  306. type: NodeTypes.COMPOUND_EXPRESSION;
  307. /**
  308. * - `null` means the expression is a simple identifier that doesn't need
  309. * parsing
  310. * - `false` means there was a parsing error
  311. */
  312. ast?: Node$1 | null | false;
  313. children: (SimpleExpressionNode | CompoundExpressionNode | InterpolationNode | TextNode | string | symbol)[];
  314. /**
  315. * an expression parsed as the params of a function will track
  316. * the identifiers declared inside the function body.
  317. */
  318. identifiers?: string[];
  319. isHandlerKey?: boolean;
  320. }
  321. export interface IfNode extends Node {
  322. type: NodeTypes.IF;
  323. branches: IfBranchNode[];
  324. codegenNode?: IfConditionalExpression | CacheExpression;
  325. }
  326. export interface IfBranchNode extends Node {
  327. type: NodeTypes.IF_BRANCH;
  328. condition: ExpressionNode | undefined;
  329. children: TemplateChildNode[];
  330. userKey?: AttributeNode | DirectiveNode;
  331. isTemplateIf?: boolean;
  332. }
  333. export interface ForNode extends Node {
  334. type: NodeTypes.FOR;
  335. source: ExpressionNode;
  336. valueAlias: ExpressionNode | undefined;
  337. keyAlias: ExpressionNode | undefined;
  338. objectIndexAlias: ExpressionNode | undefined;
  339. parseResult: ForParseResult;
  340. children: TemplateChildNode[];
  341. codegenNode?: ForCodegenNode;
  342. }
  343. export interface ForParseResult {
  344. source: ExpressionNode;
  345. value: ExpressionNode | undefined;
  346. key: ExpressionNode | undefined;
  347. index: ExpressionNode | undefined;
  348. finalized: boolean;
  349. }
  350. export interface TextCallNode extends Node {
  351. type: NodeTypes.TEXT_CALL;
  352. content: TextNode | InterpolationNode | CompoundExpressionNode;
  353. codegenNode: CallExpression | SimpleExpressionNode;
  354. }
  355. export type TemplateTextChildNode = TextNode | InterpolationNode | CompoundExpressionNode;
  356. export interface VNodeCall extends Node {
  357. type: NodeTypes.VNODE_CALL;
  358. tag: string | symbol | CallExpression;
  359. props: PropsExpression | undefined;
  360. children: TemplateChildNode[] | TemplateTextChildNode | SlotsExpression | ForRenderListExpression | SimpleExpressionNode | undefined;
  361. patchFlag: string | undefined;
  362. dynamicProps: string | SimpleExpressionNode | undefined;
  363. directives: DirectiveArguments | undefined;
  364. isBlock: boolean;
  365. disableTracking: boolean;
  366. isComponent: boolean;
  367. }
  368. export type JSChildNode = VNodeCall | CallExpression | ObjectExpression | ArrayExpression | ExpressionNode | FunctionExpression | ConditionalExpression | CacheExpression | AssignmentExpression | SequenceExpression;
  369. export interface CallExpression extends Node {
  370. type: NodeTypes.JS_CALL_EXPRESSION;
  371. callee: string | symbol;
  372. arguments: (string | symbol | JSChildNode | SSRCodegenNode | TemplateChildNode | TemplateChildNode[])[];
  373. }
  374. export interface ObjectExpression extends Node {
  375. type: NodeTypes.JS_OBJECT_EXPRESSION;
  376. properties: Array<Property>;
  377. }
  378. export interface Property extends Node {
  379. type: NodeTypes.JS_PROPERTY;
  380. key: ExpressionNode;
  381. value: JSChildNode;
  382. }
  383. export interface ArrayExpression extends Node {
  384. type: NodeTypes.JS_ARRAY_EXPRESSION;
  385. elements: Array<string | Node>;
  386. }
  387. export interface FunctionExpression extends Node {
  388. type: NodeTypes.JS_FUNCTION_EXPRESSION;
  389. params: ExpressionNode | string | (ExpressionNode | string)[] | undefined;
  390. returns?: TemplateChildNode | TemplateChildNode[] | JSChildNode;
  391. body?: BlockStatement | IfStatement;
  392. newline: boolean;
  393. /**
  394. * This flag is for codegen to determine whether it needs to generate the
  395. * withScopeId() wrapper
  396. */
  397. isSlot: boolean;
  398. /**
  399. * __COMPAT__ only, indicates a slot function that should be excluded from
  400. * the legacy $scopedSlots instance property.
  401. */
  402. isNonScopedSlot?: boolean;
  403. }
  404. export interface ConditionalExpression extends Node {
  405. type: NodeTypes.JS_CONDITIONAL_EXPRESSION;
  406. test: JSChildNode;
  407. consequent: JSChildNode;
  408. alternate: JSChildNode;
  409. newline: boolean;
  410. }
  411. export interface CacheExpression extends Node {
  412. type: NodeTypes.JS_CACHE_EXPRESSION;
  413. index: number;
  414. value: JSChildNode;
  415. isVNode: boolean;
  416. }
  417. export interface MemoExpression extends CallExpression {
  418. callee: typeof WITH_MEMO;
  419. arguments: [ExpressionNode, MemoFactory, string, string];
  420. }
  421. interface MemoFactory extends FunctionExpression {
  422. returns: BlockCodegenNode;
  423. }
  424. export type SSRCodegenNode = BlockStatement | TemplateLiteral | IfStatement | AssignmentExpression | ReturnStatement | SequenceExpression;
  425. export interface BlockStatement extends Node {
  426. type: NodeTypes.JS_BLOCK_STATEMENT;
  427. body: (JSChildNode | IfStatement)[];
  428. }
  429. export interface TemplateLiteral extends Node {
  430. type: NodeTypes.JS_TEMPLATE_LITERAL;
  431. elements: (string | JSChildNode)[];
  432. }
  433. export interface IfStatement extends Node {
  434. type: NodeTypes.JS_IF_STATEMENT;
  435. test: ExpressionNode;
  436. consequent: BlockStatement;
  437. alternate: IfStatement | BlockStatement | ReturnStatement | undefined;
  438. }
  439. export interface AssignmentExpression extends Node {
  440. type: NodeTypes.JS_ASSIGNMENT_EXPRESSION;
  441. left: SimpleExpressionNode;
  442. right: JSChildNode;
  443. }
  444. export interface SequenceExpression extends Node {
  445. type: NodeTypes.JS_SEQUENCE_EXPRESSION;
  446. expressions: JSChildNode[];
  447. }
  448. export interface ReturnStatement extends Node {
  449. type: NodeTypes.JS_RETURN_STATEMENT;
  450. returns: TemplateChildNode | TemplateChildNode[] | JSChildNode;
  451. }
  452. export interface DirectiveArguments extends ArrayExpression {
  453. elements: DirectiveArgumentNode[];
  454. }
  455. export interface DirectiveArgumentNode extends ArrayExpression {
  456. elements: [string] | [string, ExpressionNode] | [string, ExpressionNode, ExpressionNode] | [string, ExpressionNode, ExpressionNode, ObjectExpression];
  457. }
  458. export interface RenderSlotCall extends CallExpression {
  459. callee: typeof RENDER_SLOT;
  460. arguments: [string, string | ExpressionNode] | [string, string | ExpressionNode, PropsExpression] | [
  461. string,
  462. string | ExpressionNode,
  463. PropsExpression | '{}',
  464. TemplateChildNode[]
  465. ];
  466. }
  467. export type SlotsExpression = SlotsObjectExpression | DynamicSlotsExpression;
  468. export interface SlotsObjectExpression extends ObjectExpression {
  469. properties: SlotsObjectProperty[];
  470. }
  471. export interface SlotsObjectProperty extends Property {
  472. value: SlotFunctionExpression;
  473. }
  474. export interface SlotFunctionExpression extends FunctionExpression {
  475. returns: TemplateChildNode[];
  476. }
  477. export interface DynamicSlotsExpression extends CallExpression {
  478. callee: typeof CREATE_SLOTS;
  479. arguments: [SlotsObjectExpression, DynamicSlotEntries];
  480. }
  481. export interface DynamicSlotEntries extends ArrayExpression {
  482. elements: (ConditionalDynamicSlotNode | ListDynamicSlotNode)[];
  483. }
  484. export interface ConditionalDynamicSlotNode extends ConditionalExpression {
  485. consequent: DynamicSlotNode;
  486. alternate: DynamicSlotNode | SimpleExpressionNode;
  487. }
  488. export interface ListDynamicSlotNode extends CallExpression {
  489. callee: typeof RENDER_LIST;
  490. arguments: [ExpressionNode, ListDynamicSlotIterator];
  491. }
  492. export interface ListDynamicSlotIterator extends FunctionExpression {
  493. returns: DynamicSlotNode;
  494. }
  495. export interface DynamicSlotNode extends ObjectExpression {
  496. properties: [Property, DynamicSlotFnProperty];
  497. }
  498. export interface DynamicSlotFnProperty extends Property {
  499. value: SlotFunctionExpression;
  500. }
  501. export type BlockCodegenNode = VNodeCall | RenderSlotCall;
  502. export interface IfConditionalExpression extends ConditionalExpression {
  503. consequent: BlockCodegenNode | MemoExpression;
  504. alternate: BlockCodegenNode | IfConditionalExpression | MemoExpression;
  505. }
  506. export interface ForCodegenNode extends VNodeCall {
  507. isBlock: true;
  508. tag: typeof FRAGMENT;
  509. props: undefined;
  510. children: ForRenderListExpression;
  511. patchFlag: string;
  512. disableTracking: boolean;
  513. }
  514. export interface ForRenderListExpression extends CallExpression {
  515. callee: typeof RENDER_LIST;
  516. arguments: [ExpressionNode, ForIteratorExpression];
  517. }
  518. export interface ForIteratorExpression extends FunctionExpression {
  519. returns: BlockCodegenNode;
  520. }
  521. export declare const locStub: SourceLocation;
  522. export declare function createRoot(children: TemplateChildNode[], source?: string): RootNode;
  523. export declare function createVNodeCall(context: TransformContext | null, tag: VNodeCall['tag'], props?: VNodeCall['props'], children?: VNodeCall['children'], patchFlag?: VNodeCall['patchFlag'], dynamicProps?: VNodeCall['dynamicProps'], directives?: VNodeCall['directives'], isBlock?: VNodeCall['isBlock'], disableTracking?: VNodeCall['disableTracking'], isComponent?: VNodeCall['isComponent'], loc?: SourceLocation): VNodeCall;
  524. export declare function createArrayExpression(elements: ArrayExpression['elements'], loc?: SourceLocation): ArrayExpression;
  525. export declare function createObjectExpression(properties: ObjectExpression['properties'], loc?: SourceLocation): ObjectExpression;
  526. export declare function createObjectProperty(key: Property['key'] | string, value: Property['value']): Property;
  527. export declare function createSimpleExpression(content: SimpleExpressionNode['content'], isStatic?: SimpleExpressionNode['isStatic'], loc?: SourceLocation, constType?: ConstantTypes): SimpleExpressionNode;
  528. export declare function createInterpolation(content: InterpolationNode['content'] | string, loc: SourceLocation): InterpolationNode;
  529. export declare function createCompoundExpression(children: CompoundExpressionNode['children'], loc?: SourceLocation): CompoundExpressionNode;
  530. type InferCodegenNodeType<T> = T extends typeof RENDER_SLOT ? RenderSlotCall : CallExpression;
  531. export declare function createCallExpression<T extends CallExpression['callee']>(callee: T, args?: CallExpression['arguments'], loc?: SourceLocation): InferCodegenNodeType<T>;
  532. export declare function createFunctionExpression(params: FunctionExpression['params'], returns?: FunctionExpression['returns'], newline?: boolean, isSlot?: boolean, loc?: SourceLocation): FunctionExpression;
  533. export declare function createConditionalExpression(test: ConditionalExpression['test'], consequent: ConditionalExpression['consequent'], alternate: ConditionalExpression['alternate'], newline?: boolean): ConditionalExpression;
  534. export declare function createCacheExpression(index: number, value: JSChildNode, isVNode?: boolean): CacheExpression;
  535. export declare function createBlockStatement(body: BlockStatement['body']): BlockStatement;
  536. export declare function createTemplateLiteral(elements: TemplateLiteral['elements']): TemplateLiteral;
  537. export declare function createIfStatement(test: IfStatement['test'], consequent: IfStatement['consequent'], alternate?: IfStatement['alternate']): IfStatement;
  538. export declare function createAssignmentExpression(left: AssignmentExpression['left'], right: AssignmentExpression['right']): AssignmentExpression;
  539. export declare function createSequenceExpression(expressions: SequenceExpression['expressions']): SequenceExpression;
  540. export declare function createReturnStatement(returns: ReturnStatement['returns']): ReturnStatement;
  541. export declare function getVNodeHelper(ssr: boolean, isComponent: boolean): typeof CREATE_VNODE | typeof CREATE_ELEMENT_VNODE;
  542. export declare function getVNodeBlockHelper(ssr: boolean, isComponent: boolean): typeof CREATE_BLOCK | typeof CREATE_ELEMENT_BLOCK;
  543. export declare function convertToBlock(node: VNodeCall, { helper, removeHelper, inSSR }: TransformContext): void;
  544. export interface CompilerError extends SyntaxError {
  545. code: number | string;
  546. loc?: SourceLocation;
  547. }
  548. export interface CoreCompilerError extends CompilerError {
  549. code: ErrorCodes;
  550. }
  551. type InferCompilerError<T> = T extends ErrorCodes ? CoreCompilerError : CompilerError;
  552. export declare function createCompilerError<T extends number>(code: T, loc?: SourceLocation, messages?: {
  553. [code: number]: string;
  554. }, additionalMessage?: string): InferCompilerError<T>;
  555. export declare enum ErrorCodes {
  556. ABRUPT_CLOSING_OF_EMPTY_COMMENT = 0,
  557. CDATA_IN_HTML_CONTENT = 1,
  558. DUPLICATE_ATTRIBUTE = 2,
  559. END_TAG_WITH_ATTRIBUTES = 3,
  560. END_TAG_WITH_TRAILING_SOLIDUS = 4,
  561. EOF_BEFORE_TAG_NAME = 5,
  562. EOF_IN_CDATA = 6,
  563. EOF_IN_COMMENT = 7,
  564. EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT = 8,
  565. EOF_IN_TAG = 9,
  566. INCORRECTLY_CLOSED_COMMENT = 10,
  567. INCORRECTLY_OPENED_COMMENT = 11,
  568. INVALID_FIRST_CHARACTER_OF_TAG_NAME = 12,
  569. MISSING_ATTRIBUTE_VALUE = 13,
  570. MISSING_END_TAG_NAME = 14,
  571. MISSING_WHITESPACE_BETWEEN_ATTRIBUTES = 15,
  572. NESTED_COMMENT = 16,
  573. UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME = 17,
  574. UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE = 18,
  575. UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME = 19,
  576. UNEXPECTED_NULL_CHARACTER = 20,
  577. UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME = 21,
  578. UNEXPECTED_SOLIDUS_IN_TAG = 22,
  579. X_INVALID_END_TAG = 23,
  580. X_MISSING_END_TAG = 24,
  581. X_MISSING_INTERPOLATION_END = 25,
  582. X_MISSING_DIRECTIVE_NAME = 26,
  583. X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END = 27,
  584. X_V_IF_NO_EXPRESSION = 28,
  585. X_V_IF_SAME_KEY = 29,
  586. X_V_ELSE_NO_ADJACENT_IF = 30,
  587. X_V_FOR_NO_EXPRESSION = 31,
  588. X_V_FOR_MALFORMED_EXPRESSION = 32,
  589. X_V_FOR_TEMPLATE_KEY_PLACEMENT = 33,
  590. X_V_BIND_NO_EXPRESSION = 34,
  591. X_V_ON_NO_EXPRESSION = 35,
  592. X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET = 36,
  593. X_V_SLOT_MIXED_SLOT_USAGE = 37,
  594. X_V_SLOT_DUPLICATE_SLOT_NAMES = 38,
  595. X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN = 39,
  596. X_V_SLOT_MISPLACED = 40,
  597. X_V_MODEL_NO_EXPRESSION = 41,
  598. X_V_MODEL_MALFORMED_EXPRESSION = 42,
  599. X_V_MODEL_ON_SCOPE_VARIABLE = 43,
  600. X_V_MODEL_ON_PROPS = 44,
  601. X_INVALID_EXPRESSION = 45,
  602. X_KEEP_ALIVE_INVALID_CHILDREN = 46,
  603. X_PREFIX_ID_NOT_SUPPORTED = 47,
  604. X_MODULE_MODE_NOT_SUPPORTED = 48,
  605. X_CACHE_HANDLER_NOT_SUPPORTED = 49,
  606. X_SCOPE_ID_NOT_SUPPORTED = 50,
  607. X_VNODE_HOOKS = 51,
  608. X_V_BIND_INVALID_SAME_NAME_ARGUMENT = 52,
  609. __EXTEND_POINT__ = 53
  610. }
  611. export declare const errorMessages: Record<ErrorCodes, string>;
  612. interface ErrorHandlingOptions {
  613. onWarn?: (warning: CompilerError) => void;
  614. onError?: (error: CompilerError) => void;
  615. }
  616. export interface ParserOptions extends ErrorHandlingOptions, CompilerCompatOptions {
  617. /**
  618. * Base mode is platform agnostic and only parses HTML-like template syntax,
  619. * treating all tags the same way. Specific tag parsing behavior can be
  620. * configured by higher-level compilers.
  621. *
  622. * HTML mode adds additional logic for handling special parsing behavior in
  623. * `<script>`, `<style>`,`<title>` and `<textarea>`.
  624. * The logic is handled inside compiler-core for efficiency.
  625. *
  626. * SFC mode treats content of all root-level tags except `<template>` as plain
  627. * text.
  628. */
  629. parseMode?: 'base' | 'html' | 'sfc';
  630. /**
  631. * Specify the root namespace to use when parsing a template.
  632. * Defaults to `Namespaces.HTML` (0).
  633. */
  634. ns?: Namespaces;
  635. /**
  636. * e.g. platform native elements, e.g. `<div>` for browsers
  637. */
  638. isNativeTag?: (tag: string) => boolean;
  639. /**
  640. * e.g. native elements that can self-close, e.g. `<img>`, `<br>`, `<hr>`
  641. */
  642. isVoidTag?: (tag: string) => boolean;
  643. /**
  644. * e.g. elements that should preserve whitespace inside, e.g. `<pre>`
  645. */
  646. isPreTag?: (tag: string) => boolean;
  647. /**
  648. * Platform-specific built-in components e.g. `<Transition>`
  649. */
  650. isBuiltInComponent?: (tag: string) => symbol | void;
  651. /**
  652. * Separate option for end users to extend the native elements list
  653. */
  654. isCustomElement?: (tag: string) => boolean | void;
  655. /**
  656. * Get tag namespace
  657. */
  658. getNamespace?: (tag: string, parent: ElementNode | undefined, rootNamespace: Namespace) => Namespace;
  659. /**
  660. * @default ['{{', '}}']
  661. */
  662. delimiters?: [string, string];
  663. /**
  664. * Whitespace handling strategy
  665. * @default 'condense'
  666. */
  667. whitespace?: 'preserve' | 'condense';
  668. /**
  669. * Only used for DOM compilers that runs in the browser.
  670. * In non-browser builds, this option is ignored.
  671. */
  672. decodeEntities?: (rawText: string, asAttr: boolean) => string;
  673. /**
  674. * Whether to keep comments in the templates AST.
  675. * This defaults to `true` in development and `false` in production builds.
  676. */
  677. comments?: boolean;
  678. /**
  679. * Parse JavaScript expressions with Babel.
  680. * @default false
  681. */
  682. prefixIdentifiers?: boolean;
  683. /**
  684. * A list of parser plugins to enable for `@babel/parser`, which is used to
  685. * parse expressions in bindings and interpolations.
  686. * https://babeljs.io/docs/en/next/babel-parser#plugins
  687. */
  688. expressionPlugins?: ParserPlugin[];
  689. }
  690. export type HoistTransform = (children: TemplateChildNode[], context: TransformContext, parent: ParentNode) => void;
  691. export declare enum BindingTypes {
  692. /**
  693. * returned from data()
  694. */
  695. DATA = "data",
  696. /**
  697. * declared as a prop
  698. */
  699. PROPS = "props",
  700. /**
  701. * a local alias of a `<script setup>` destructured prop.
  702. * the original is stored in __propsAliases of the bindingMetadata object.
  703. */
  704. PROPS_ALIASED = "props-aliased",
  705. /**
  706. * a let binding (may or may not be a ref)
  707. */
  708. SETUP_LET = "setup-let",
  709. /**
  710. * a const binding that can never be a ref.
  711. * these bindings don't need `unref()` calls when processed in inlined
  712. * template expressions.
  713. */
  714. SETUP_CONST = "setup-const",
  715. /**
  716. * a const binding that does not need `unref()`, but may be mutated.
  717. */
  718. SETUP_REACTIVE_CONST = "setup-reactive-const",
  719. /**
  720. * a const binding that may be a ref.
  721. */
  722. SETUP_MAYBE_REF = "setup-maybe-ref",
  723. /**
  724. * bindings that are guaranteed to be refs
  725. */
  726. SETUP_REF = "setup-ref",
  727. /**
  728. * declared by other options, e.g. computed, inject
  729. */
  730. OPTIONS = "options",
  731. /**
  732. * a literal constant, e.g. 'foo', 1, true
  733. */
  734. LITERAL_CONST = "literal-const"
  735. }
  736. export type BindingMetadata = {
  737. [key: string]: BindingTypes | undefined;
  738. } & {
  739. __isScriptSetup?: boolean;
  740. __propsAliases?: Record<string, string>;
  741. };
  742. interface SharedTransformCodegenOptions {
  743. /**
  744. * Transform expressions like {{ foo }} to `_ctx.foo`.
  745. * If this option is false, the generated code will be wrapped in a
  746. * `with (this) { ... }` block.
  747. * - This is force-enabled in module mode, since modules are by default strict
  748. * and cannot use `with`
  749. * @default mode === 'module'
  750. */
  751. prefixIdentifiers?: boolean;
  752. /**
  753. * Control whether generate SSR-optimized render functions instead.
  754. * The resulting function must be attached to the component via the
  755. * `ssrRender` option instead of `render`.
  756. *
  757. * When compiler generates code for SSR's fallback branch, we need to set it to false:
  758. * - context.ssr = false
  759. *
  760. * see `subTransform` in `ssrTransformComponent.ts`
  761. */
  762. ssr?: boolean;
  763. /**
  764. * Indicates whether the compiler generates code for SSR,
  765. * it is always true when generating code for SSR,
  766. * regardless of whether we are generating code for SSR's fallback branch,
  767. * this means that when the compiler generates code for SSR's fallback branch:
  768. * - context.ssr = false
  769. * - context.inSSR = true
  770. */
  771. inSSR?: boolean;
  772. /**
  773. * Optional binding metadata analyzed from script - used to optimize
  774. * binding access when `prefixIdentifiers` is enabled.
  775. */
  776. bindingMetadata?: BindingMetadata;
  777. /**
  778. * Compile the function for inlining inside setup().
  779. * This allows the function to directly access setup() local bindings.
  780. */
  781. inline?: boolean;
  782. /**
  783. * Indicates that transforms and codegen should try to output valid TS code
  784. */
  785. isTS?: boolean;
  786. /**
  787. * Filename for source map generation.
  788. * Also used for self-recursive reference in templates
  789. * @default 'template.vue.html'
  790. */
  791. filename?: string;
  792. }
  793. export interface TransformOptions extends SharedTransformCodegenOptions, ErrorHandlingOptions, CompilerCompatOptions {
  794. /**
  795. * An array of node transforms to be applied to every AST node.
  796. */
  797. nodeTransforms?: NodeTransform[];
  798. /**
  799. * An object of { name: transform } to be applied to every directive attribute
  800. * node found on element nodes.
  801. */
  802. directiveTransforms?: Record<string, DirectiveTransform | undefined>;
  803. /**
  804. * An optional hook to transform a node being hoisted.
  805. * used by compiler-dom to turn hoisted nodes into stringified HTML vnodes.
  806. * @default null
  807. */
  808. transformHoist?: HoistTransform | null;
  809. /**
  810. * If the pairing runtime provides additional built-in elements, use this to
  811. * mark them as built-in so the compiler will generate component vnodes
  812. * for them.
  813. */
  814. isBuiltInComponent?: (tag: string) => symbol | void;
  815. /**
  816. * Used by some transforms that expects only native elements
  817. */
  818. isCustomElement?: (tag: string) => boolean | void;
  819. /**
  820. * Transform expressions like {{ foo }} to `_ctx.foo`.
  821. * If this option is false, the generated code will be wrapped in a
  822. * `with (this) { ... }` block.
  823. * - This is force-enabled in module mode, since modules are by default strict
  824. * and cannot use `with`
  825. * @default mode === 'module'
  826. */
  827. prefixIdentifiers?: boolean;
  828. /**
  829. * Hoist static VNodes and props objects to `_hoisted_x` constants
  830. * @default false
  831. */
  832. hoistStatic?: boolean;
  833. /**
  834. * Cache v-on handlers to avoid creating new inline functions on each render,
  835. * also avoids the need for dynamically patching the handlers by wrapping it.
  836. * e.g `@click="foo"` by default is compiled to `{ onClick: foo }`. With this
  837. * option it's compiled to:
  838. * ```js
  839. * { onClick: _cache[0] || (_cache[0] = e => _ctx.foo(e)) }
  840. * ```
  841. * - Requires "prefixIdentifiers" to be enabled because it relies on scope
  842. * analysis to determine if a handler is safe to cache.
  843. * @default false
  844. */
  845. cacheHandlers?: boolean;
  846. /**
  847. * A list of parser plugins to enable for `@babel/parser`, which is used to
  848. * parse expressions in bindings and interpolations.
  849. * https://babeljs.io/docs/en/next/babel-parser#plugins
  850. */
  851. expressionPlugins?: ParserPlugin[];
  852. /**
  853. * SFC scoped styles ID
  854. */
  855. scopeId?: string | null;
  856. /**
  857. * Indicates this SFC template has used :slotted in its styles
  858. * Defaults to `true` for backwards compatibility - SFC tooling should set it
  859. * to `false` if no `:slotted` usage is detected in `<style>`
  860. */
  861. slotted?: boolean;
  862. /**
  863. * SFC `<style vars>` injection string
  864. * Should already be an object expression, e.g. `{ 'xxxx-color': color }`
  865. * needed to render inline CSS variables on component root
  866. */
  867. ssrCssVars?: string;
  868. /**
  869. * Whether to compile the template assuming it needs to handle HMR.
  870. * Some edge cases may need to generate different code for HMR to work
  871. * correctly, e.g. #6938, #7138
  872. */
  873. hmr?: boolean;
  874. }
  875. export interface CodegenOptions extends SharedTransformCodegenOptions {
  876. /**
  877. * - `module` mode will generate ES module import statements for helpers
  878. * and export the render function as the default export.
  879. * - `function` mode will generate a single `const { helpers... } = Vue`
  880. * statement and return the render function. It expects `Vue` to be globally
  881. * available (or passed by wrapping the code with an IIFE). It is meant to be
  882. * used with `new Function(code)()` to generate a render function at runtime.
  883. * @default 'function'
  884. */
  885. mode?: 'module' | 'function';
  886. /**
  887. * Generate source map?
  888. * @default false
  889. */
  890. sourceMap?: boolean;
  891. /**
  892. * SFC scoped styles ID
  893. */
  894. scopeId?: string | null;
  895. /**
  896. * Option to optimize helper import bindings via variable assignment
  897. * (only used for webpack code-split)
  898. * @default false
  899. */
  900. optimizeImports?: boolean;
  901. /**
  902. * Customize where to import runtime helpers from.
  903. * @default 'vue'
  904. */
  905. runtimeModuleName?: string;
  906. /**
  907. * Customize where to import ssr runtime helpers from/**
  908. * @default 'vue/server-renderer'
  909. */
  910. ssrRuntimeModuleName?: string;
  911. /**
  912. * Customize the global variable name of `Vue` to get helpers from
  913. * in function mode
  914. * @default 'Vue'
  915. */
  916. runtimeGlobalName?: string;
  917. }
  918. export type CompilerOptions = ParserOptions & TransformOptions & CodegenOptions;
  919. /**
  920. * The `SourceMapGenerator` type from `source-map-js` is a bit incomplete as it
  921. * misses `toJSON()`. We also need to add types for internal properties which we
  922. * need to access for better performance.
  923. *
  924. * Since TS 5.3, dts generation starts to strangely include broken triple slash
  925. * references for source-map-js, so we are inlining all source map related types
  926. * here to to workaround that.
  927. */
  928. export interface CodegenSourceMapGenerator {
  929. setSourceContent(sourceFile: string, sourceContent: string): void;
  930. toJSON(): RawSourceMap;
  931. _sources: Set<string>;
  932. _names: Set<string>;
  933. _mappings: {
  934. add(mapping: MappingItem): void;
  935. };
  936. }
  937. export interface RawSourceMap {
  938. file?: string;
  939. sourceRoot?: string;
  940. version: string;
  941. sources: string[];
  942. names: string[];
  943. sourcesContent?: string[];
  944. mappings: string;
  945. }
  946. interface MappingItem {
  947. source: string;
  948. generatedLine: number;
  949. generatedColumn: number;
  950. originalLine: number;
  951. originalColumn: number;
  952. name: string | null;
  953. }
  954. type CodegenNode = TemplateChildNode | JSChildNode | SSRCodegenNode;
  955. export interface CodegenResult {
  956. code: string;
  957. preamble: string;
  958. ast: RootNode;
  959. map?: RawSourceMap;
  960. }
  961. export interface CodegenContext extends Omit<Required<CodegenOptions>, 'bindingMetadata' | 'inline'> {
  962. source: string;
  963. code: string;
  964. line: number;
  965. column: number;
  966. offset: number;
  967. indentLevel: number;
  968. pure: boolean;
  969. map?: CodegenSourceMapGenerator;
  970. helper(key: symbol): string;
  971. push(code: string, newlineIndex?: number, node?: CodegenNode): void;
  972. indent(): void;
  973. deindent(withoutNewLine?: boolean): void;
  974. newline(): void;
  975. }
  976. export declare function generate(ast: RootNode, options?: CodegenOptions & {
  977. onContextCreated?: (context: CodegenContext) => void;
  978. }): CodegenResult;
  979. export type TransformPreset = [
  980. NodeTransform[],
  981. Record<string, DirectiveTransform>
  982. ];
  983. export declare function getBaseTransformPreset(prefixIdentifiers?: boolean): TransformPreset;
  984. export declare function baseCompile(source: string | RootNode, options?: CompilerOptions): CodegenResult;
  985. export declare const isStaticExp: (p: JSChildNode) => p is SimpleExpressionNode;
  986. export declare function isCoreComponent(tag: string): symbol | void;
  987. export declare const isSimpleIdentifier: (name: string) => boolean;
  988. /**
  989. * Simple lexer to check if an expression is a member expression. This is
  990. * lax and only checks validity at the root level (i.e. does not validate exps
  991. * inside square brackets), but it's ok since these are only used on template
  992. * expressions and false positives are invalid expressions in the first place.
  993. */
  994. export declare const isMemberExpressionBrowser: (path: string) => boolean;
  995. export declare const isMemberExpressionNode: (path: string, context: TransformContext) => boolean;
  996. export declare const isMemberExpression: (path: string, context: TransformContext) => boolean;
  997. export declare function advancePositionWithClone(pos: Position, source: string, numberOfCharacters?: number): Position;
  998. export declare function advancePositionWithMutation(pos: Position, source: string, numberOfCharacters?: number): Position;
  999. export declare function assert(condition: boolean, msg?: string): void;
  1000. export declare function findDir(node: ElementNode, name: string | RegExp, allowEmpty?: boolean): DirectiveNode | undefined;
  1001. export declare function findProp(node: ElementNode, name: string, dynamicOnly?: boolean, allowEmpty?: boolean): ElementNode['props'][0] | undefined;
  1002. export declare function isStaticArgOf(arg: DirectiveNode['arg'], name: string): boolean;
  1003. export declare function hasDynamicKeyVBind(node: ElementNode): boolean;
  1004. export declare function isText(node: TemplateChildNode): node is TextNode | InterpolationNode;
  1005. export declare function isVSlot(p: ElementNode['props'][0]): p is DirectiveNode;
  1006. export declare function isTemplateNode(node: RootNode | TemplateChildNode): node is TemplateNode;
  1007. export declare function isSlotOutlet(node: RootNode | TemplateChildNode): node is SlotOutletNode;
  1008. export declare function injectProp(node: VNodeCall | RenderSlotCall, prop: Property, context: TransformContext): void;
  1009. export declare function toValidAssetId(name: string, type: 'component' | 'directive' | 'filter'): string;
  1010. export declare function hasScopeRef(node: TemplateChildNode | IfBranchNode | ExpressionNode | undefined, ids: TransformContext['identifiers']): boolean;
  1011. export declare function getMemoedVNodeCall(node: BlockCodegenNode | MemoExpression): VNodeCall | RenderSlotCall;
  1012. export declare const forAliasRE: RegExp;
  1013. /**
  1014. * Return value indicates whether the AST walked can be a constant
  1015. */
  1016. export declare function walkIdentifiers(root: Node$1, onIdentifier: (node: Identifier, parent: Node$1, parentStack: Node$1[], isReference: boolean, isLocal: boolean) => void, includeAll?: boolean, parentStack?: Node$1[], knownIds?: Record<string, number>): void;
  1017. export declare function isReferencedIdentifier(id: Identifier, parent: Node$1 | null, parentStack: Node$1[]): boolean;
  1018. export declare function isInDestructureAssignment(parent: Node$1, parentStack: Node$1[]): boolean;
  1019. export declare function isInNewExpression(parentStack: Node$1[]): boolean;
  1020. export declare function walkFunctionParams(node: Function, onIdent: (id: Identifier) => void): void;
  1021. export declare function walkBlockDeclarations(block: BlockStatement$1 | Program, onIdent: (node: Identifier) => void): void;
  1022. export declare function extractIdentifiers(param: Node$1, nodes?: Identifier[]): Identifier[];
  1023. export declare const isFunctionType: (node: Node$1) => node is Function;
  1024. export declare const isStaticProperty: (node: Node$1) => node is ObjectProperty;
  1025. export declare const isStaticPropertyKey: (node: Node$1, parent: Node$1) => boolean;
  1026. export declare const TS_NODE_TYPES: string[];
  1027. export declare function unwrapTSNode(node: Node$1): Node$1;
  1028. export declare const transformModel: DirectiveTransform;
  1029. export declare const transformOn: DirectiveTransform;
  1030. export declare const transformBind: DirectiveTransform;
  1031. export declare const noopDirectiveTransform: DirectiveTransform;
  1032. export declare function processIf(node: ElementNode, dir: DirectiveNode, context: TransformContext, processCodegen?: (node: IfNode, branch: IfBranchNode, isRoot: boolean) => (() => void) | undefined): (() => void) | undefined;
  1033. export declare function processFor(node: ElementNode, dir: DirectiveNode, context: TransformContext, processCodegen?: (forNode: ForNode) => (() => void) | undefined): (() => void) | undefined;
  1034. export declare function createForLoopParams({ value, key, index }: ForParseResult, memoArgs?: ExpressionNode[]): ExpressionNode[];
  1035. export declare const transformExpression: NodeTransform;
  1036. export declare function processExpression(node: SimpleExpressionNode, context: TransformContext, asParams?: boolean, asRawStatements?: boolean, localVars?: Record<string, number>): ExpressionNode;
  1037. export declare function stringifyExpression(exp: ExpressionNode | string): string;
  1038. export declare const trackSlotScopes: NodeTransform;
  1039. export declare const trackVForSlotScopes: NodeTransform;
  1040. export type SlotFnBuilder = (slotProps: ExpressionNode | undefined, vFor: DirectiveNode | undefined, slotChildren: TemplateChildNode[], loc: SourceLocation) => FunctionExpression;
  1041. export declare function buildSlots(node: ElementNode, context: TransformContext, buildSlotFn?: SlotFnBuilder): {
  1042. slots: SlotsExpression;
  1043. hasDynamicSlots: boolean;
  1044. };
  1045. interface SlotOutletProcessResult {
  1046. slotName: string | ExpressionNode;
  1047. slotProps: PropsExpression | undefined;
  1048. }
  1049. export declare function processSlotOutlet(node: SlotOutletNode, context: TransformContext): SlotOutletProcessResult;
  1050. export declare function getConstantType(node: TemplateChildNode | SimpleExpressionNode, context: TransformContext): ConstantTypes;