Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SimpleExpressionNode

interface SimpleExpressionNode extends Node_2 {
constType: ConstantTypes;
content: string;
hoisted?: JSChildNode;
identifiers?: string[];
isHandlerKey?: boolean;
isStatic: boolean;
}

§Extends

§
Node_2
[src]

§Properties

§
content: string
[src]
§

Indicates this is an identifier for a hoist vnode call and points to the hoisted node.

§
identifiers?: string[]
[src]

an expression parsed as the params of a function will track the identifiers declared inside the function body.

§
isHandlerKey?: boolean
[src]
§
isStatic: boolean
[src]