export interface ILocation { startOffset: number startLine: number } export interface CstNode { readonly name: string readonly children: CstChildrenDictionary readonly recoveredNode?: boolean /** * Only relevant for [in-lined](http://sap.github.io/chevrotain/docs/guide/concrete_syntax_tree.html#in-lined-rules) rules. * the fullName will **also** include the name of the top level rule containing this nested rule. */ readonly fullName?: string location?: ILocation }