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

CompoundExpressionNode

interface CompoundExpressionNode extends Node_2 {
children: ()[];
identifiers?: string[];
isHandlerKey?: boolean;
}

§Extends

§
Node_2
[src]

§Properties

§
identifiers?: string[]
[src]

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

§
isHandlerKey?: boolean
[src]