yini-parser
Version:
Node.js parser for YINI — a clean, structured INI alternative with types, simple section nesting, comments, and strict mode.
15 lines (14 loc) • 500 B
JavaScript
;
// Generated from grammar/v1.0.0-rc.2x/YiniParser.g4 by ANTLR 4.13.2
Object.defineProperty(exports, "__esModule", { value: true });
const antlr4_1 = require("antlr4");
/**
* This interface defines a complete generic visitor for a parse tree produced
* by `YiniParser`.
*
* @param <Result> The return type of the visit operation. Use `void` for
* operations with no return type.
*/
class YiniParserVisitor extends antlr4_1.ParseTreeVisitor {
}
exports.default = YiniParserVisitor;