-
Notifications
You must be signed in to change notification settings - Fork 2
/
圈3Listener.js
60 lines (41 loc) · 1.5 KB
/
圈3Listener.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Generated from 圈3.g4 by ANTLR 4.7
// jshint ignore: start
var antlr4 = require('antlr4/index');
// This class defines a complete listener for a parse tree produced by 圈3Parser.
function 圈3Listener() {
antlr4.tree.ParseTreeListener.call(this);
return this;
}
圈3Listener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype);
圈3Listener.prototype.constructor = 圈3Listener;
// Enter a parse tree produced by 圈3Parser#程序.
圈3Listener.prototype.enter程序 = function(ctx) {
};
// Exit a parse tree produced by 圈3Parser#程序.
圈3Listener.prototype.exit程序 = function(ctx) {
};
// Enter a parse tree produced by 圈3Parser#声明.
圈3Listener.prototype.enter声明 = function(ctx) {
};
// Exit a parse tree produced by 圈3Parser#声明.
圈3Listener.prototype.exit声明 = function(ctx) {
};
// Enter a parse tree produced by 圈3Parser#循环.
圈3Listener.prototype.enter循环 = function(ctx) {
};
// Exit a parse tree produced by 圈3Parser#循环.
圈3Listener.prototype.exit循环 = function(ctx) {
};
// Enter a parse tree produced by 圈3Parser#前进.
圈3Listener.prototype.enter前进 = function(ctx) {
};
// Exit a parse tree produced by 圈3Parser#前进.
圈3Listener.prototype.exit前进 = function(ctx) {
};
// Enter a parse tree produced by 圈3Parser#转向.
圈3Listener.prototype.enter转向 = function(ctx) {
};
// Exit a parse tree produced by 圈3Parser#转向.
圈3Listener.prototype.exit转向 = function(ctx) {
};
exports.圈3Listener = 圈3Listener;