UNPKG

antlr4ts

Version:

ANTLR 4 runtime for JavaScript written in Typescript

27 lines (26 loc) 1.1 kB
/*! * Copyright 2016 The ANTLR Project. All rights reserved. * Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information. */ import { ErrorNode } from "./ErrorNode"; import { ParserRuleContext } from "../ParserRuleContext"; import { TerminalNode } from "./TerminalNode"; /** This interface describes the minimal core of methods triggered * by {@link ParseTreeWalker}. E.g., * * ``` * ParseTreeWalker walker = new ParseTreeWalker(); * walker.walk(myParseTreeListener, myParseTree); <-- triggers events in your listener * ``` * * If you want to trigger events in multiple listeners during a single * tree walk, you can use the ParseTreeDispatcher object available at * * https://github.com/antlr/antlr4/issues/841 */ export interface ParseTreeListener { visitTerminal?: (/*@NotNull*/ node: TerminalNode) => void; visitErrorNode?: (/*@NotNull*/ node: ErrorNode) => void; enterEveryRule?: (/*@NotNull*/ ctx: ParserRuleContext) => void; exitEveryRule?: (/*@NotNull*/ ctx: ParserRuleContext) => void; }