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/F7Listener.js
-rw-r--r--
8603
  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 listener for a parse tree produced by F7Parser.
  6function F7Listener() {
  7  antlr4.tree.ParseTreeListener.call(this);
  8  return this;
  9}
 10
 11F7Listener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype);
 12F7Listener.prototype.constructor = F7Listener;
 13
 14// Enter a parse tree produced by F7Parser#start.
 15F7Listener.prototype.enterStart = function (ctx) {};
 16
 17// Exit a parse tree produced by F7Parser#start.
 18F7Listener.prototype.exitStart = function (ctx) {};
 19
 20// Enter a parse tree produced by F7Parser#block.
 21F7Listener.prototype.enterBlock = function (ctx) {};
 22
 23// Exit a parse tree produced by F7Parser#block.
 24F7Listener.prototype.exitBlock = function (ctx) {};
 25
 26// Enter a parse tree produced by F7Parser#unaryPercentExpression.
 27F7Listener.prototype.enterUnaryPercentExpression = function (ctx) {};
 28
 29// Exit a parse tree produced by F7Parser#unaryPercentExpression.
 30F7Listener.prototype.exitUnaryPercentExpression = function (ctx) {};
 31
 32// Enter a parse tree produced by F7Parser#unaryMinusExpression.
 33F7Listener.prototype.enterUnaryMinusExpression = function (ctx) {};
 34
 35// Exit a parse tree produced by F7Parser#unaryMinusExpression.
 36F7Listener.prototype.exitUnaryMinusExpression = function (ctx) {};
 37
 38// Enter a parse tree produced by F7Parser#powerExpression.
 39F7Listener.prototype.enterPowerExpression = function (ctx) {};
 40
 41// Exit a parse tree produced by F7Parser#powerExpression.
 42F7Listener.prototype.exitPowerExpression = function (ctx) {};
 43
 44// Enter a parse tree produced by F7Parser#unaryPlusExpression.
 45F7Listener.prototype.enterUnaryPlusExpression = function (ctx) {};
 46
 47// Exit a parse tree produced by F7Parser#unaryPlusExpression.
 48F7Listener.prototype.exitUnaryPlusExpression = function (ctx) {};
 49
 50// Enter a parse tree produced by F7Parser#atomExpression.
 51F7Listener.prototype.enterAtomExpression = function (ctx) {};
 52
 53// Exit a parse tree produced by F7Parser#atomExpression.
 54F7Listener.prototype.exitAtomExpression = function (ctx) {};
 55
 56// Enter a parse tree produced by F7Parser#additiveExpression.
 57F7Listener.prototype.enterAdditiveExpression = function (ctx) {};
 58
 59// Exit a parse tree produced by F7Parser#additiveExpression.
 60F7Listener.prototype.exitAdditiveExpression = function (ctx) {};
 61
 62// Enter a parse tree produced by F7Parser#relationalExpression.
 63F7Listener.prototype.enterRelationalExpression = function (ctx) {};
 64
 65// Exit a parse tree produced by F7Parser#relationalExpression.
 66F7Listener.prototype.exitRelationalExpression = function (ctx) {};
 67
 68// Enter a parse tree produced by F7Parser#rangeExpression.
 69F7Listener.prototype.enterRangeExpression = function (ctx) {};
 70
 71// Exit a parse tree produced by F7Parser#rangeExpression.
 72F7Listener.prototype.exitRangeExpression = function (ctx) {};
 73
 74// Enter a parse tree produced by F7Parser#multiplicationExpression.
 75F7Listener.prototype.enterMultiplicationExpression = function (ctx) {};
 76
 77// Exit a parse tree produced by F7Parser#multiplicationExpression.
 78F7Listener.prototype.exitMultiplicationExpression = function (ctx) {};
 79
 80// Enter a parse tree produced by F7Parser#concatExpression.
 81F7Listener.prototype.enterConcatExpression = function (ctx) {};
 82
 83// Exit a parse tree produced by F7Parser#concatExpression.
 84F7Listener.prototype.exitConcatExpression = function (ctx) {};
 85
 86// Enter a parse tree produced by F7Parser#cellAtom.
 87F7Listener.prototype.enterCellAtom = function (ctx) {};
 88
 89// Exit a parse tree produced by F7Parser#cellAtom.
 90F7Listener.prototype.exitCellAtom = function (ctx) {};
 91
 92// Enter a parse tree produced by F7Parser#stringAtom.
 93F7Listener.prototype.enterStringAtom = function (ctx) {};
 94
 95// Exit a parse tree produced by F7Parser#stringAtom.
 96F7Listener.prototype.exitStringAtom = function (ctx) {};
 97
 98// Enter a parse tree produced by F7Parser#errorAtom.
 99F7Listener.prototype.enterErrorAtom = function (ctx) {};
