univac
Version:
Generate AST of lots of common programming languages using antlr4. JavaScript API and CLI tool.
11 lines • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function getGolangImpl() {
return {
Lexer: require('../grammar/golang/GolangLexer').GolangLexer,
Parser: require('../grammar/golang/GolangParser').GolangParser,
mainRule: 'sourceFile',
};
}
exports.getGolangImpl = getGolangImpl;
//# sourceMappingURL=golang.js.map