Interface NameProvider

Utility service for retrieving the name of an AstNode or the CstNode containing a name.

interface NameProvider {
    getName(node: AstNode): undefined | string;
    getNameNode(node: AstNode): undefined | CstNode;
}

Implemented by

Methods