Search


Search something to see results

AstDeclaration

declaration node

interface AstDeclaration {
    errors?: ErrorDescription[];
    loc?: Location;
    nam: string;
    parent?: any;
    state?: any;
    tokens?: null;
    typ: DeclarationNodeType;
    val: Token[];
}

Hierarchy (View Summary)

Index

Properties

errors?: ErrorDescription[]
loc?: Location

location info

nam: string
parent?: any

parent node

state?: any
tokens?: null

prelude or selector tokens

token type

val: Token[]