Search


Search something to see results

FunctionDefToken

Function definition token

interface FunctionDefToken {
    loc?: Location;
    nam: string;
    parent?: any;
    tokens?: Token[] | null;
    typ: any;
    val: string;
}

Hierarchy (View Summary)

Index

Properties

loc?: Location

location info

nam: string
parent?: any

parent node

tokens?: Token[] | null

prelude or selector tokens

typ: any

token type

val: string