f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/js/antlr/F7Visitor.js
-rw-r--r--
5671
  1// Generated from F7.g4 by ANTLR 4.7.2
  2// jshint ignore: start
  3var antlr4 = require("antlr4/index");
  4
  5// This class defines a complete generic visitor for a parse tree produced by F7Parser.
  6
  7function F7Visitor() {
  8  antlr4.tree.ParseTreeVisitor.call(this);
  9  return this;
 10}
 11
 12F7Visitor.prototype = Object.create(antlr4.tree.ParseTreeVisitor.prototype);
 13F7Visitor.prototype.constructor = F7Visitor;
 14
 15// Visit a parse tree produced by F7Parser#start.
 16F7Visitor.prototype.visitStart = function (ctx) {
 17  return this.visitChildren(ctx);
 18};
 19
 20// Visit a parse tree produced by F7Parser#block.
 21F7Visitor.prototype.visitBlock = function (ctx) {
 22  return this.visitChildren(ctx);
 23};
 24
 25// Visit a parse tree produced by F7Parser#unaryPercentExpression.
 26F7Visitor.prototype.visitUnaryPercentExpression = function (ctx) {
 27  return this.visitChildren(ctx);
 28};
 29
 30// Visit a parse tree produced by F7Parser#unaryMinusExpression.
 31F7Visitor.prototype.visitUnaryMinusExpression = function (ctx) {
 32  return this.visitChildren(ctx);
 33};
 34
 35// Visit a parse tree produced by F7Parser#powerExpression.
 36F7Visitor.prototype.visitPowerExpression = function (ctx) {
 37  return this.visitChildren(ctx);
 38};
 39
 40// Visit a parse tree produced by F7Parser#unaryPlusExpression.
 41F7Visitor.prototype.visitUnaryPlusExpression = function (ctx) {
 42  return this.visitChildren(ctx);
 43};
 44
 45// Visit a parse tree produced by F7Parser#atomExpression.
 46F7Visitor.prototype.visitAtomExpression = function (ctx) {
 47  return this.visitChildren(ctx);
 48};
 49
 50// Visit a parse tree produced by F7Parser#additiveExpression.
 51F7Visitor.prototype.visitAdditiveExpression = function (ctx) {
 52  return this.visitChildren(ctx);
 53};
 54
 55// Visit a parse tree produced by F7Parser#relationalExpression.
 56F7Visitor.prototype.visitRelationalExpression = function (ctx) {
 57  return this.visitChildren(ctx);
 58};
 59
 60// Visit a parse tree produced by F7Parser#rangeExpression.
 61F7Visitor.prototype.visitRangeExpression = function (ctx) {
 62  return this.visitChildren(ctx);
 63};
 64
 65// Visit a parse tree produced by F7Parser#multiplicationExpression.
 66F7Visitor.prototype.visitMultiplicationExpression = function (ctx) {
 67  return this.visitChildren(ctx);
 68};
 69
 70// Visit a parse tree produced by F7Parser#concatExpression.
 71F7Visitor.prototype.visitConcatExpression = function (ctx) {
 72  return this.visitChildren(ctx);
 73};
 74
 75// Visit a parse tree produced by F7Parser#cellAtom.
 76F7Visitor.prototype.visitCellAtom = function (ctx) {
 77  return this.visitChildren(ctx);
 78};
 79
 80// Visit a parse tree produced by F7Parser#stringAtom.
 81F7Visitor.prototype.visitStringAtom = function (ctx) {
 82  return this.visitChildren(ctx);
 83};
 84
 85// Visit a parse tree produced by F7Parser#errorAtom.
 86F7Visitor.prototype.visitErrorAtom = function (ctx) {
 87  return this.visitChildren(ctx);
 88};
 89
 90// Visit a parse tree produced by F7Parser#numberAtom.
 91F7Visitor.prototype.visitNumberAtom = function (ctx) {
 92  return this.visitChildren(ctx);
 93};
 94
 95// Visit a parse tree produced by F7Parser#parentheticalAtom.
 96F7Visitor.prototype.visitParentheticalAtom = function (ctx) {
 97  return this.visitChildren(ctx);
 98};
 99
100// Visit a parse tree produced by F7Parser#formulaAtom.
101F7Visitor.prototype.visitFormulaAtom = function (ctx) {
102  return this.visitChildren(ctx);
103};
104
105// Visit a parse tree produced by F7Parser#listAtom.
106F7Visitor.prototype.visitListAtom = function (ctx) {
107  return this.visitChildren(ctx);
108};
109
110// Visit a parse tree produced by F7Parser#namedAtom.
111F7Visitor.prototype.visitNamedAtom = function (ctx) {
112  return this.visitChildren(ctx);
113};
114
115// Visit a parse tree produced by F7Parser#range.
116F7Visitor.prototype.visitRange = function (ctx) {
117  return this.visitChildren(ctx);
118};
119
120// Visit a parse tree produced by F7Parser#biRange.
121F7Visitor.prototype.visitBiRange = function (ctx) {
122  return this.visitChildren(ctx);
123};
124
125// Visit a parse tree produced by F7Parser#uniRange.
126F7Visitor.prototype.visitUniRange = function (ctx) {
127  return this.visitChildren(ctx);
128};
129
130// Visit a parse tree produced by F7Parser#columnWiseBiRange.
131F7Visitor.prototype.visitColumnWiseBiRange = function (ctx) {
132  return this.visitChildren(ctx);
133};
134
135// Visit a parse tree produced by F7Parser#columnWiseWithRowOffsetFirstBiRange.
136F7Visitor.prototype.visitColumnWiseWithRowOffsetFirstBiRange = function (ctx) {
137  return this.visitChildren(ctx);
138};
139
140// Visit a parse tree produced by F7Parser#columnWiseWithRowOffsetLastBiRange.
141F7Visitor.prototype.visitColumnWiseWithRowOffsetLastBiRange = function (ctx) {
142  return this.visitChildren(ctx);
143};
144
145// Visit a parse tree produced by F7Parser#rowWiseBiRange.
146F7Visitor.prototype.visitRowWiseBiRange = function (ctx) {
147  return this.visitChildren(ctx);
148};
149
150// Visit a parse tree produced by F7Parser#rowWiseWithColumnOffsetFirstBiRange.
151F7Visitor.prototype.visitRowWiseWithColumnOffsetFirstBiRange = function (ctx) {
152  return this.visitChildren(ctx);
153};
154
155// Visit a parse tree produced by F7Parser#rowWiseWithColumnOffsetLastBiRange.
156F7Visitor.prototype.visitRowWiseWithColumnOffsetLastBiRange = function (ctx) {
157  return this.visitChildren(ctx);
158};
159
160// Visit a parse tree produced by F7Parser#arguments.
161F7Visitor.prototype.visitArguments = function (ctx) {
162  return this.visitChildren(ctx);
163};
164
165// Visit a parse tree produced by F7Parser#gridName.
166F7Visitor.prototype.visitGridName = function (ctx) {
167  return this.visitChildren(ctx);
168};
169
170// Visit a parse tree produced by F7Parser#identifier.
171F7Visitor.prototype.visitIdentifier = function (ctx) {
172  return this.visitChildren(ctx);
173};
174
175// Visit a parse tree produced by F7Parser#comparisonOperator.
176F7Visitor.prototype.visitComparisonOperator = function (ctx) {
177  return this.visitChildren(ctx);
178};
179
180exports.F7Visitor = F7Visitor;