UNPKG

antlr4-runtime

Version:

JavaScript runtime for ANTLR4

15 lines (12 loc) 646 B
/* Copyright (c) 2012-2022 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ import RuleNode from './RuleNode.js'; import ErrorNode from './ErrorNode.js'; import TerminalNode from './TerminalNode.js'; import ParseTreeListener from './ParseTreeListener.js'; import ParseTreeVisitor from './ParseTreeVisitor.js'; import ParseTreeWalker from './ParseTreeWalker.js'; import { default as Trees } from './Trees.js'; export default { Trees, RuleNode, ErrorNode, TerminalNode, ParseTreeListener, ParseTreeVisitor, ParseTreeWalker }