12345678910111213141516171819202122232425262728293031323334353637383940 |
- var antlr4 = require('antlr4/index');
- function ivprogVisitor() {
- antlr4.tree.ParseTreeVisitor.call(this);
- return this;
- }
- ivprogVisitor.prototype = Object.create(antlr4.tree.ParseTreeVisitor.prototype);
- ivprogVisitor.prototype.constructor = ivprogVisitor;
- ivprogVisitor.prototype.visitParse = function(ctx) {
- return this.visitChildren(ctx);
- };
- ivprogVisitor.prototype.visitPrograma = function(ctx) {
- return this.visitChildren(ctx);
- };
- ivprogVisitor.prototype.visitDeclaracoesGlobais = function(ctx) {
- return this.visitChildren(ctx);
- };
- ivprogVisitor.prototype.visitListaDeclaracoes = function(ctx) {
- return this.visitChildren(ctx);
- };
- exports.ivprogVisitor = ivprogVisitor;
|