SimpleExpressionNode
interface SimpleExpressionNode extends Node_2 {
constType: ConstantTypes;
content: string;
hoisted?: JSChildNode;
identifiers?: string[];
isHandlerKey?: boolean;
isStatic: boolean;
type: NodeTypes.SIMPLE_EXPRESSION;
}§Properties
§
constType: ConstantTypes
[src]§
hoisted?: JSChildNode
[src]Indicates this is an identifier for a hoist vnode call and points to the hoisted node.