@vue-jsx-vapor/compiler 0.1.6 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +112 -305
- package/dist/index.d.cts +33 -41
- package/dist/index.d.ts +33 -41
- package/dist/index.js +119 -312
- package/package.json +7 -8
package/dist/index.d.cts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
import { IRFor as IRFor$1, VaporCodegenResult as VaporCodegenResult$1 } from '@vue/compiler-vapor';
|
2
2
|
export { generate } from '@vue/compiler-vapor';
|
3
|
-
import { SimpleExpressionNode,
|
4
|
-
import * as _vue_runtime_vapor from '@vue/runtime-vapor';
|
3
|
+
import { SimpleExpressionNode, DirectiveNode, CompoundExpressionNode, TransformOptions as TransformOptions$1, CompilerCompatOptions, CommentNode, CompilerOptions as CompilerOptions$1, ElementNode } from '@vue/compiler-dom';
|
5
4
|
import { JSXFragment, Node, JSXAttribute, JSXElement } from '@babel/types';
|
6
5
|
import { Prettify } from '@vue/shared';
|
7
6
|
|
@@ -70,39 +69,33 @@ declare enum IRNodeTypes {
|
|
70
69
|
SET_DYNAMIC_EVENTS = 6,
|
71
70
|
SET_HTML = 7,
|
72
71
|
SET_TEMPLATE_REF = 8,
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
FOR = 19
|
72
|
+
INSERT_NODE = 9,
|
73
|
+
PREPEND_NODE = 10,
|
74
|
+
CREATE_TEXT_NODE = 11,
|
75
|
+
CREATE_COMPONENT_NODE = 12,
|
76
|
+
SLOT_OUTLET_NODE = 13,
|
77
|
+
DIRECTIVE = 14,
|
78
|
+
DECLARE_OLD_REF = 15,// consider make it more general
|
79
|
+
IF = 16,
|
80
|
+
FOR = 17,
|
81
|
+
GET_TEXT_CHILD = 18
|
84
82
|
}
|
85
83
|
interface BaseIRNode {
|
86
84
|
type: IRNodeTypes;
|
87
85
|
}
|
88
|
-
type VaporHelper = keyof typeof _vue_runtime_vapor;
|
89
86
|
interface RootNode {
|
90
87
|
type: IRNodeTypes.ROOT;
|
91
88
|
source: string;
|
92
89
|
children: JSXFragment['children'];
|
93
|
-
helpers: Set<symbol>;
|
94
|
-
components: string[];
|
95
|
-
directives: string[];
|
96
|
-
temps: number;
|
97
|
-
ssrHelpers?: symbol[];
|
98
|
-
transformed?: boolean;
|
99
90
|
}
|
100
91
|
interface BlockIRNode extends BaseIRNode {
|
101
92
|
type: IRNodeTypes.BLOCK;
|
102
93
|
node: RootNode | Node;
|
103
94
|
dynamic: IRDynamicInfo;
|
95
|
+
tempId: number;
|
104
96
|
effect: IREffect[];
|
105
97
|
operation: OperationNode[];
|
98
|
+
expressions: SimpleExpressionNode[];
|
106
99
|
returns: number[];
|
107
100
|
}
|
108
101
|
interface RootIRNode {
|
@@ -110,9 +103,11 @@ interface RootIRNode {
|
|
110
103
|
node: RootNode;
|
111
104
|
source: string;
|
112
105
|
template: string[];
|
106
|
+
rootTemplateIndex?: number;
|
113
107
|
component: Set<string>;
|
114
108
|
directive: Set<string>;
|
115
109
|
block: BlockIRNode;
|
110
|
+
hasTemplateRef: boolean;
|
116
111
|
}
|
117
112
|
interface IfIRNode extends BaseIRNode {
|
118
113
|
type: IRNodeTypes.IF;
|
@@ -134,7 +129,8 @@ interface ForIRNode extends BaseIRNode, IRFor {
|
|
134
129
|
keyProp?: SimpleExpressionNode;
|
135
130
|
render: BlockIRNode;
|
136
131
|
once: boolean;
|
137
|
-
|
132
|
+
component: boolean;
|
133
|
+
onlyChild: boolean;
|
138
134
|
}
|
139
135
|
interface SetPropIRNode extends BaseIRNode {
|
140
136
|
type: IRNodeTypes.SET_PROP;
|
@@ -158,6 +154,8 @@ interface SetTextIRNode extends BaseIRNode {
|
|
158
154
|
type: IRNodeTypes.SET_TEXT;
|
159
155
|
element: number;
|
160
156
|
values: SimpleExpressionNode[];
|
157
|
+
generated?: boolean;
|
158
|
+
jsx?: boolean;
|
161
159
|
}
|
162
160
|
type KeyOverride = [find: string, replacement: string];
|
163
161
|
interface SetEventIRNode extends BaseIRNode {
|
@@ -187,24 +185,11 @@ interface SetTemplateRefIRNode extends BaseIRNode {
|
|
187
185
|
refFor: boolean;
|
188
186
|
effect: boolean;
|
189
187
|
}
|
190
|
-
interface SetModelValueIRNode extends BaseIRNode {
|
191
|
-
type: IRNodeTypes.SET_MODEL_VALUE;
|
192
|
-
element: number;
|
193
|
-
key: SimpleExpressionNode;
|
194
|
-
value: SimpleExpressionNode;
|
195
|
-
bindingType?: BindingTypes;
|
196
|
-
isComponent: boolean;
|
197
|
-
}
|
198
|
-
interface SetInheritAttrsIRNode extends BaseIRNode {
|
199
|
-
type: IRNodeTypes.SET_INHERIT_ATTRS;
|
200
|
-
staticProps: boolean;
|
201
|
-
dynamicProps: true | string[];
|
202
|
-
}
|
203
188
|
interface CreateTextNodeIRNode extends BaseIRNode {
|
204
189
|
type: IRNodeTypes.CREATE_TEXT_NODE;
|
205
190
|
id: number;
|
206
|
-
values
|
207
|
-
|
191
|
+
values?: SimpleExpressionNode[];
|
192
|
+
jsx?: boolean;
|
208
193
|
}
|
209
194
|
interface InsertNodeIRNode extends BaseIRNode {
|
210
195
|
type: IRNodeTypes.INSERT_NODE;
|
@@ -217,13 +202,14 @@ interface PrependNodeIRNode extends BaseIRNode {
|
|
217
202
|
elements: number[];
|
218
203
|
parent: number;
|
219
204
|
}
|
220
|
-
interface
|
221
|
-
type: IRNodeTypes.
|
205
|
+
interface DirectiveIRNode extends BaseIRNode {
|
206
|
+
type: IRNodeTypes.DIRECTIVE;
|
222
207
|
element: number;
|
223
208
|
dir: VaporDirectiveNode;
|
224
209
|
name: string;
|
225
210
|
builtin?: boolean;
|
226
211
|
asset?: boolean;
|
212
|
+
modelType?: 'text' | 'dynamic' | 'radio' | 'checkbox' | 'select';
|
227
213
|
}
|
228
214
|
interface CreateComponentIRNode extends BaseIRNode {
|
229
215
|
type: IRNodeTypes.CREATE_COMPONENT_NODE;
|
@@ -234,6 +220,7 @@ interface CreateComponentIRNode extends BaseIRNode {
|
|
234
220
|
asset: boolean;
|
235
221
|
root: boolean;
|
236
222
|
once: boolean;
|
223
|
+
dynamic?: SimpleExpressionNode;
|
237
224
|
}
|
238
225
|
interface DeclareOldRefIRNode extends BaseIRNode {
|
239
226
|
type: IRNodeTypes.DECLARE_OLD_REF;
|
@@ -246,8 +233,12 @@ interface SlotOutletIRNode extends BaseIRNode {
|
|
246
233
|
props: IRProps[];
|
247
234
|
fallback?: BlockIRNode;
|
248
235
|
}
|
236
|
+
interface GetTextChildIRNode extends BaseIRNode {
|
237
|
+
type: IRNodeTypes.GET_TEXT_CHILD;
|
238
|
+
parent: number;
|
239
|
+
}
|
249
240
|
type IRNode = OperationNode | RootIRNode;
|
250
|
-
type OperationNode = SetPropIRNode | SetDynamicPropsIRNode | SetTextIRNode | SetEventIRNode | SetDynamicEventsIRNode | SetHtmlIRNode | SetTemplateRefIRNode |
|
241
|
+
type OperationNode = SetPropIRNode | SetDynamicPropsIRNode | SetTextIRNode | SetEventIRNode | SetDynamicEventsIRNode | SetHtmlIRNode | SetTemplateRefIRNode | CreateTextNodeIRNode | InsertNodeIRNode | PrependNodeIRNode | DirectiveIRNode | IfIRNode | ForIRNode | CreateComponentIRNode | DeclareOldRefIRNode | SlotOutletIRNode | GetTextChildIRNode;
|
251
242
|
declare enum DynamicFlag {
|
252
243
|
NONE = 0,
|
253
244
|
/**
|
@@ -269,6 +260,7 @@ interface IRDynamicInfo {
|
|
269
260
|
anchor?: number;
|
270
261
|
children: IRDynamicInfo[];
|
271
262
|
template?: number;
|
263
|
+
hasDynamicChild?: boolean;
|
272
264
|
}
|
273
265
|
interface IREffect {
|
274
266
|
expressions: SimpleExpressionNode[];
|
@@ -330,7 +322,7 @@ declare function transformNode(context: TransformContext<BlockIRNode['node']>):
|
|
330
322
|
interface VaporCodegenResult extends Omit<VaporCodegenResult$1, 'ast'> {
|
331
323
|
ast: RootIRNode;
|
332
324
|
}
|
333
|
-
declare function compile(
|
325
|
+
declare function compile(root: JSXElement | JSXFragment, options?: CompilerOptions): VaporCodegenResult;
|
334
326
|
type CompilerOptions = HackOptions<CompilerOptions$1> & {
|
335
327
|
source?: string;
|
336
328
|
};
|
@@ -362,4 +354,4 @@ declare const transformVShow: DirectiveTransform;
|
|
362
354
|
|
363
355
|
declare const transformVHtml: DirectiveTransform;
|
364
356
|
|
365
|
-
export { type BaseIRNode, type BlockIRNode, type CompilerOptions, type CreateComponentIRNode, type CreateTextNodeIRNode, type DeclareOldRefIRNode, type DirectiveTransform, type DirectiveTransformResult, DynamicFlag, type ForIRNode, type HackOptions, type IRDynamicInfo, IRDynamicPropsKind, type IREffect, type IRFor, type IRNode, IRNodeTypes, type IRProp, type IRProps, type IRPropsDynamicAttribute, type IRPropsDynamicExpression, type IRPropsStatic, type IRSlotDynamic, type IRSlotDynamicBasic, type IRSlotDynamicConditional, type IRSlotDynamicLoop, IRSlotType, type IRSlots, type IRSlotsExpression, type IRSlotsStatic, type IfIRNode, type InsertNodeIRNode, type KeyOverride, type NodeTransform, type OperationNode, type PrependNodeIRNode, type RootIRNode, type RootNode, type SetDynamicEventsIRNode, type SetDynamicPropsIRNode, type SetEventIRNode, type SetHtmlIRNode, type
|
357
|
+
export { type BaseIRNode, type BlockIRNode, type CompilerOptions, type CreateComponentIRNode, type CreateTextNodeIRNode, type DeclareOldRefIRNode, type DirectiveIRNode, type DirectiveTransform, type DirectiveTransformResult, DynamicFlag, type ForIRNode, type GetTextChildIRNode, type HackOptions, type IRDynamicInfo, IRDynamicPropsKind, type IREffect, type IRFor, type IRNode, IRNodeTypes, type IRProp, type IRProps, type IRPropsDynamicAttribute, type IRPropsDynamicExpression, type IRPropsStatic, type IRSlotDynamic, type IRSlotDynamicBasic, type IRSlotDynamicConditional, type IRSlotDynamicLoop, IRSlotType, type IRSlots, type IRSlotsExpression, type IRSlotsStatic, type IfIRNode, type InsertNodeIRNode, type KeyOverride, type NodeTransform, type OperationNode, type PrependNodeIRNode, type RootIRNode, type RootNode, type SetDynamicEventsIRNode, type SetDynamicPropsIRNode, type SetEventIRNode, type SetHtmlIRNode, type SetPropIRNode, type SetTemplateRefIRNode, type SetTextIRNode, type SlotBlockIRNode, type SlotOutletIRNode, TransformContext, type TransformOptions, type TransformPreset, type VaporDirectiveNode, compile, resolveDirectiveNode, resolveNode, transform, transformChildren, transformElement, transformNode, transformTemplateRef, transformText, transformVBind, transformVHtml, transformVModel, transformVOn, transformVShow, transformVSlot };
|
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
import { IRFor as IRFor$1, VaporCodegenResult as VaporCodegenResult$1 } from '@vue/compiler-vapor';
|
2
2
|
export { generate } from '@vue/compiler-vapor';
|
3
|
-
import { SimpleExpressionNode,
|
4
|
-
import * as _vue_runtime_vapor from '@vue/runtime-vapor';
|
3
|
+
import { SimpleExpressionNode, DirectiveNode, CompoundExpressionNode, TransformOptions as TransformOptions$1, CompilerCompatOptions, CommentNode, CompilerOptions as CompilerOptions$1, ElementNode } from '@vue/compiler-dom';
|
5
4
|
import { JSXFragment, Node, JSXAttribute, JSXElement } from '@babel/types';
|
6
5
|
import { Prettify } from '@vue/shared';
|
7
6
|
|
@@ -70,39 +69,33 @@ declare enum IRNodeTypes {
|
|
70
69
|
SET_DYNAMIC_EVENTS = 6,
|
71
70
|
SET_HTML = 7,
|
72
71
|
SET_TEMPLATE_REF = 8,
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
FOR = 19
|
72
|
+
INSERT_NODE = 9,
|
73
|
+
PREPEND_NODE = 10,
|
74
|
+
CREATE_TEXT_NODE = 11,
|
75
|
+
CREATE_COMPONENT_NODE = 12,
|
76
|
+
SLOT_OUTLET_NODE = 13,
|
77
|
+
DIRECTIVE = 14,
|
78
|
+
DECLARE_OLD_REF = 15,// consider make it more general
|
79
|
+
IF = 16,
|
80
|
+
FOR = 17,
|
81
|
+
GET_TEXT_CHILD = 18
|
84
82
|
}
|
85
83
|
interface BaseIRNode {
|
86
84
|
type: IRNodeTypes;
|
87
85
|
}
|
88
|
-
type VaporHelper = keyof typeof _vue_runtime_vapor;
|
89
86
|
interface RootNode {
|
90
87
|
type: IRNodeTypes.ROOT;
|
91
88
|
source: string;
|
92
89
|
children: JSXFragment['children'];
|
93
|
-
helpers: Set<symbol>;
|
94
|
-
components: string[];
|
95
|
-
directives: string[];
|
96
|
-
temps: number;
|
97
|
-
ssrHelpers?: symbol[];
|
98
|
-
transformed?: boolean;
|
99
90
|
}
|
100
91
|
interface BlockIRNode extends BaseIRNode {
|
101
92
|
type: IRNodeTypes.BLOCK;
|
102
93
|
node: RootNode | Node;
|
103
94
|
dynamic: IRDynamicInfo;
|
95
|
+
tempId: number;
|
104
96
|
effect: IREffect[];
|
105
97
|
operation: OperationNode[];
|
98
|
+
expressions: SimpleExpressionNode[];
|
106
99
|
returns: number[];
|
107
100
|
}
|
108
101
|
interface RootIRNode {
|
@@ -110,9 +103,11 @@ interface RootIRNode {
|
|
110
103
|
node: RootNode;
|
111
104
|
source: string;
|
112
105
|
template: string[];
|
106
|
+
rootTemplateIndex?: number;
|
113
107
|
component: Set<string>;
|
114
108
|
directive: Set<string>;
|
115
109
|
block: BlockIRNode;
|
110
|
+
hasTemplateRef: boolean;
|
116
111
|
}
|
117
112
|
interface IfIRNode extends BaseIRNode {
|
118
113
|
type: IRNodeTypes.IF;
|
@@ -134,7 +129,8 @@ interface ForIRNode extends BaseIRNode, IRFor {
|
|
134
129
|
keyProp?: SimpleExpressionNode;
|
135
130
|
render: BlockIRNode;
|
136
131
|
once: boolean;
|
137
|
-
|
132
|
+
component: boolean;
|
133
|
+
onlyChild: boolean;
|
138
134
|
}
|
139
135
|
interface SetPropIRNode extends BaseIRNode {
|
140
136
|
type: IRNodeTypes.SET_PROP;
|
@@ -158,6 +154,8 @@ interface SetTextIRNode extends BaseIRNode {
|
|
158
154
|
type: IRNodeTypes.SET_TEXT;
|
159
155
|
element: number;
|
160
156
|
values: SimpleExpressionNode[];
|
157
|
+
generated?: boolean;
|
158
|
+
jsx?: boolean;
|
161
159
|
}
|
162
160
|
type KeyOverride = [find: string, replacement: string];
|
163
161
|
interface SetEventIRNode extends BaseIRNode {
|
@@ -187,24 +185,11 @@ interface SetTemplateRefIRNode extends BaseIRNode {
|
|
187
185
|
refFor: boolean;
|
188
186
|
effect: boolean;
|
189
187
|
}
|
190
|
-
interface SetModelValueIRNode extends BaseIRNode {
|
191
|
-
type: IRNodeTypes.SET_MODEL_VALUE;
|
192
|
-
element: number;
|
193
|
-
key: SimpleExpressionNode;
|
194
|
-
value: SimpleExpressionNode;
|
195
|
-
bindingType?: BindingTypes;
|
196
|
-
isComponent: boolean;
|
197
|
-
}
|
198
|
-
interface SetInheritAttrsIRNode extends BaseIRNode {
|
199
|
-
type: IRNodeTypes.SET_INHERIT_ATTRS;
|
200
|
-
staticProps: boolean;
|
201
|
-
dynamicProps: true | string[];
|
202
|
-
}
|
203
188
|
interface CreateTextNodeIRNode extends BaseIRNode {
|
204
189
|
type: IRNodeTypes.CREATE_TEXT_NODE;
|
205
190
|
id: number;
|
206
|
-
values
|
207
|
-
|
191
|
+
values?: SimpleExpressionNode[];
|
192
|
+
jsx?: boolean;
|
208
193
|
}
|
209
194
|
interface InsertNodeIRNode extends BaseIRNode {
|
210
195
|
type: IRNodeTypes.INSERT_NODE;
|
@@ -217,13 +202,14 @@ interface PrependNodeIRNode extends BaseIRNode {
|
|
217
202
|
elements: number[];
|
218
203
|
parent: number;
|
219
204
|
}
|
220
|
-
interface
|
221
|
-
type: IRNodeTypes.
|
205
|
+
interface DirectiveIRNode extends BaseIRNode {
|
206
|
+
type: IRNodeTypes.DIRECTIVE;
|
222
207
|
element: number;
|
223
208
|
dir: VaporDirectiveNode;
|
224
209
|
name: string;
|
225
210
|
builtin?: boolean;
|
226
211
|
asset?: boolean;
|
212
|
+
modelType?: 'text' | 'dynamic' | 'radio' | 'checkbox' | 'select';
|
227
213
|
}
|
228
214
|
interface CreateComponentIRNode extends BaseIRNode {
|
229
215
|
type: IRNodeTypes.CREATE_COMPONENT_NODE;
|
@@ -234,6 +220,7 @@ interface CreateComponentIRNode extends BaseIRNode {
|
|
234
220
|
asset: boolean;
|
235
221
|
root: boolean;
|
236
222
|
once: boolean;
|
223
|
+
dynamic?: SimpleExpressionNode;
|
237
224
|
}
|
238
225
|
interface DeclareOldRefIRNode extends BaseIRNode {
|
239
226
|
type: IRNodeTypes.DECLARE_OLD_REF;
|
@@ -246,8 +233,12 @@ interface SlotOutletIRNode extends BaseIRNode {
|
|
246
233
|
props: IRProps[];
|
247
234
|
fallback?: BlockIRNode;
|
248
235
|
}
|
236
|
+
interface GetTextChildIRNode extends BaseIRNode {
|
237
|
+
type: IRNodeTypes.GET_TEXT_CHILD;
|
238
|
+
parent: number;
|
239
|
+
}
|
249
240
|
type IRNode = OperationNode | RootIRNode;
|
250
|
-
type OperationNode = SetPropIRNode | SetDynamicPropsIRNode | SetTextIRNode | SetEventIRNode | SetDynamicEventsIRNode | SetHtmlIRNode | SetTemplateRefIRNode |
|
241
|
+
type OperationNode = SetPropIRNode | SetDynamicPropsIRNode | SetTextIRNode | SetEventIRNode | SetDynamicEventsIRNode | SetHtmlIRNode | SetTemplateRefIRNode | CreateTextNodeIRNode | InsertNodeIRNode | PrependNodeIRNode | DirectiveIRNode | IfIRNode | ForIRNode | CreateComponentIRNode | DeclareOldRefIRNode | SlotOutletIRNode | GetTextChildIRNode;
|
251
242
|
declare enum DynamicFlag {
|
252
243
|
NONE = 0,
|
253
244
|
/**
|
@@ -269,6 +260,7 @@ interface IRDynamicInfo {
|
|
269
260
|
anchor?: number;
|
270
261
|
children: IRDynamicInfo[];
|
271
262
|
template?: number;
|
263
|
+
hasDynamicChild?: boolean;
|
272
264
|
}
|
273
265
|
interface IREffect {
|
274
266
|
expressions: SimpleExpressionNode[];
|
@@ -330,7 +322,7 @@ declare function transformNode(context: TransformContext<BlockIRNode['node']>):
|
|
330
322
|
interface VaporCodegenResult extends Omit<VaporCodegenResult$1, 'ast'> {
|
331
323
|
ast: RootIRNode;
|
332
324
|
}
|
333
|
-
declare function compile(
|
325
|
+
declare function compile(root: JSXElement | JSXFragment, options?: CompilerOptions): VaporCodegenResult;
|
334
326
|
type CompilerOptions = HackOptions<CompilerOptions$1> & {
|
335
327
|
source?: string;
|
336
328
|
};
|
@@ -362,4 +354,4 @@ declare const transformVShow: DirectiveTransform;
|
|
362
354
|
|
363
355
|
declare const transformVHtml: DirectiveTransform;
|
364
356
|
|
365
|
-
export { type BaseIRNode, type BlockIRNode, type CompilerOptions, type CreateComponentIRNode, type CreateTextNodeIRNode, type DeclareOldRefIRNode, type DirectiveTransform, type DirectiveTransformResult, DynamicFlag, type ForIRNode, type HackOptions, type IRDynamicInfo, IRDynamicPropsKind, type IREffect, type IRFor, type IRNode, IRNodeTypes, type IRProp, type IRProps, type IRPropsDynamicAttribute, type IRPropsDynamicExpression, type IRPropsStatic, type IRSlotDynamic, type IRSlotDynamicBasic, type IRSlotDynamicConditional, type IRSlotDynamicLoop, IRSlotType, type IRSlots, type IRSlotsExpression, type IRSlotsStatic, type IfIRNode, type InsertNodeIRNode, type KeyOverride, type NodeTransform, type OperationNode, type PrependNodeIRNode, type RootIRNode, type RootNode, type SetDynamicEventsIRNode, type SetDynamicPropsIRNode, type SetEventIRNode, type SetHtmlIRNode, type
|
357
|
+
export { type BaseIRNode, type BlockIRNode, type CompilerOptions, type CreateComponentIRNode, type CreateTextNodeIRNode, type DeclareOldRefIRNode, type DirectiveIRNode, type DirectiveTransform, type DirectiveTransformResult, DynamicFlag, type ForIRNode, type GetTextChildIRNode, type HackOptions, type IRDynamicInfo, IRDynamicPropsKind, type IREffect, type IRFor, type IRNode, IRNodeTypes, type IRProp, type IRProps, type IRPropsDynamicAttribute, type IRPropsDynamicExpression, type IRPropsStatic, type IRSlotDynamic, type IRSlotDynamicBasic, type IRSlotDynamicConditional, type IRSlotDynamicLoop, IRSlotType, type IRSlots, type IRSlotsExpression, type IRSlotsStatic, type IfIRNode, type InsertNodeIRNode, type KeyOverride, type NodeTransform, type OperationNode, type PrependNodeIRNode, type RootIRNode, type RootNode, type SetDynamicEventsIRNode, type SetDynamicPropsIRNode, type SetEventIRNode, type SetHtmlIRNode, type SetPropIRNode, type SetTemplateRefIRNode, type SetTextIRNode, type SlotBlockIRNode, type SlotOutletIRNode, TransformContext, type TransformOptions, type TransformPreset, type VaporDirectiveNode, compile, resolveDirectiveNode, resolveNode, transform, transformChildren, transformElement, transformNode, transformTemplateRef, transformText, transformVBind, transformVHtml, transformVModel, transformVOn, transformVShow, transformVSlot };
|