100
101// Exit a parse tree produced by F7Parser#errorAtom.
102F7Listener.prototype.exitErrorAtom = function (ctx) {};
103
104// Enter a parse tree produced by F7Parser#numberAtom.
105F7Listener.prototype.enterNumberAtom = function (ctx) {};
106
107// Exit a parse tree produced by F7Parser#numberAtom.
108F7Listener.prototype.exitNumberAtom = function (ctx) {};
109
110// Enter a parse tree produced by F7Parser#parentheticalAtom.
111F7Listener.prototype.enterParentheticalAtom = function (ctx) {};
112
113// Exit a parse tree produced by F7Parser#parentheticalAtom.
114F7Listener.prototype.exitParentheticalAtom = function (ctx) {};
115
116// Enter a parse tree produced by F7Parser#formulaAtom.
117F7Listener.prototype.enterFormulaAtom = function (ctx) {};
118
119// Exit a parse tree produced by F7Parser#formulaAtom.
120F7Listener.prototype.exitFormulaAtom = function (ctx) {};
121
122// Enter a parse tree produced by F7Parser#listAtom.
123F7Listener.prototype.enterListAtom = function (ctx) {};
124
125// Exit a parse tree produced by F7Parser#listAtom.
126F7Listener.prototype.exitListAtom = function (ctx) {};
127
128// Enter a parse tree produced by F7Parser#namedAtom.
129F7Listener.prototype.enterNamedAtom = function (ctx) {};
130
131// Exit a parse tree produced by F7Parser#namedAtom.
132F7Listener.prototype.exitNamedAtom = function (ctx) {};
133
134// Enter a parse tree produced by F7Parser#range.
135F7Listener.prototype.enterRange = function (ctx) {};
136
137// Exit a parse tree produced by F7Parser#range.
138F7Listener.prototype.exitRange = function (ctx) {};
139
140// Enter a parse tree produced by F7Parser#biRange.
141F7Listener.prototype.enterBiRange = function (ctx) {};
142
143// Exit a parse tree produced by F7Parser#biRange.
144F7Listener.prototype.exitBiRange = function (ctx) {};
145
146// Enter a parse tree produced by F7Parser#uniRange.
147F7Listener.prototype.enterUniRange = function (ctx) {};
148
149// Exit a parse tree produced by F7Parser#uniRange.
150F7Listener.prototype.exitUniRange = function (ctx) {};
151
152// Enter a parse tree produced by F7Parser#columnWiseBiRange.
153F7Listener.prototype.enterColumnWiseBiRange = function (ctx) {};
154
155// Exit a parse tree produced by F7Parser#columnWiseBiRange.
156F7Listener.prototype.exitColumnWiseBiRange = function (ctx) {};
157
158// Enter a parse tree produced by F7Parser#columnWiseWithRowOffsetFirstBiRange.
159F7Listener.prototype.enterColumnWiseWithRowOffsetFirstBiRange = function (ctx) {};
160
161// Exit a parse tree produced by F7Parser#columnWiseWithRowOffsetFirstBiRange.
162F7Listener.prototype.exitColumnWiseWithRowOffsetFirstBiRange = function (ctx) {};
163
164// Enter a parse tree produced by F7Parser#columnWiseWithRowOffsetLastBiRange.
165F7Listener.prototype.enterColumnWiseWithRowOffsetLastBiRange = function (ctx) {};
166
167// Exit a parse tree produced by F7Parser#columnWiseWithRowOffsetLastBiRange.
168F7Listener.prototype.exitColumnWiseWithRowOffsetLastBiRange = function (ctx) {};
169
170// Enter a parse tree produced by F7Parser#rowWiseBiRange.
171F7Listener.prototype.enterRowWiseBiRange = function (ctx) {};
172
173// Exit a parse tree produced by F7Parser#rowWiseBiRange.
174F7Listener.prototype.exitRowWiseBiRange = function (ctx) {};
175
176// Enter a parse tree produced by F7Parser#rowWiseWithColumnOffsetFirstBiRange.
177F7Listener.prototype.enterRowWiseWithColumnOffsetFirstBiRange = function (ctx) {};
178
179// Exit a parse tree produced by F7Parser#rowWiseWithColumnOffsetFirstBiRange.
180F7Listener.prototype.exitRowWiseWithColumnOffsetFirstBiRange = function (ctx) {};
181
182// Enter a parse tree produced by F7Parser#rowWiseWithColumnOffsetLastBiRange.
183F7Listener.prototype.enterRowWiseWithColumnOffsetLastBiRange = function (ctx) {};
184
185// Exit a parse tree produced by F7Parser#rowWiseWithColumnOffsetLastBiRange.
186F7Listener.prototype.exitRowWiseWithColumnOffsetLastBiRange = function (ctx) {};
187
188// Enter a parse tree produced by F7Parser#arguments.
189F7Listener.prototype.enterArguments = function (ctx) {};
190
191// Exit a parse tree produced by F7Parser#arguments.
192F7Listener.prototype.exitArguments = function (ctx) {};
193
194// Enter a parse tree produced by F7Parser#gridName.
195F7Listener.prototype.enterGridName = function (ctx) {};
196
197// Exit a parse tree produced by F7Parser#gridName.
198F7Listener.prototype.exitGridName = function (ctx) {};
199
200// Enter a parse tree produced by F7Parser#identifier.
201F7Listener.prototype.enterIdentifier = function (ctx) {};
202
203// Exit a parse tree produced by F7Parser#identifier.
204F7Listener.prototype.exitIdentifier = function (ctx) {};
205
206// Enter a parse tree produced by F7Parser#comparisonOperator.
207F7Listener.prototype.enterComparisonOperator = function (ctx) {};
208
209// Exit a parse tree produced by F7Parser#comparisonOperator.
210F7Listener.prototype.exitComparisonOperator = function (ctx) {};
211
212exports.F7Listener = F7Listener;