-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChatListener.js
96 lines (65 loc) · 2.34 KB
/
ChatListener.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Generated from Chat.g4 by ANTLR 4.7.1
// jshint ignore: start
var antlr4 = require('antlr4/index');
// This class defines a complete listener for a parse tree produced by ChatParser.
function ChatListener() {
antlr4.tree.ParseTreeListener.call(this);
return this;
}
ChatListener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype);
ChatListener.prototype.constructor = ChatListener;
// Enter a parse tree produced by ChatParser#chat.
ChatListener.prototype.enterChat = function(ctx) {
};
// Exit a parse tree produced by ChatParser#chat.
ChatListener.prototype.exitChat = function(ctx) {
};
// Enter a parse tree produced by ChatParser#line.
ChatListener.prototype.enterLine = function(ctx) {
};
// Exit a parse tree produced by ChatParser#line.
ChatListener.prototype.exitLine = function(ctx) {
};
// Enter a parse tree produced by ChatParser#name.
ChatListener.prototype.enterName = function(ctx) {
};
// Exit a parse tree produced by ChatParser#name.
ChatListener.prototype.exitName = function(ctx) {
};
// Enter a parse tree produced by ChatParser#command.
ChatListener.prototype.enterCommand = function(ctx) {
};
// Exit a parse tree produced by ChatParser#command.
ChatListener.prototype.exitCommand = function(ctx) {
};
// Enter a parse tree produced by ChatParser#message.
ChatListener.prototype.enterMessage = function(ctx) {
};
// Exit a parse tree produced by ChatParser#message.
ChatListener.prototype.exitMessage = function(ctx) {
};
// Enter a parse tree produced by ChatParser#emoticon.
ChatListener.prototype.enterEmoticon = function(ctx) {
};
// Exit a parse tree produced by ChatParser#emoticon.
ChatListener.prototype.exitEmoticon = function(ctx) {
};
// Enter a parse tree produced by ChatParser#link.
ChatListener.prototype.enterLink = function(ctx) {
};
// Exit a parse tree produced by ChatParser#link.
ChatListener.prototype.exitLink = function(ctx) {
};
// Enter a parse tree produced by ChatParser#color.
ChatListener.prototype.enterColor = function(ctx) {
};
// Exit a parse tree produced by ChatParser#color.
ChatListener.prototype.exitColor = function(ctx) {
};
// Enter a parse tree produced by ChatParser#mention.
ChatListener.prototype.enterMention = function(ctx) {
};
// Exit a parse tree produced by ChatParser#mention.
ChatListener.prototype.exitMention = function(ctx) {
};
exports.ChatListener = ChatListener;