cobol85preprocessor

package
v0.0.0-...-4c43aeb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 4, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Example
package main

import (
	"bramp.net/antlr4/cobol85preprocessor"

	"fmt"
	"github.com/antlr/antlr4/runtime/Go/antlr"
)

type exampleListener struct {
	*cobol85preprocessor.BaseCobol85PreprocessorListener
}

func (l *exampleListener) EnterEveryRule(ctx antlr.ParserRuleContext) {
	fmt.Println(ctx.GetText())
}
func main() {
	// Setup the input
	is := antlr.NewInputStream("...some text to parse...")

	// Create the Lexer
	lexer := cobol85preprocessor.NewCobol85PreprocessorLexer(is)
	stream := antlr.NewCommonTokenStream(lexer, antlr.TokenDefaultChannel)

	// Create the Parser
	p := cobol85preprocessor.NewCobol85PreprocessorParser(stream)
	p.BuildParseTrees = true
	p.AddErrorListener(antlr.NewDiagnosticErrorListener(true))

	// Finally walk the tree
	tree := p.StartRule()
	antlr.ParseTreeWalkerDefault.Walk(&exampleListener{}, tree)
}
Output:

Index

Examples

Constants

View Source
const (
	Cobol85PreprocessorLexerADATA             = 1
	Cobol85PreprocessorLexerADV               = 2
	Cobol85PreprocessorLexerALIAS             = 3
	Cobol85PreprocessorLexerANSI              = 4
	Cobol85PreprocessorLexerANY               = 5
	Cobol85PreprocessorLexerAPOST             = 6
	Cobol85PreprocessorLexerAR                = 7
	Cobol85PreprocessorLexerARITH             = 8
	Cobol85PreprocessorLexerAUTO              = 9
	Cobol85PreprocessorLexerAWO               = 10
	Cobol85PreprocessorLexerBIN               = 11
	Cobol85PreprocessorLexerBLOCK0            = 12
	Cobol85PreprocessorLexerBUF               = 13
	Cobol85PreprocessorLexerBUFSIZE           = 14
	Cobol85PreprocessorLexerBY                = 15
	Cobol85PreprocessorLexerCBL               = 16
	Cobol85PreprocessorLexerCBLCARD           = 17
	Cobol85PreprocessorLexerCICS              = 18
	Cobol85PreprocessorLexerCO                = 19
	Cobol85PreprocessorLexerCOBOL2            = 20
	Cobol85PreprocessorLexerCOBOL3            = 21
	Cobol85PreprocessorLexerCODEPAGE          = 22
	Cobol85PreprocessorLexerCOMPAT            = 23
	Cobol85PreprocessorLexerCOMPILE           = 24
	Cobol85PreprocessorLexerCOPY              = 25
	Cobol85PreprocessorLexerCP                = 26
	Cobol85PreprocessorLexerCPP               = 27
	Cobol85PreprocessorLexerCPSM              = 28
	Cobol85PreprocessorLexerCS                = 29
	Cobol85PreprocessorLexerCURR              = 30
	Cobol85PreprocessorLexerCURRENCY          = 31
	Cobol85PreprocessorLexerDATA              = 32
	Cobol85PreprocessorLexerDATEPROC          = 33
	Cobol85PreprocessorLexerDBCS              = 34
	Cobol85PreprocessorLexerDD                = 35
	Cobol85PreprocessorLexerDEBUG             = 36
	Cobol85PreprocessorLexerDECK              = 37
	Cobol85PreprocessorLexerDIAGTRUNC         = 38
	Cobol85PreprocessorLexerDLI               = 39
	Cobol85PreprocessorLexerDLL               = 40
	Cobol85PreprocessorLexerDP                = 41
	Cobol85PreprocessorLexerDTR               = 42
	Cobol85PreprocessorLexerDU                = 43
	Cobol85PreprocessorLexerDUMP              = 44
	Cobol85PreprocessorLexerDYN               = 45
	Cobol85PreprocessorLexerDYNAM             = 46
	Cobol85PreprocessorLexerEDF               = 47
	Cobol85PreprocessorLexerEJECT             = 48
	Cobol85PreprocessorLexerEJPD              = 49
	Cobol85PreprocessorLexerEN                = 50
	Cobol85PreprocessorLexerENGLISH           = 51
	Cobol85PreprocessorLexerEND_EXEC          = 52
	Cobol85PreprocessorLexerEPILOG            = 53
	Cobol85PreprocessorLexerEXCI              = 54
	Cobol85PreprocessorLexerEXEC              = 55
	Cobol85PreprocessorLexerEXIT              = 56
	Cobol85PreprocessorLexerEXP               = 57
	Cobol85PreprocessorLexerEXPORTALL         = 58
	Cobol85PreprocessorLexerEXTEND            = 59
	Cobol85PreprocessorLexerFASTSRT           = 60
	Cobol85PreprocessorLexerFEPI              = 61
	Cobol85PreprocessorLexerFLAG              = 62
	Cobol85PreprocessorLexerFLAGSTD           = 63
	Cobol85PreprocessorLexerFSRT              = 64
	Cobol85PreprocessorLexerFULL              = 65
	Cobol85PreprocessorLexerGDS               = 66
	Cobol85PreprocessorLexerGRAPHIC           = 67
	Cobol85PreprocessorLexerHOOK              = 68
	Cobol85PreprocessorLexerIN                = 69
	Cobol85PreprocessorLexerINTDATE           = 70
	Cobol85PreprocessorLexerJA                = 71
	Cobol85PreprocessorLexerJP                = 72
	Cobol85PreprocessorLexerKA                = 73
	Cobol85PreprocessorLexerLANG              = 74
	Cobol85PreprocessorLexerLANGUAGE          = 75
	Cobol85PreprocessorLexerLC                = 76
	Cobol85PreprocessorLexerLEASM             = 77
	Cobol85PreprocessorLexerLENGTH            = 78
	Cobol85PreprocessorLexerLIB               = 79
	Cobol85PreprocessorLexerLILIAN            = 80
	Cobol85PreprocessorLexerLIN               = 81
	Cobol85PreprocessorLexerLINECOUNT         = 82
	Cobol85PreprocessorLexerLINKAGE           = 83
	Cobol85PreprocessorLexerLIST              = 84
	Cobol85PreprocessorLexerLM                = 85
	Cobol85PreprocessorLexerLONGMIXED         = 86
	Cobol85PreprocessorLexerLONGUPPER         = 87
	Cobol85PreprocessorLexerLPARENCHAR        = 88
	Cobol85PreprocessorLexerLU                = 89
	Cobol85PreprocessorLexerMAP               = 90
	Cobol85PreprocessorLexerMARGINS           = 91
	Cobol85PreprocessorLexerMAX               = 92
	Cobol85PreprocessorLexerMD                = 93
	Cobol85PreprocessorLexerMDECK             = 94
	Cobol85PreprocessorLexerMIG               = 95
	Cobol85PreprocessorLexerMIXED             = 96
	Cobol85PreprocessorLexerNAME              = 97
	Cobol85PreprocessorLexerNAT               = 98
	Cobol85PreprocessorLexerNATIONAL          = 99
	Cobol85PreprocessorLexerNATLANG           = 100
	Cobol85PreprocessorLexerNN                = 101
	Cobol85PreprocessorLexerNO                = 102
	Cobol85PreprocessorLexerNOADATA           = 103
	Cobol85PreprocessorLexerNOADV             = 104
	Cobol85PreprocessorLexerNOALIAS           = 105
	Cobol85PreprocessorLexerNOAWO             = 106
	Cobol85PreprocessorLexerNOBLOCK0          = 107
	Cobol85PreprocessorLexerNOC               = 108
	Cobol85PreprocessorLexerNOCBLCARD         = 109
	Cobol85PreprocessorLexerNOCICS            = 110
	Cobol85PreprocessorLexerNOCMPR2           = 111
	Cobol85PreprocessorLexerNOCOMPILE         = 112
	Cobol85PreprocessorLexerNOCPSM            = 113
	Cobol85PreprocessorLexerNOCURR            = 114
	Cobol85PreprocessorLexerNOCURRENCY        = 115
	Cobol85PreprocessorLexerNOD               = 116
	Cobol85PreprocessorLexerNODATEPROC        = 117
	Cobol85PreprocessorLexerNODBCS            = 118
	Cobol85PreprocessorLexerNODE              = 119
	Cobol85PreprocessorLexerNODEBUG           = 120
	Cobol85PreprocessorLexerNODECK            = 121
	Cobol85PreprocessorLexerNODIAGTRUNC       = 122
	Cobol85PreprocessorLexerNODLL             = 123
	Cobol85PreprocessorLexerNODU              = 124
	Cobol85PreprocessorLexerNODUMP            = 125
	Cobol85PreprocessorLexerNODP              = 126
	Cobol85PreprocessorLexerNODTR             = 127
	Cobol85PreprocessorLexerNODYN             = 128
	Cobol85PreprocessorLexerNODYNAM           = 129
	Cobol85PreprocessorLexerNOEDF             = 130
	Cobol85PreprocessorLexerNOEJPD            = 131
	Cobol85PreprocessorLexerNOEPILOG          = 132
	Cobol85PreprocessorLexerNOEXIT            = 133
	Cobol85PreprocessorLexerNOEXP             = 134
	Cobol85PreprocessorLexerNOEXPORTALL       = 135
	Cobol85PreprocessorLexerNOF               = 136
	Cobol85PreprocessorLexerNOFASTSRT         = 137
	Cobol85PreprocessorLexerNOFEPI            = 138
	Cobol85PreprocessorLexerNOFLAG            = 139
	Cobol85PreprocessorLexerNOFLAGMIG         = 140
	Cobol85PreprocessorLexerNOFLAGSTD         = 141
	Cobol85PreprocessorLexerNOFSRT            = 142
	Cobol85PreprocessorLexerNOGRAPHIC         = 143
	Cobol85PreprocessorLexerNOHOOK            = 144
	Cobol85PreprocessorLexerNOLENGTH          = 145
	Cobol85PreprocessorLexerNOLIB             = 146
	Cobol85PreprocessorLexerNOLINKAGE         = 147
	Cobol85PreprocessorLexerNOLIST            = 148
	Cobol85PreprocessorLexerNOMAP             = 149
	Cobol85PreprocessorLexerNOMD              = 150
	Cobol85PreprocessorLexerNOMDECK           = 151
	Cobol85PreprocessorLexerNONAME            = 152
	Cobol85PreprocessorLexerNONUM             = 153
	Cobol85PreprocessorLexerNONUMBER          = 154
	Cobol85PreprocessorLexerNOOBJ             = 155
	Cobol85PreprocessorLexerNOOBJECT          = 156
	Cobol85PreprocessorLexerNOOFF             = 157
	Cobol85PreprocessorLexerNOOFFSET          = 158
	Cobol85PreprocessorLexerNOOPSEQUENCE      = 159
	Cobol85PreprocessorLexerNOOPT             = 160
	Cobol85PreprocessorLexerNOOPTIMIZE        = 161
	Cobol85PreprocessorLexerNOOPTIONS         = 162
	Cobol85PreprocessorLexerNOP               = 163
	Cobol85PreprocessorLexerNOPFD             = 164
	Cobol85PreprocessorLexerNOPROLOG          = 165
	Cobol85PreprocessorLexerNORENT            = 166
	Cobol85PreprocessorLexerNOS               = 167
	Cobol85PreprocessorLexerNOSEP             = 168
	Cobol85PreprocessorLexerNOSEPARATE        = 169
	Cobol85PreprocessorLexerNOSEQ             = 170
	Cobol85PreprocessorLexerNOSOURCE          = 171
	Cobol85PreprocessorLexerNOSPIE            = 172
	Cobol85PreprocessorLexerNOSQL             = 173
	Cobol85PreprocessorLexerNOSQLC            = 174
	Cobol85PreprocessorLexerNOSQLCCSID        = 175
	Cobol85PreprocessorLexerNOSSR             = 176
	Cobol85PreprocessorLexerNOSSRANGE         = 177
	Cobol85PreprocessorLexerNOSTDTRUNC        = 178
	Cobol85PreprocessorLexerNOSEQUENCE        = 179
	Cobol85PreprocessorLexerNOTERM            = 180
	Cobol85PreprocessorLexerNOTERMINAL        = 181
	Cobol85PreprocessorLexerNOTEST            = 182
	Cobol85PreprocessorLexerNOTHREAD          = 183
	Cobol85PreprocessorLexerNOTRIG            = 184
	Cobol85PreprocessorLexerNOVBREF           = 185
	Cobol85PreprocessorLexerNOWD              = 186
	Cobol85PreprocessorLexerNOWORD            = 187
	Cobol85PreprocessorLexerNOX               = 188
	Cobol85PreprocessorLexerNOXREF            = 189
	Cobol85PreprocessorLexerNOZWB             = 190
	Cobol85PreprocessorLexerNS                = 191
	Cobol85PreprocessorLexerNSEQ              = 192
	Cobol85PreprocessorLexerNSYMBOL           = 193
	Cobol85PreprocessorLexerNUM               = 194
	Cobol85PreprocessorLexerNUMBER            = 195
	Cobol85PreprocessorLexerNUMPROC           = 196
	Cobol85PreprocessorLexerOBJ               = 197
	Cobol85PreprocessorLexerOBJECT            = 198
	Cobol85PreprocessorLexerOF                = 199
	Cobol85PreprocessorLexerOFF               = 200
	Cobol85PreprocessorLexerOFFSET            = 201
	Cobol85PreprocessorLexerON                = 202
	Cobol85PreprocessorLexerOP                = 203
	Cobol85PreprocessorLexerOPMARGINS         = 204
	Cobol85PreprocessorLexerOPSEQUENCE        = 205
	Cobol85PreprocessorLexerOPT               = 206
	Cobol85PreprocessorLexerOPTFILE           = 207
	Cobol85PreprocessorLexerOPTIMIZE          = 208
	Cobol85PreprocessorLexerOPTIONS           = 209
	Cobol85PreprocessorLexerOUT               = 210
	Cobol85PreprocessorLexerOUTDD             = 211
	Cobol85PreprocessorLexerPFD               = 212
	Cobol85PreprocessorLexerPPTDBG            = 213
	Cobol85PreprocessorLexerPGMN              = 214
	Cobol85PreprocessorLexerPGMNAME           = 215
	Cobol85PreprocessorLexerPROCESS           = 216
	Cobol85PreprocessorLexerPROLOG            = 217
	Cobol85PreprocessorLexerQUOTE             = 218
	Cobol85PreprocessorLexerRENT              = 219
	Cobol85PreprocessorLexerREPLACE           = 220
	Cobol85PreprocessorLexerREPLACING         = 221
	Cobol85PreprocessorLexerRMODE             = 222
	Cobol85PreprocessorLexerRPARENCHAR        = 223
	Cobol85PreprocessorLexerSEP               = 224
	Cobol85PreprocessorLexerSEPARATE          = 225
	Cobol85PreprocessorLexerSEQ               = 226
	Cobol85PreprocessorLexerSEQUENCE          = 227
	Cobol85PreprocessorLexerSHORT             = 228
	Cobol85PreprocessorLexerSIZE              = 229
	Cobol85PreprocessorLexerSOURCE            = 230
	Cobol85PreprocessorLexerSP                = 231
	Cobol85PreprocessorLexerSPACE             = 232
	Cobol85PreprocessorLexerSPIE              = 233
	Cobol85PreprocessorLexerSQL               = 234
	Cobol85PreprocessorLexerSQLC              = 235
	Cobol85PreprocessorLexerSQLCCSID          = 236
	Cobol85PreprocessorLexerSQLIMS            = 237
	Cobol85PreprocessorLexerSKIP1             = 238
	Cobol85PreprocessorLexerSKIP2             = 239
	Cobol85PreprocessorLexerSKIP3             = 240
	Cobol85PreprocessorLexerSS                = 241
	Cobol85PreprocessorLexerSSR               = 242
	Cobol85PreprocessorLexerSSRANGE           = 243
	Cobol85PreprocessorLexerSTD               = 244
	Cobol85PreprocessorLexerSUPPRESS          = 245
	Cobol85PreprocessorLexerSYSEIB            = 246
	Cobol85PreprocessorLexerSZ                = 247
	Cobol85PreprocessorLexerTERM              = 248
	Cobol85PreprocessorLexerTERMINAL          = 249
	Cobol85PreprocessorLexerTEST              = 250
	Cobol85PreprocessorLexerTHREAD            = 251
	Cobol85PreprocessorLexerTITLE             = 252
	Cobol85PreprocessorLexerTRIG              = 253
	Cobol85PreprocessorLexerTRUNC             = 254
	Cobol85PreprocessorLexerUE                = 255
	Cobol85PreprocessorLexerUPPER             = 256
	Cobol85PreprocessorLexerVBREF             = 257
	Cobol85PreprocessorLexerWD                = 258
	Cobol85PreprocessorLexerWORD              = 259
	Cobol85PreprocessorLexerXMLPARSE          = 260
	Cobol85PreprocessorLexerXMLSS             = 261
	Cobol85PreprocessorLexerXOPTS             = 262
	Cobol85PreprocessorLexerXP                = 263
	Cobol85PreprocessorLexerXREF              = 264
	Cobol85PreprocessorLexerYEARWINDOW        = 265
	Cobol85PreprocessorLexerYW                = 266
	Cobol85PreprocessorLexerZWB               = 267
	Cobol85PreprocessorLexerC_CHAR            = 268
	Cobol85PreprocessorLexerD_CHAR            = 269
	Cobol85PreprocessorLexerE_CHAR            = 270
	Cobol85PreprocessorLexerF_CHAR            = 271
	Cobol85PreprocessorLexerH_CHAR            = 272
	Cobol85PreprocessorLexerI_CHAR            = 273
	Cobol85PreprocessorLexerM_CHAR            = 274
	Cobol85PreprocessorLexerN_CHAR            = 275
	Cobol85PreprocessorLexerQ_CHAR            = 276
	Cobol85PreprocessorLexerS_CHAR            = 277
	Cobol85PreprocessorLexerU_CHAR            = 278
	Cobol85PreprocessorLexerW_CHAR            = 279
	Cobol85PreprocessorLexerX_CHAR            = 280
	Cobol85PreprocessorLexerCOMMENTTAG        = 281
	Cobol85PreprocessorLexerCOMMACHAR         = 282
	Cobol85PreprocessorLexerDOT               = 283
	Cobol85PreprocessorLexerDOUBLEEQUALCHAR   = 284
	Cobol85PreprocessorLexerNONNUMERICLITERAL = 285
	Cobol85PreprocessorLexerNUMERICLITERAL    = 286
	Cobol85PreprocessorLexerIDENTIFIER        = 287
	Cobol85PreprocessorLexerFILENAME          = 288
	Cobol85PreprocessorLexerNEWLINE           = 289
	Cobol85PreprocessorLexerCOMMENTLINE       = 290
	Cobol85PreprocessorLexerWS                = 291
	Cobol85PreprocessorLexerTEXT              = 292
)

Cobol85PreprocessorLexer tokens.

View Source
const (
	Cobol85PreprocessorParserEOF               = antlr.TokenEOF
	Cobol85PreprocessorParserADATA             = 1
	Cobol85PreprocessorParserADV               = 2
	Cobol85PreprocessorParserALIAS             = 3
	Cobol85PreprocessorParserANSI              = 4
	Cobol85PreprocessorParserANY               = 5
	Cobol85PreprocessorParserAPOST             = 6
	Cobol85PreprocessorParserAR                = 7
	Cobol85PreprocessorParserARITH             = 8
	Cobol85PreprocessorParserAUTO              = 9
	Cobol85PreprocessorParserAWO               = 10
	Cobol85PreprocessorParserBIN               = 11
	Cobol85PreprocessorParserBLOCK0            = 12
	Cobol85PreprocessorParserBUF               = 13
	Cobol85PreprocessorParserBUFSIZE           = 14
	Cobol85PreprocessorParserBY                = 15
	Cobol85PreprocessorParserCBL               = 16
	Cobol85PreprocessorParserCBLCARD           = 17
	Cobol85PreprocessorParserCICS              = 18
	Cobol85PreprocessorParserCO                = 19
	Cobol85PreprocessorParserCOBOL2            = 20
	Cobol85PreprocessorParserCOBOL3            = 21
	Cobol85PreprocessorParserCODEPAGE          = 22
	Cobol85PreprocessorParserCOMPAT            = 23
	Cobol85PreprocessorParserCOMPILE           = 24
	Cobol85PreprocessorParserCOPY              = 25
	Cobol85PreprocessorParserCP                = 26
	Cobol85PreprocessorParserCPP               = 27
	Cobol85PreprocessorParserCPSM              = 28
	Cobol85PreprocessorParserCS                = 29
	Cobol85PreprocessorParserCURR              = 30
	Cobol85PreprocessorParserCURRENCY          = 31
	Cobol85PreprocessorParserDATA              = 32
	Cobol85PreprocessorParserDATEPROC          = 33
	Cobol85PreprocessorParserDBCS              = 34
	Cobol85PreprocessorParserDD                = 35
	Cobol85PreprocessorParserDEBUG             = 36
	Cobol85PreprocessorParserDECK              = 37
	Cobol85PreprocessorParserDIAGTRUNC         = 38
	Cobol85PreprocessorParserDLI               = 39
	Cobol85PreprocessorParserDLL               = 40
	Cobol85PreprocessorParserDP                = 41
	Cobol85PreprocessorParserDTR               = 42
	Cobol85PreprocessorParserDU                = 43
	Cobol85PreprocessorParserDUMP              = 44
	Cobol85PreprocessorParserDYN               = 45
	Cobol85PreprocessorParserDYNAM             = 46
	Cobol85PreprocessorParserEDF               = 47
	Cobol85PreprocessorParserEJECT             = 48
	Cobol85PreprocessorParserEJPD              = 49
	Cobol85PreprocessorParserEN                = 50
	Cobol85PreprocessorParserENGLISH           = 51
	Cobol85PreprocessorParserEND_EXEC          = 52
	Cobol85PreprocessorParserEPILOG            = 53
	Cobol85PreprocessorParserEXCI              = 54
	Cobol85PreprocessorParserEXEC              = 55
	Cobol85PreprocessorParserEXIT              = 56
	Cobol85PreprocessorParserEXP               = 57
	Cobol85PreprocessorParserEXPORTALL         = 58
	Cobol85PreprocessorParserEXTEND            = 59
	Cobol85PreprocessorParserFASTSRT           = 60
	Cobol85PreprocessorParserFEPI              = 61
	Cobol85PreprocessorParserFLAG              = 62
	Cobol85PreprocessorParserFLAGSTD           = 63
	Cobol85PreprocessorParserFSRT              = 64
	Cobol85PreprocessorParserFULL              = 65
	Cobol85PreprocessorParserGDS               = 66
	Cobol85PreprocessorParserGRAPHIC           = 67
	Cobol85PreprocessorParserHOOK              = 68
	Cobol85PreprocessorParserIN                = 69
	Cobol85PreprocessorParserINTDATE           = 70
	Cobol85PreprocessorParserJA                = 71
	Cobol85PreprocessorParserJP                = 72
	Cobol85PreprocessorParserKA                = 73
	Cobol85PreprocessorParserLANG              = 74
	Cobol85PreprocessorParserLANGUAGE          = 75
	Cobol85PreprocessorParserLC                = 76
	Cobol85PreprocessorParserLEASM             = 77
	Cobol85PreprocessorParserLENGTH            = 78
	Cobol85PreprocessorParserLIB               = 79
	Cobol85PreprocessorParserLILIAN            = 80
	Cobol85PreprocessorParserLIN               = 81
	Cobol85PreprocessorParserLINECOUNT         = 82
	Cobol85PreprocessorParserLINKAGE           = 83
	Cobol85PreprocessorParserLIST              = 84
	Cobol85PreprocessorParserLM                = 85
	Cobol85PreprocessorParserLONGMIXED         = 86
	Cobol85PreprocessorParserLONGUPPER         = 87
	Cobol85PreprocessorParserLPARENCHAR        = 88
	Cobol85PreprocessorParserLU                = 89
	Cobol85PreprocessorParserMAP               = 90
	Cobol85PreprocessorParserMARGINS           = 91
	Cobol85PreprocessorParserMAX               = 92
	Cobol85PreprocessorParserMD                = 93
	Cobol85PreprocessorParserMDECK             = 94
	Cobol85PreprocessorParserMIG               = 95
	Cobol85PreprocessorParserMIXED             = 96
	Cobol85PreprocessorParserNAME              = 97
	Cobol85PreprocessorParserNAT               = 98
	Cobol85PreprocessorParserNATIONAL          = 99
	Cobol85PreprocessorParserNATLANG           = 100
	Cobol85PreprocessorParserNN                = 101
	Cobol85PreprocessorParserNO                = 102
	Cobol85PreprocessorParserNOADATA           = 103
	Cobol85PreprocessorParserNOADV             = 104
	Cobol85PreprocessorParserNOALIAS           = 105
	Cobol85PreprocessorParserNOAWO             = 106
	Cobol85PreprocessorParserNOBLOCK0          = 107
	Cobol85PreprocessorParserNOC               = 108
	Cobol85PreprocessorParserNOCBLCARD         = 109
	Cobol85PreprocessorParserNOCICS            = 110
	Cobol85PreprocessorParserNOCMPR2           = 111
	Cobol85PreprocessorParserNOCOMPILE         = 112
	Cobol85PreprocessorParserNOCPSM            = 113
	Cobol85PreprocessorParserNOCURR            = 114
	Cobol85PreprocessorParserNOCURRENCY        = 115
	Cobol85PreprocessorParserNOD               = 116
	Cobol85PreprocessorParserNODATEPROC        = 117
	Cobol85PreprocessorParserNODBCS            = 118
	Cobol85PreprocessorParserNODE              = 119
	Cobol85PreprocessorParserNODEBUG           = 120
	Cobol85PreprocessorParserNODECK            = 121
	Cobol85PreprocessorParserNODIAGTRUNC       = 122
	Cobol85PreprocessorParserNODLL             = 123
	Cobol85PreprocessorParserNODU              = 124
	Cobol85PreprocessorParserNODUMP            = 125
	Cobol85PreprocessorParserNODP              = 126
	Cobol85PreprocessorParserNODTR             = 127
	Cobol85PreprocessorParserNODYN             = 128
	Cobol85PreprocessorParserNODYNAM           = 129
	Cobol85PreprocessorParserNOEDF             = 130
	Cobol85PreprocessorParserNOEJPD            = 131
	Cobol85PreprocessorParserNOEPILOG          = 132
	Cobol85PreprocessorParserNOEXIT            = 133
	Cobol85PreprocessorParserNOEXP             = 134
	Cobol85PreprocessorParserNOEXPORTALL       = 135
	Cobol85PreprocessorParserNOF               = 136
	Cobol85PreprocessorParserNOFASTSRT         = 137
	Cobol85PreprocessorParserNOFEPI            = 138
	Cobol85PreprocessorParserNOFLAG            = 139
	Cobol85PreprocessorParserNOFLAGMIG         = 140
	Cobol85PreprocessorParserNOFLAGSTD         = 141
	Cobol85PreprocessorParserNOFSRT            = 142
	Cobol85PreprocessorParserNOGRAPHIC         = 143
	Cobol85PreprocessorParserNOHOOK            = 144
	Cobol85PreprocessorParserNOLENGTH          = 145
	Cobol85PreprocessorParserNOLIB             = 146
	Cobol85PreprocessorParserNOLINKAGE         = 147
	Cobol85PreprocessorParserNOLIST            = 148
	Cobol85PreprocessorParserNOMAP             = 149
	Cobol85PreprocessorParserNOMD              = 150
	Cobol85PreprocessorParserNOMDECK           = 151
	Cobol85PreprocessorParserNONAME            = 152
	Cobol85PreprocessorParserNONUM             = 153
	Cobol85PreprocessorParserNONUMBER          = 154
	Cobol85PreprocessorParserNOOBJ             = 155
	Cobol85PreprocessorParserNOOBJECT          = 156
	Cobol85PreprocessorParserNOOFF             = 157
	Cobol85PreprocessorParserNOOFFSET          = 158
	Cobol85PreprocessorParserNOOPSEQUENCE      = 159
	Cobol85PreprocessorParserNOOPT             = 160
	Cobol85PreprocessorParserNOOPTIMIZE        = 161
	Cobol85PreprocessorParserNOOPTIONS         = 162
	Cobol85PreprocessorParserNOP               = 163
	Cobol85PreprocessorParserNOPFD             = 164
	Cobol85PreprocessorParserNOPROLOG          = 165
	Cobol85PreprocessorParserNORENT            = 166
	Cobol85PreprocessorParserNOS               = 167
	Cobol85PreprocessorParserNOSEP             = 168
	Cobol85PreprocessorParserNOSEPARATE        = 169
	Cobol85PreprocessorParserNOSEQ             = 170
	Cobol85PreprocessorParserNOSOURCE          = 171
	Cobol85PreprocessorParserNOSPIE            = 172
	Cobol85PreprocessorParserNOSQL             = 173
	Cobol85PreprocessorParserNOSQLC            = 174
	Cobol85PreprocessorParserNOSQLCCSID        = 175
	Cobol85PreprocessorParserNOSSR             = 176
	Cobol85PreprocessorParserNOSSRANGE         = 177
	Cobol85PreprocessorParserNOSTDTRUNC        = 178
	Cobol85PreprocessorParserNOSEQUENCE        = 179
	Cobol85PreprocessorParserNOTERM            = 180
	Cobol85PreprocessorParserNOTERMINAL        = 181
	Cobol85PreprocessorParserNOTEST            = 182
	Cobol85PreprocessorParserNOTHREAD          = 183
	Cobol85PreprocessorParserNOTRIG            = 184
	Cobol85PreprocessorParserNOVBREF           = 185
	Cobol85PreprocessorParserNOWD              = 186
	Cobol85PreprocessorParserNOWORD            = 187
	Cobol85PreprocessorParserNOX               = 188
	Cobol85PreprocessorParserNOXREF            = 189
	Cobol85PreprocessorParserNOZWB             = 190
	Cobol85PreprocessorParserNS                = 191
	Cobol85PreprocessorParserNSEQ              = 192
	Cobol85PreprocessorParserNSYMBOL           = 193
	Cobol85PreprocessorParserNUM               = 194
	Cobol85PreprocessorParserNUMBER            = 195
	Cobol85PreprocessorParserNUMPROC           = 196
	Cobol85PreprocessorParserOBJ               = 197
	Cobol85PreprocessorParserOBJECT            = 198
	Cobol85PreprocessorParserOF                = 199
	Cobol85PreprocessorParserOFF               = 200
	Cobol85PreprocessorParserOFFSET            = 201
	Cobol85PreprocessorParserON                = 202
	Cobol85PreprocessorParserOP                = 203
	Cobol85PreprocessorParserOPMARGINS         = 204
	Cobol85PreprocessorParserOPSEQUENCE        = 205
	Cobol85PreprocessorParserOPT               = 206
	Cobol85PreprocessorParserOPTFILE           = 207
	Cobol85PreprocessorParserOPTIMIZE          = 208
	Cobol85PreprocessorParserOPTIONS           = 209
	Cobol85PreprocessorParserOUT               = 210
	Cobol85PreprocessorParserOUTDD             = 211
	Cobol85PreprocessorParserPFD               = 212
	Cobol85PreprocessorParserPPTDBG            = 213
	Cobol85PreprocessorParserPGMN              = 214
	Cobol85PreprocessorParserPGMNAME           = 215
	Cobol85PreprocessorParserPROCESS           = 216
	Cobol85PreprocessorParserPROLOG            = 217
	Cobol85PreprocessorParserQUOTE             = 218
	Cobol85PreprocessorParserRENT              = 219
	Cobol85PreprocessorParserREPLACE           = 220
	Cobol85PreprocessorParserREPLACING         = 221
	Cobol85PreprocessorParserRMODE             = 222
	Cobol85PreprocessorParserRPARENCHAR        = 223
	Cobol85PreprocessorParserSEP               = 224
	Cobol85PreprocessorParserSEPARATE          = 225
	Cobol85PreprocessorParserSEQ               = 226
	Cobol85PreprocessorParserSEQUENCE          = 227
	Cobol85PreprocessorParserSHORT             = 228
	Cobol85PreprocessorParserSIZE              = 229
	Cobol85PreprocessorParserSOURCE            = 230
	Cobol85PreprocessorParserSP                = 231
	Cobol85PreprocessorParserSPACE             = 232
	Cobol85PreprocessorParserSPIE              = 233
	Cobol85PreprocessorParserSQL               = 234
	Cobol85PreprocessorParserSQLC              = 235
	Cobol85PreprocessorParserSQLCCSID          = 236
	Cobol85PreprocessorParserSQLIMS            = 237
	Cobol85PreprocessorParserSKIP1             = 238
	Cobol85PreprocessorParserSKIP2             = 239
	Cobol85PreprocessorParserSKIP3             = 240
	Cobol85PreprocessorParserSS                = 241
	Cobol85PreprocessorParserSSR               = 242
	Cobol85PreprocessorParserSSRANGE           = 243
	Cobol85PreprocessorParserSTD               = 244
	Cobol85PreprocessorParserSUPPRESS          = 245
	Cobol85PreprocessorParserSYSEIB            = 246
	Cobol85PreprocessorParserSZ                = 247
	Cobol85PreprocessorParserTERM              = 248
	Cobol85PreprocessorParserTERMINAL          = 249
	Cobol85PreprocessorParserTEST              = 250
	Cobol85PreprocessorParserTHREAD            = 251
	Cobol85PreprocessorParserTITLE             = 252
	Cobol85PreprocessorParserTRIG              = 253
	Cobol85PreprocessorParserTRUNC             = 254
	Cobol85PreprocessorParserUE                = 255
	Cobol85PreprocessorParserUPPER             = 256
	Cobol85PreprocessorParserVBREF             = 257
	Cobol85PreprocessorParserWD                = 258
	Cobol85PreprocessorParserWORD              = 259
	Cobol85PreprocessorParserXMLPARSE          = 260
	Cobol85PreprocessorParserXMLSS             = 261
	Cobol85PreprocessorParserXOPTS             = 262
	Cobol85PreprocessorParserXP                = 263
	Cobol85PreprocessorParserXREF              = 264
	Cobol85PreprocessorParserYEARWINDOW        = 265
	Cobol85PreprocessorParserYW                = 266
	Cobol85PreprocessorParserZWB               = 267
	Cobol85PreprocessorParserC_CHAR            = 268
	Cobol85PreprocessorParserD_CHAR            = 269
	Cobol85PreprocessorParserE_CHAR            = 270
	Cobol85PreprocessorParserF_CHAR            = 271
	Cobol85PreprocessorParserH_CHAR            = 272
	Cobol85PreprocessorParserI_CHAR            = 273
	Cobol85PreprocessorParserM_CHAR            = 274
	Cobol85PreprocessorParserN_CHAR            = 275
	Cobol85PreprocessorParserQ_CHAR            = 276
	Cobol85PreprocessorParserS_CHAR            = 277
	Cobol85PreprocessorParserU_CHAR            = 278
	Cobol85PreprocessorParserW_CHAR            = 279
	Cobol85PreprocessorParserX_CHAR            = 280
	Cobol85PreprocessorParserCOMMENTTAG        = 281
	Cobol85PreprocessorParserCOMMACHAR         = 282
	Cobol85PreprocessorParserDOT               = 283
	Cobol85PreprocessorParserDOUBLEEQUALCHAR   = 284
	Cobol85PreprocessorParserNONNUMERICLITERAL = 285
	Cobol85PreprocessorParserNUMERICLITERAL    = 286
	Cobol85PreprocessorParserIDENTIFIER        = 287
	Cobol85PreprocessorParserFILENAME          = 288
	Cobol85PreprocessorParserNEWLINE           = 289
	Cobol85PreprocessorParserCOMMENTLINE       = 290
	Cobol85PreprocessorParserWS                = 291
	Cobol85PreprocessorParserTEXT              = 292
)

Cobol85PreprocessorParser tokens.

View Source
const (
	Cobol85PreprocessorParserRULE_startRule           = 0
	Cobol85PreprocessorParserRULE_compilerOptions     = 1
	Cobol85PreprocessorParserRULE_compilerXOpts       = 2
	Cobol85PreprocessorParserRULE_compilerOption      = 3
	Cobol85PreprocessorParserRULE_execCicsStatement   = 4
	Cobol85PreprocessorParserRULE_execSqlStatement    = 5
	Cobol85PreprocessorParserRULE_execSqlImsStatement = 6
	Cobol85PreprocessorParserRULE_copyStatement       = 7
	Cobol85PreprocessorParserRULE_copySource          = 8
	Cobol85PreprocessorParserRULE_copyLibrary         = 9
	Cobol85PreprocessorParserRULE_replacingPhrase     = 10
	Cobol85PreprocessorParserRULE_replaceArea         = 11
	Cobol85PreprocessorParserRULE_replaceByStatement  = 12
	Cobol85PreprocessorParserRULE_replaceOffStatement = 13
	Cobol85PreprocessorParserRULE_replaceClause       = 14
	Cobol85PreprocessorParserRULE_directoryPhrase     = 15
	Cobol85PreprocessorParserRULE_familyPhrase        = 16
	Cobol85PreprocessorParserRULE_replaceable         = 17
	Cobol85PreprocessorParserRULE_replacement         = 18
	Cobol85PreprocessorParserRULE_ejectStatement      = 19
	Cobol85PreprocessorParserRULE_skipStatement       = 20
	Cobol85PreprocessorParserRULE_titleStatement      = 21
	Cobol85PreprocessorParserRULE_pseudoText          = 22
	Cobol85PreprocessorParserRULE_charData            = 23
	Cobol85PreprocessorParserRULE_charDataSql         = 24
	Cobol85PreprocessorParserRULE_charDataLine        = 25
	Cobol85PreprocessorParserRULE_cobolWord           = 26
	Cobol85PreprocessorParserRULE_literal             = 27
	Cobol85PreprocessorParserRULE_filename            = 28
	Cobol85PreprocessorParserRULE_charDataKeyword     = 29
)

Cobol85PreprocessorParser rules.

Variables

This section is empty.

Functions

This section is empty.

Types

type BaseCobol85PreprocessorListener

type BaseCobol85PreprocessorListener struct{}

BaseCobol85PreprocessorListener is a complete listener for a parse tree produced by Cobol85PreprocessorParser.

func (*BaseCobol85PreprocessorListener) EnterCharData

func (s *BaseCobol85PreprocessorListener) EnterCharData(ctx *CharDataContext)

EnterCharData is called when production charData is entered.

func (*BaseCobol85PreprocessorListener) EnterCharDataKeyword

func (s *BaseCobol85PreprocessorListener) EnterCharDataKeyword(ctx *CharDataKeywordContext)

EnterCharDataKeyword is called when production charDataKeyword is entered.

func (*BaseCobol85PreprocessorListener) EnterCharDataLine

func (s *BaseCobol85PreprocessorListener) EnterCharDataLine(ctx *CharDataLineContext)

EnterCharDataLine is called when production charDataLine is entered.

func (*BaseCobol85PreprocessorListener) EnterCharDataSql

func (s *BaseCobol85PreprocessorListener) EnterCharDataSql(ctx *CharDataSqlContext)

EnterCharDataSql is called when production charDataSql is entered.

func (*BaseCobol85PreprocessorListener) EnterCobolWord

func (s *BaseCobol85PreprocessorListener) EnterCobolWord(ctx *CobolWordContext)

EnterCobolWord is called when production cobolWord is entered.

func (*BaseCobol85PreprocessorListener) EnterCompilerOption

func (s *BaseCobol85PreprocessorListener) EnterCompilerOption(ctx *CompilerOptionContext)

EnterCompilerOption is called when production compilerOption is entered.

func (*BaseCobol85PreprocessorListener) EnterCompilerOptions

func (s *BaseCobol85PreprocessorListener) EnterCompilerOptions(ctx *CompilerOptionsContext)

EnterCompilerOptions is called when production compilerOptions is entered.

func (*BaseCobol85PreprocessorListener) EnterCompilerXOpts

func (s *BaseCobol85PreprocessorListener) EnterCompilerXOpts(ctx *CompilerXOptsContext)

EnterCompilerXOpts is called when production compilerXOpts is entered.

func (*BaseCobol85PreprocessorListener) EnterCopyLibrary

func (s *BaseCobol85PreprocessorListener) EnterCopyLibrary(ctx *CopyLibraryContext)

EnterCopyLibrary is called when production copyLibrary is entered.

func (*BaseCobol85PreprocessorListener) EnterCopySource

func (s *BaseCobol85PreprocessorListener) EnterCopySource(ctx *CopySourceContext)

EnterCopySource is called when production copySource is entered.

func (*BaseCobol85PreprocessorListener) EnterCopyStatement

func (s *BaseCobol85PreprocessorListener) EnterCopyStatement(ctx *CopyStatementContext)

EnterCopyStatement is called when production copyStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterDirectoryPhrase

func (s *BaseCobol85PreprocessorListener) EnterDirectoryPhrase(ctx *DirectoryPhraseContext)

EnterDirectoryPhrase is called when production directoryPhrase is entered.

func (*BaseCobol85PreprocessorListener) EnterEjectStatement

func (s *BaseCobol85PreprocessorListener) EnterEjectStatement(ctx *EjectStatementContext)

EnterEjectStatement is called when production ejectStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterEveryRule

EnterEveryRule is called when any rule is entered.

func (*BaseCobol85PreprocessorListener) EnterExecCicsStatement

func (s *BaseCobol85PreprocessorListener) EnterExecCicsStatement(ctx *ExecCicsStatementContext)

EnterExecCicsStatement is called when production execCicsStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterExecSqlImsStatement

func (s *BaseCobol85PreprocessorListener) EnterExecSqlImsStatement(ctx *ExecSqlImsStatementContext)

EnterExecSqlImsStatement is called when production execSqlImsStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterExecSqlStatement

func (s *BaseCobol85PreprocessorListener) EnterExecSqlStatement(ctx *ExecSqlStatementContext)

EnterExecSqlStatement is called when production execSqlStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterFamilyPhrase

func (s *BaseCobol85PreprocessorListener) EnterFamilyPhrase(ctx *FamilyPhraseContext)

EnterFamilyPhrase is called when production familyPhrase is entered.

func (*BaseCobol85PreprocessorListener) EnterFilename

func (s *BaseCobol85PreprocessorListener) EnterFilename(ctx *FilenameContext)

EnterFilename is called when production filename is entered.

func (*BaseCobol85PreprocessorListener) EnterLiteral

func (s *BaseCobol85PreprocessorListener) EnterLiteral(ctx *LiteralContext)

EnterLiteral is called when production literal is entered.

func (*BaseCobol85PreprocessorListener) EnterPseudoText

func (s *BaseCobol85PreprocessorListener) EnterPseudoText(ctx *PseudoTextContext)

EnterPseudoText is called when production pseudoText is entered.

func (*BaseCobol85PreprocessorListener) EnterReplaceArea

func (s *BaseCobol85PreprocessorListener) EnterReplaceArea(ctx *ReplaceAreaContext)

EnterReplaceArea is called when production replaceArea is entered.

func (*BaseCobol85PreprocessorListener) EnterReplaceByStatement

func (s *BaseCobol85PreprocessorListener) EnterReplaceByStatement(ctx *ReplaceByStatementContext)

EnterReplaceByStatement is called when production replaceByStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterReplaceClause

func (s *BaseCobol85PreprocessorListener) EnterReplaceClause(ctx *ReplaceClauseContext)

EnterReplaceClause is called when production replaceClause is entered.

func (*BaseCobol85PreprocessorListener) EnterReplaceOffStatement

func (s *BaseCobol85PreprocessorListener) EnterReplaceOffStatement(ctx *ReplaceOffStatementContext)

EnterReplaceOffStatement is called when production replaceOffStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterReplaceable

func (s *BaseCobol85PreprocessorListener) EnterReplaceable(ctx *ReplaceableContext)

EnterReplaceable is called when production replaceable is entered.

func (*BaseCobol85PreprocessorListener) EnterReplacement

func (s *BaseCobol85PreprocessorListener) EnterReplacement(ctx *ReplacementContext)

EnterReplacement is called when production replacement is entered.

func (*BaseCobol85PreprocessorListener) EnterReplacingPhrase

func (s *BaseCobol85PreprocessorListener) EnterReplacingPhrase(ctx *ReplacingPhraseContext)

EnterReplacingPhrase is called when production replacingPhrase is entered.

func (*BaseCobol85PreprocessorListener) EnterSkipStatement

func (s *BaseCobol85PreprocessorListener) EnterSkipStatement(ctx *SkipStatementContext)

EnterSkipStatement is called when production skipStatement is entered.

func (*BaseCobol85PreprocessorListener) EnterStartRule

func (s *BaseCobol85PreprocessorListener) EnterStartRule(ctx *StartRuleContext)

EnterStartRule is called when production startRule is entered.

func (*BaseCobol85PreprocessorListener) EnterTitleStatement

func (s *BaseCobol85PreprocessorListener) EnterTitleStatement(ctx *TitleStatementContext)

EnterTitleStatement is called when production titleStatement is entered.

func (*BaseCobol85PreprocessorListener) ExitCharData

func (s *BaseCobol85PreprocessorListener) ExitCharData(ctx *CharDataContext)

ExitCharData is called when production charData is exited.

func (*BaseCobol85PreprocessorListener) ExitCharDataKeyword

func (s *BaseCobol85PreprocessorListener) ExitCharDataKeyword(ctx *CharDataKeywordContext)

ExitCharDataKeyword is called when production charDataKeyword is exited.

func (*BaseCobol85PreprocessorListener) ExitCharDataLine

func (s *BaseCobol85PreprocessorListener) ExitCharDataLine(ctx *CharDataLineContext)

ExitCharDataLine is called when production charDataLine is exited.

func (*BaseCobol85PreprocessorListener) ExitCharDataSql

func (s *BaseCobol85PreprocessorListener) ExitCharDataSql(ctx *CharDataSqlContext)

ExitCharDataSql is called when production charDataSql is exited.

func (*BaseCobol85PreprocessorListener) ExitCobolWord

func (s *BaseCobol85PreprocessorListener) ExitCobolWord(ctx *CobolWordContext)

ExitCobolWord is called when production cobolWord is exited.

func (*BaseCobol85PreprocessorListener) ExitCompilerOption

func (s *BaseCobol85PreprocessorListener) ExitCompilerOption(ctx *CompilerOptionContext)

ExitCompilerOption is called when production compilerOption is exited.

func (*BaseCobol85PreprocessorListener) ExitCompilerOptions

func (s *BaseCobol85PreprocessorListener) ExitCompilerOptions(ctx *CompilerOptionsContext)

ExitCompilerOptions is called when production compilerOptions is exited.

func (*BaseCobol85PreprocessorListener) ExitCompilerXOpts

func (s *BaseCobol85PreprocessorListener) ExitCompilerXOpts(ctx *CompilerXOptsContext)

ExitCompilerXOpts is called when production compilerXOpts is exited.

func (*BaseCobol85PreprocessorListener) ExitCopyLibrary

func (s *BaseCobol85PreprocessorListener) ExitCopyLibrary(ctx *CopyLibraryContext)

ExitCopyLibrary is called when production copyLibrary is exited.

func (*BaseCobol85PreprocessorListener) ExitCopySource

func (s *BaseCobol85PreprocessorListener) ExitCopySource(ctx *CopySourceContext)

ExitCopySource is called when production copySource is exited.

func (*BaseCobol85PreprocessorListener) ExitCopyStatement

func (s *BaseCobol85PreprocessorListener) ExitCopyStatement(ctx *CopyStatementContext)

ExitCopyStatement is called when production copyStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitDirectoryPhrase

func (s *BaseCobol85PreprocessorListener) ExitDirectoryPhrase(ctx *DirectoryPhraseContext)

ExitDirectoryPhrase is called when production directoryPhrase is exited.

func (*BaseCobol85PreprocessorListener) ExitEjectStatement

func (s *BaseCobol85PreprocessorListener) ExitEjectStatement(ctx *EjectStatementContext)

ExitEjectStatement is called when production ejectStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitEveryRule

ExitEveryRule is called when any rule is exited.

func (*BaseCobol85PreprocessorListener) ExitExecCicsStatement

func (s *BaseCobol85PreprocessorListener) ExitExecCicsStatement(ctx *ExecCicsStatementContext)

ExitExecCicsStatement is called when production execCicsStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitExecSqlImsStatement

func (s *BaseCobol85PreprocessorListener) ExitExecSqlImsStatement(ctx *ExecSqlImsStatementContext)

ExitExecSqlImsStatement is called when production execSqlImsStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitExecSqlStatement

func (s *BaseCobol85PreprocessorListener) ExitExecSqlStatement(ctx *ExecSqlStatementContext)

ExitExecSqlStatement is called when production execSqlStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitFamilyPhrase

func (s *BaseCobol85PreprocessorListener) ExitFamilyPhrase(ctx *FamilyPhraseContext)

ExitFamilyPhrase is called when production familyPhrase is exited.

func (*BaseCobol85PreprocessorListener) ExitFilename

func (s *BaseCobol85PreprocessorListener) ExitFilename(ctx *FilenameContext)

ExitFilename is called when production filename is exited.

func (*BaseCobol85PreprocessorListener) ExitLiteral

func (s *BaseCobol85PreprocessorListener) ExitLiteral(ctx *LiteralContext)

ExitLiteral is called when production literal is exited.

func (*BaseCobol85PreprocessorListener) ExitPseudoText

func (s *BaseCobol85PreprocessorListener) ExitPseudoText(ctx *PseudoTextContext)

ExitPseudoText is called when production pseudoText is exited.

func (*BaseCobol85PreprocessorListener) ExitReplaceArea

func (s *BaseCobol85PreprocessorListener) ExitReplaceArea(ctx *ReplaceAreaContext)

ExitReplaceArea is called when production replaceArea is exited.

func (*BaseCobol85PreprocessorListener) ExitReplaceByStatement

func (s *BaseCobol85PreprocessorListener) ExitReplaceByStatement(ctx *ReplaceByStatementContext)

ExitReplaceByStatement is called when production replaceByStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitReplaceClause

func (s *BaseCobol85PreprocessorListener) ExitReplaceClause(ctx *ReplaceClauseContext)

ExitReplaceClause is called when production replaceClause is exited.

func (*BaseCobol85PreprocessorListener) ExitReplaceOffStatement

func (s *BaseCobol85PreprocessorListener) ExitReplaceOffStatement(ctx *ReplaceOffStatementContext)

ExitReplaceOffStatement is called when production replaceOffStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitReplaceable

func (s *BaseCobol85PreprocessorListener) ExitReplaceable(ctx *ReplaceableContext)

ExitReplaceable is called when production replaceable is exited.

func (*BaseCobol85PreprocessorListener) ExitReplacement

func (s *BaseCobol85PreprocessorListener) ExitReplacement(ctx *ReplacementContext)

ExitReplacement is called when production replacement is exited.

func (*BaseCobol85PreprocessorListener) ExitReplacingPhrase

func (s *BaseCobol85PreprocessorListener) ExitReplacingPhrase(ctx *ReplacingPhraseContext)

ExitReplacingPhrase is called when production replacingPhrase is exited.

func (*BaseCobol85PreprocessorListener) ExitSkipStatement

func (s *BaseCobol85PreprocessorListener) ExitSkipStatement(ctx *SkipStatementContext)

ExitSkipStatement is called when production skipStatement is exited.

func (*BaseCobol85PreprocessorListener) ExitStartRule

func (s *BaseCobol85PreprocessorListener) ExitStartRule(ctx *StartRuleContext)

ExitStartRule is called when production startRule is exited.

func (*BaseCobol85PreprocessorListener) ExitTitleStatement

func (s *BaseCobol85PreprocessorListener) ExitTitleStatement(ctx *TitleStatementContext)

ExitTitleStatement is called when production titleStatement is exited.

func (*BaseCobol85PreprocessorListener) VisitErrorNode

func (s *BaseCobol85PreprocessorListener) VisitErrorNode(node antlr.ErrorNode)

VisitErrorNode is called when an error node is visited.

func (*BaseCobol85PreprocessorListener) VisitTerminal

func (s *BaseCobol85PreprocessorListener) VisitTerminal(node antlr.TerminalNode)

VisitTerminal is called when a terminal node is visited.

type CharDataContext

type CharDataContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCharDataContext

func NewCharDataContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CharDataContext

func NewEmptyCharDataContext

func NewEmptyCharDataContext() *CharDataContext

func (*CharDataContext) AllCharDataLine

func (s *CharDataContext) AllCharDataLine() []ICharDataLineContext

func (*CharDataContext) AllNEWLINE

func (s *CharDataContext) AllNEWLINE() []antlr.TerminalNode

func (*CharDataContext) CharDataLine

func (s *CharDataContext) CharDataLine(i int) ICharDataLineContext

func (*CharDataContext) EnterRule

func (s *CharDataContext) EnterRule(listener antlr.ParseTreeListener)

func (*CharDataContext) ExitRule

func (s *CharDataContext) ExitRule(listener antlr.ParseTreeListener)

func (*CharDataContext) GetParser

func (s *CharDataContext) GetParser() antlr.Parser

func (*CharDataContext) GetRuleContext

func (s *CharDataContext) GetRuleContext() antlr.RuleContext

func (*CharDataContext) IsCharDataContext

func (*CharDataContext) IsCharDataContext()

func (*CharDataContext) NEWLINE

func (s *CharDataContext) NEWLINE(i int) antlr.TerminalNode

func (*CharDataContext) ToStringTree

func (s *CharDataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type CharDataKeywordContext

type CharDataKeywordContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCharDataKeywordContext

func NewCharDataKeywordContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CharDataKeywordContext

func NewEmptyCharDataKeywordContext

func NewEmptyCharDataKeywordContext() *CharDataKeywordContext

func (*CharDataKeywordContext) ADATA

func (*CharDataKeywordContext) ADV

func (*CharDataKeywordContext) ALIAS

func (*CharDataKeywordContext) ANSI

func (*CharDataKeywordContext) ANY

func (*CharDataKeywordContext) APOST

func (*CharDataKeywordContext) AR

func (*CharDataKeywordContext) ARITH

func (*CharDataKeywordContext) AUTO

func (*CharDataKeywordContext) AWO

func (*CharDataKeywordContext) BIN

func (*CharDataKeywordContext) BLOCK0

func (*CharDataKeywordContext) BUF

func (*CharDataKeywordContext) BUFSIZE

func (*CharDataKeywordContext) BY

func (*CharDataKeywordContext) CBL

func (*CharDataKeywordContext) CBLCARD

func (*CharDataKeywordContext) CO

func (*CharDataKeywordContext) COBOL2

func (*CharDataKeywordContext) COBOL3

func (*CharDataKeywordContext) CODEPAGE

func (*CharDataKeywordContext) COMMACHAR

func (s *CharDataKeywordContext) COMMACHAR() antlr.TerminalNode

func (*CharDataKeywordContext) COMPAT

func (*CharDataKeywordContext) COMPILE

func (*CharDataKeywordContext) CP

func (*CharDataKeywordContext) CPP

func (*CharDataKeywordContext) CPSM

func (*CharDataKeywordContext) CS

func (*CharDataKeywordContext) CURR

func (*CharDataKeywordContext) CURRENCY

func (*CharDataKeywordContext) C_CHAR

func (*CharDataKeywordContext) DATA

func (*CharDataKeywordContext) DATEPROC

func (*CharDataKeywordContext) DBCS

func (*CharDataKeywordContext) DD

func (*CharDataKeywordContext) DEBUG

func (*CharDataKeywordContext) DECK

func (*CharDataKeywordContext) DIAGTRUNC

func (s *CharDataKeywordContext) DIAGTRUNC() antlr.TerminalNode

func (*CharDataKeywordContext) DLI

func (*CharDataKeywordContext) DLL

func (*CharDataKeywordContext) DP

func (*CharDataKeywordContext) DTR

func (*CharDataKeywordContext) DU

func (*CharDataKeywordContext) DUMP

func (*CharDataKeywordContext) DYN

func (*CharDataKeywordContext) DYNAM

func (*CharDataKeywordContext) D_CHAR

func (*CharDataKeywordContext) EDF

func (*CharDataKeywordContext) EJECT

func (*CharDataKeywordContext) EJPD

func (*CharDataKeywordContext) EN

func (*CharDataKeywordContext) ENGLISH

func (*CharDataKeywordContext) EPILOG

func (*CharDataKeywordContext) EXCI

func (*CharDataKeywordContext) EXIT

func (*CharDataKeywordContext) EXP

func (*CharDataKeywordContext) EXPORTALL

func (s *CharDataKeywordContext) EXPORTALL() antlr.TerminalNode

func (*CharDataKeywordContext) EXTEND

func (*CharDataKeywordContext) E_CHAR

func (*CharDataKeywordContext) EnterRule

func (s *CharDataKeywordContext) EnterRule(listener antlr.ParseTreeListener)

func (*CharDataKeywordContext) ExitRule

func (s *CharDataKeywordContext) ExitRule(listener antlr.ParseTreeListener)

func (*CharDataKeywordContext) FASTSRT

func (*CharDataKeywordContext) FLAG

func (*CharDataKeywordContext) FLAGSTD

func (*CharDataKeywordContext) FSRT

func (*CharDataKeywordContext) FULL

func (*CharDataKeywordContext) F_CHAR

func (*CharDataKeywordContext) GDS

func (*CharDataKeywordContext) GRAPHIC

func (*CharDataKeywordContext) GetParser

func (s *CharDataKeywordContext) GetParser() antlr.Parser

func (*CharDataKeywordContext) GetRuleContext

func (s *CharDataKeywordContext) GetRuleContext() antlr.RuleContext

func (*CharDataKeywordContext) HOOK

func (*CharDataKeywordContext) H_CHAR

func (*CharDataKeywordContext) IN

func (*CharDataKeywordContext) INTDATE

func (*CharDataKeywordContext) I_CHAR

func (*CharDataKeywordContext) IsCharDataKeywordContext

func (*CharDataKeywordContext) IsCharDataKeywordContext()

func (*CharDataKeywordContext) JA

func (*CharDataKeywordContext) JP

func (*CharDataKeywordContext) KA

func (*CharDataKeywordContext) LANG

func (*CharDataKeywordContext) LANGUAGE

func (*CharDataKeywordContext) LC

func (*CharDataKeywordContext) LENGTH

func (*CharDataKeywordContext) LIB

func (*CharDataKeywordContext) LILIAN

func (*CharDataKeywordContext) LIN

func (*CharDataKeywordContext) LINECOUNT

func (s *CharDataKeywordContext) LINECOUNT() antlr.TerminalNode

func (*CharDataKeywordContext) LINKAGE

func (*CharDataKeywordContext) LIST

func (*CharDataKeywordContext) LM

func (*CharDataKeywordContext) LONGMIXED

func (s *CharDataKeywordContext) LONGMIXED() antlr.TerminalNode

func (*CharDataKeywordContext) LONGUPPER

func (s *CharDataKeywordContext) LONGUPPER() antlr.TerminalNode

func (*CharDataKeywordContext) LU

func (*CharDataKeywordContext) MAP

func (*CharDataKeywordContext) MARGINS

func (*CharDataKeywordContext) MAX

func (*CharDataKeywordContext) MD

func (*CharDataKeywordContext) MDECK

func (*CharDataKeywordContext) MIG

func (*CharDataKeywordContext) MIXED

func (*CharDataKeywordContext) M_CHAR

func (*CharDataKeywordContext) NAME

func (*CharDataKeywordContext) NAT

func (*CharDataKeywordContext) NATIONAL

func (*CharDataKeywordContext) NATLANG

func (*CharDataKeywordContext) NN

func (*CharDataKeywordContext) NO

func (*CharDataKeywordContext) NOADATA

func (*CharDataKeywordContext) NOADV

func (*CharDataKeywordContext) NOALIAS

func (*CharDataKeywordContext) NOAWO

func (*CharDataKeywordContext) NOBLOCK0

func (*CharDataKeywordContext) NOC

func (*CharDataKeywordContext) NOCBLCARD

func (s *CharDataKeywordContext) NOCBLCARD() antlr.TerminalNode

func (*CharDataKeywordContext) NOCICS

func (*CharDataKeywordContext) NOCMPR2

func (*CharDataKeywordContext) NOCOMPILE

func (s *CharDataKeywordContext) NOCOMPILE() antlr.TerminalNode

func (*CharDataKeywordContext) NOCPSM

func (*CharDataKeywordContext) NOCURR

func (*CharDataKeywordContext) NOCURRENCY

func (s *CharDataKeywordContext) NOCURRENCY() antlr.TerminalNode

func (*CharDataKeywordContext) NOD

func (*CharDataKeywordContext) NODATEPROC

func (s *CharDataKeywordContext) NODATEPROC() antlr.TerminalNode

func (*CharDataKeywordContext) NODBCS

func (*CharDataKeywordContext) NODE

func (*CharDataKeywordContext) NODEBUG

func (*CharDataKeywordContext) NODECK

func (*CharDataKeywordContext) NODIAGTRUNC

func (s *CharDataKeywordContext) NODIAGTRUNC() antlr.TerminalNode

func (*CharDataKeywordContext) NODLL

func (*CharDataKeywordContext) NODP

func (*CharDataKeywordContext) NODTR

func (*CharDataKeywordContext) NODU

func (*CharDataKeywordContext) NODUMP

func (*CharDataKeywordContext) NODYN

func (*CharDataKeywordContext) NODYNAM

func (*CharDataKeywordContext) NOEDF

func (*CharDataKeywordContext) NOEJPD

func (*CharDataKeywordContext) NOEPILOG

func (*CharDataKeywordContext) NOEXIT

func (*CharDataKeywordContext) NOEXP

func (*CharDataKeywordContext) NOEXPORTALL

func (s *CharDataKeywordContext) NOEXPORTALL() antlr.TerminalNode

func (*CharDataKeywordContext) NOF

func (*CharDataKeywordContext) NOFASTSRT

func (s *CharDataKeywordContext) NOFASTSRT() antlr.TerminalNode

func (*CharDataKeywordContext) NOFEPI

func (*CharDataKeywordContext) NOFLAG

func (*CharDataKeywordContext) NOFLAGMIG

func (s *CharDataKeywordContext) NOFLAGMIG() antlr.TerminalNode

func (*CharDataKeywordContext) NOFLAGSTD

func (s *CharDataKeywordContext) NOFLAGSTD() antlr.TerminalNode

func (*CharDataKeywordContext) NOFSRT

func (*CharDataKeywordContext) NOGRAPHIC

func (s *CharDataKeywordContext) NOGRAPHIC() antlr.TerminalNode

func (*CharDataKeywordContext) NOHOOK

func (*CharDataKeywordContext) NOLENGTH

func (*CharDataKeywordContext) NOLIB

func (*CharDataKeywordContext) NOLINKAGE

func (s *CharDataKeywordContext) NOLINKAGE() antlr.TerminalNode

func (*CharDataKeywordContext) NOLIST

func (*CharDataKeywordContext) NOMAP

func (*CharDataKeywordContext) NOMD

func (*CharDataKeywordContext) NOMDECK

func (*CharDataKeywordContext) NONAME

func (*CharDataKeywordContext) NONUM

func (*CharDataKeywordContext) NONUMBER

func (*CharDataKeywordContext) NOOBJ

func (*CharDataKeywordContext) NOOBJECT

func (*CharDataKeywordContext) NOOFF

func (*CharDataKeywordContext) NOOFFSET

func (*CharDataKeywordContext) NOOPSEQUENCE

func (s *CharDataKeywordContext) NOOPSEQUENCE() antlr.TerminalNode

func (*CharDataKeywordContext) NOOPT

func (*CharDataKeywordContext) NOOPTIMIZE

func (s *CharDataKeywordContext) NOOPTIMIZE() antlr.TerminalNode

func (*CharDataKeywordContext) NOOPTIONS

func (s *CharDataKeywordContext) NOOPTIONS() antlr.TerminalNode

func (*CharDataKeywordContext) NOP

func (*CharDataKeywordContext) NOPFD

func (*CharDataKeywordContext) NOPROLOG

func (*CharDataKeywordContext) NORENT

func (*CharDataKeywordContext) NOS

func (*CharDataKeywordContext) NOSEP

func (*CharDataKeywordContext) NOSEPARATE

func (s *CharDataKeywordContext) NOSEPARATE() antlr.TerminalNode

func (*CharDataKeywordContext) NOSEQ

func (*CharDataKeywordContext) NOSEQUENCE

func (s *CharDataKeywordContext) NOSEQUENCE() antlr.TerminalNode

func (*CharDataKeywordContext) NOSOURCE

func (*CharDataKeywordContext) NOSPIE

func (*CharDataKeywordContext) NOSQL

func (*CharDataKeywordContext) NOSQLC

func (*CharDataKeywordContext) NOSQLCCSID

func (s *CharDataKeywordContext) NOSQLCCSID() antlr.TerminalNode

func (*CharDataKeywordContext) NOSSR

func (*CharDataKeywordContext) NOSSRANGE

func (s *CharDataKeywordContext) NOSSRANGE() antlr.TerminalNode

func (*CharDataKeywordContext) NOSTDTRUNC

func (s *CharDataKeywordContext) NOSTDTRUNC() antlr.TerminalNode

func (*CharDataKeywordContext) NOTERM

func (*CharDataKeywordContext) NOTERMINAL

func (s *CharDataKeywordContext) NOTERMINAL() antlr.TerminalNode

func (*CharDataKeywordContext) NOTEST

func (*CharDataKeywordContext) NOTHREAD

func (*CharDataKeywordContext) NOTRIG

func (*CharDataKeywordContext) NOVBREF

func (*CharDataKeywordContext) NOWORD

func (*CharDataKeywordContext) NOX

func (*CharDataKeywordContext) NOXREF

func (*CharDataKeywordContext) NOZWB

func (*CharDataKeywordContext) NS

func (*CharDataKeywordContext) NSEQ

func (*CharDataKeywordContext) NSYMBOL

func (*CharDataKeywordContext) NUM

func (*CharDataKeywordContext) NUMBER

func (*CharDataKeywordContext) NUMPROC

func (*CharDataKeywordContext) N_CHAR

func (*CharDataKeywordContext) OBJ

func (*CharDataKeywordContext) OBJECT

func (*CharDataKeywordContext) OF

func (*CharDataKeywordContext) OFF

func (*CharDataKeywordContext) OFFSET

func (*CharDataKeywordContext) ON

func (*CharDataKeywordContext) OP

func (*CharDataKeywordContext) OPMARGINS

func (s *CharDataKeywordContext) OPMARGINS() antlr.TerminalNode

func (*CharDataKeywordContext) OPSEQUENCE

func (s *CharDataKeywordContext) OPSEQUENCE() antlr.TerminalNode

func (*CharDataKeywordContext) OPT

func (*CharDataKeywordContext) OPTFILE

func (*CharDataKeywordContext) OPTIMIZE

func (*CharDataKeywordContext) OPTIONS

func (*CharDataKeywordContext) OUT

func (*CharDataKeywordContext) OUTDD

func (*CharDataKeywordContext) PFD

func (*CharDataKeywordContext) PGMN

func (*CharDataKeywordContext) PGMNAME

func (*CharDataKeywordContext) PPTDBG

func (*CharDataKeywordContext) PROCESS

func (*CharDataKeywordContext) PROLOG

func (*CharDataKeywordContext) QUOTE

func (*CharDataKeywordContext) Q_CHAR

func (*CharDataKeywordContext) RENT

func (*CharDataKeywordContext) REPLACING

func (s *CharDataKeywordContext) REPLACING() antlr.TerminalNode

func (*CharDataKeywordContext) RMODE

func (*CharDataKeywordContext) SEP

func (*CharDataKeywordContext) SEPARATE

func (*CharDataKeywordContext) SEQ

func (*CharDataKeywordContext) SEQUENCE

func (*CharDataKeywordContext) SHORT

func (*CharDataKeywordContext) SIZE

func (*CharDataKeywordContext) SOURCE

func (*CharDataKeywordContext) SP

func (*CharDataKeywordContext) SPACE

func (*CharDataKeywordContext) SPIE

func (*CharDataKeywordContext) SQL

func (*CharDataKeywordContext) SQLC

func (*CharDataKeywordContext) SQLCCSID

func (*CharDataKeywordContext) SS

func (*CharDataKeywordContext) SSR

func (*CharDataKeywordContext) SSRANGE

func (*CharDataKeywordContext) STD

func (*CharDataKeywordContext) SYSEIB

func (*CharDataKeywordContext) SZ

func (*CharDataKeywordContext) S_CHAR

func (*CharDataKeywordContext) TERM

func (*CharDataKeywordContext) TERMINAL

func (*CharDataKeywordContext) TEST

func (*CharDataKeywordContext) THREAD

func (*CharDataKeywordContext) TITLE

func (*CharDataKeywordContext) TRIG

func (*CharDataKeywordContext) TRUNC

func (*CharDataKeywordContext) ToStringTree

func (s *CharDataKeywordContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*CharDataKeywordContext) UE

func (*CharDataKeywordContext) UPPER

func (*CharDataKeywordContext) U_CHAR

func (*CharDataKeywordContext) VBREF

func (*CharDataKeywordContext) WD

func (*CharDataKeywordContext) W_CHAR

func (*CharDataKeywordContext) XMLPARSE

func (*CharDataKeywordContext) XMLSS

func (*CharDataKeywordContext) XOPTS

func (*CharDataKeywordContext) XREF

func (*CharDataKeywordContext) X_CHAR

func (*CharDataKeywordContext) YEARWINDOW

func (s *CharDataKeywordContext) YEARWINDOW() antlr.TerminalNode

func (*CharDataKeywordContext) YW

func (*CharDataKeywordContext) ZWB

type CharDataLineContext

type CharDataLineContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCharDataLineContext

func NewCharDataLineContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CharDataLineContext

func NewEmptyCharDataLineContext

func NewEmptyCharDataLineContext() *CharDataLineContext

func (*CharDataLineContext) AllCobolWord

func (s *CharDataLineContext) AllCobolWord() []ICobolWordContext

func (*CharDataLineContext) AllDOT

func (s *CharDataLineContext) AllDOT() []antlr.TerminalNode

func (*CharDataLineContext) AllFilename

func (s *CharDataLineContext) AllFilename() []IFilenameContext

func (*CharDataLineContext) AllLPARENCHAR

func (s *CharDataLineContext) AllLPARENCHAR() []antlr.TerminalNode

func (*CharDataLineContext) AllLiteral

func (s *CharDataLineContext) AllLiteral() []ILiteralContext

func (*CharDataLineContext) AllRPARENCHAR

func (s *CharDataLineContext) AllRPARENCHAR() []antlr.TerminalNode

func (*CharDataLineContext) AllTEXT

func (s *CharDataLineContext) AllTEXT() []antlr.TerminalNode

func (*CharDataLineContext) CobolWord

func (s *CharDataLineContext) CobolWord(i int) ICobolWordContext

func (*CharDataLineContext) DOT

func (*CharDataLineContext) EnterRule

func (s *CharDataLineContext) EnterRule(listener antlr.ParseTreeListener)

func (*CharDataLineContext) ExitRule

func (s *CharDataLineContext) ExitRule(listener antlr.ParseTreeListener)

func (*CharDataLineContext) Filename

func (s *CharDataLineContext) Filename(i int) IFilenameContext

func (*CharDataLineContext) GetParser

func (s *CharDataLineContext) GetParser() antlr.Parser

func (*CharDataLineContext) GetRuleContext

func (s *CharDataLineContext) GetRuleContext() antlr.RuleContext

func (*CharDataLineContext) IsCharDataLineContext

func (*CharDataLineContext) IsCharDataLineContext()

func (*CharDataLineContext) LPARENCHAR

func (s *CharDataLineContext) LPARENCHAR(i int) antlr.TerminalNode

func (*CharDataLineContext) Literal

func (s *CharDataLineContext) Literal(i int) ILiteralContext

func (*CharDataLineContext) RPARENCHAR

func (s *CharDataLineContext) RPARENCHAR(i int) antlr.TerminalNode

func (*CharDataLineContext) TEXT

func (*CharDataLineContext) ToStringTree

func (s *CharDataLineContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type CharDataSqlContext

type CharDataSqlContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCharDataSqlContext

func NewCharDataSqlContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CharDataSqlContext

func NewEmptyCharDataSqlContext

func NewEmptyCharDataSqlContext() *CharDataSqlContext

func (*CharDataSqlContext) AllCOPY

func (s *CharDataSqlContext) AllCOPY() []antlr.TerminalNode

func (*CharDataSqlContext) AllCharDataLine

func (s *CharDataSqlContext) AllCharDataLine() []ICharDataLineContext

func (*CharDataSqlContext) AllNEWLINE

func (s *CharDataSqlContext) AllNEWLINE() []antlr.TerminalNode

func (*CharDataSqlContext) AllREPLACE

func (s *CharDataSqlContext) AllREPLACE() []antlr.TerminalNode

func (*CharDataSqlContext) COPY

func (*CharDataSqlContext) CharDataLine

func (s *CharDataSqlContext) CharDataLine(i int) ICharDataLineContext

func (*CharDataSqlContext) EnterRule

func (s *CharDataSqlContext) EnterRule(listener antlr.ParseTreeListener)

func (*CharDataSqlContext) ExitRule

func (s *CharDataSqlContext) ExitRule(listener antlr.ParseTreeListener)

func (*CharDataSqlContext) GetParser

func (s *CharDataSqlContext) GetParser() antlr.Parser

func (*CharDataSqlContext) GetRuleContext

func (s *CharDataSqlContext) GetRuleContext() antlr.RuleContext

func (*CharDataSqlContext) IsCharDataSqlContext

func (*CharDataSqlContext) IsCharDataSqlContext()

func (*CharDataSqlContext) NEWLINE

func (s *CharDataSqlContext) NEWLINE(i int) antlr.TerminalNode

func (*CharDataSqlContext) REPLACE

func (s *CharDataSqlContext) REPLACE(i int) antlr.TerminalNode

func (*CharDataSqlContext) ToStringTree

func (s *CharDataSqlContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type Cobol85PreprocessorLexer

type Cobol85PreprocessorLexer struct {
	*antlr.BaseLexer
	// contains filtered or unexported fields
}

func NewCobol85PreprocessorLexer

func NewCobol85PreprocessorLexer(input antlr.CharStream) *Cobol85PreprocessorLexer

type Cobol85PreprocessorListener

type Cobol85PreprocessorListener interface {
	antlr.ParseTreeListener

	// EnterStartRule is called when entering the startRule production.
	EnterStartRule(c *StartRuleContext)

	// EnterCompilerOptions is called when entering the compilerOptions production.
	EnterCompilerOptions(c *CompilerOptionsContext)

	// EnterCompilerXOpts is called when entering the compilerXOpts production.
	EnterCompilerXOpts(c *CompilerXOptsContext)

	// EnterCompilerOption is called when entering the compilerOption production.
	EnterCompilerOption(c *CompilerOptionContext)

	// EnterExecCicsStatement is called when entering the execCicsStatement production.
	EnterExecCicsStatement(c *ExecCicsStatementContext)

	// EnterExecSqlStatement is called when entering the execSqlStatement production.
	EnterExecSqlStatement(c *ExecSqlStatementContext)

	// EnterExecSqlImsStatement is called when entering the execSqlImsStatement production.
	EnterExecSqlImsStatement(c *ExecSqlImsStatementContext)

	// EnterCopyStatement is called when entering the copyStatement production.
	EnterCopyStatement(c *CopyStatementContext)

	// EnterCopySource is called when entering the copySource production.
	EnterCopySource(c *CopySourceContext)

	// EnterCopyLibrary is called when entering the copyLibrary production.
	EnterCopyLibrary(c *CopyLibraryContext)

	// EnterReplacingPhrase is called when entering the replacingPhrase production.
	EnterReplacingPhrase(c *ReplacingPhraseContext)

	// EnterReplaceArea is called when entering the replaceArea production.
	EnterReplaceArea(c *ReplaceAreaContext)

	// EnterReplaceByStatement is called when entering the replaceByStatement production.
	EnterReplaceByStatement(c *ReplaceByStatementContext)

	// EnterReplaceOffStatement is called when entering the replaceOffStatement production.
	EnterReplaceOffStatement(c *ReplaceOffStatementContext)

	// EnterReplaceClause is called when entering the replaceClause production.
	EnterReplaceClause(c *ReplaceClauseContext)

	// EnterDirectoryPhrase is called when entering the directoryPhrase production.
	EnterDirectoryPhrase(c *DirectoryPhraseContext)

	// EnterFamilyPhrase is called when entering the familyPhrase production.
	EnterFamilyPhrase(c *FamilyPhraseContext)

	// EnterReplaceable is called when entering the replaceable production.
	EnterReplaceable(c *ReplaceableContext)

	// EnterReplacement is called when entering the replacement production.
	EnterReplacement(c *ReplacementContext)

	// EnterEjectStatement is called when entering the ejectStatement production.
	EnterEjectStatement(c *EjectStatementContext)

	// EnterSkipStatement is called when entering the skipStatement production.
	EnterSkipStatement(c *SkipStatementContext)

	// EnterTitleStatement is called when entering the titleStatement production.
	EnterTitleStatement(c *TitleStatementContext)

	// EnterPseudoText is called when entering the pseudoText production.
	EnterPseudoText(c *PseudoTextContext)

	// EnterCharData is called when entering the charData production.
	EnterCharData(c *CharDataContext)

	// EnterCharDataSql is called when entering the charDataSql production.
	EnterCharDataSql(c *CharDataSqlContext)

	// EnterCharDataLine is called when entering the charDataLine production.
	EnterCharDataLine(c *CharDataLineContext)

	// EnterCobolWord is called when entering the cobolWord production.
	EnterCobolWord(c *CobolWordContext)

	// EnterLiteral is called when entering the literal production.
	EnterLiteral(c *LiteralContext)

	// EnterFilename is called when entering the filename production.
	EnterFilename(c *FilenameContext)

	// EnterCharDataKeyword is called when entering the charDataKeyword production.
	EnterCharDataKeyword(c *CharDataKeywordContext)

	// ExitStartRule is called when exiting the startRule production.
	ExitStartRule(c *StartRuleContext)

	// ExitCompilerOptions is called when exiting the compilerOptions production.
	ExitCompilerOptions(c *CompilerOptionsContext)

	// ExitCompilerXOpts is called when exiting the compilerXOpts production.
	ExitCompilerXOpts(c *CompilerXOptsContext)

	// ExitCompilerOption is called when exiting the compilerOption production.
	ExitCompilerOption(c *CompilerOptionContext)

	// ExitExecCicsStatement is called when exiting the execCicsStatement production.
	ExitExecCicsStatement(c *ExecCicsStatementContext)

	// ExitExecSqlStatement is called when exiting the execSqlStatement production.
	ExitExecSqlStatement(c *ExecSqlStatementContext)

	// ExitExecSqlImsStatement is called when exiting the execSqlImsStatement production.
	ExitExecSqlImsStatement(c *ExecSqlImsStatementContext)

	// ExitCopyStatement is called when exiting the copyStatement production.
	ExitCopyStatement(c *CopyStatementContext)

	// ExitCopySource is called when exiting the copySource production.
	ExitCopySource(c *CopySourceContext)

	// ExitCopyLibrary is called when exiting the copyLibrary production.
	ExitCopyLibrary(c *CopyLibraryContext)

	// ExitReplacingPhrase is called when exiting the replacingPhrase production.
	ExitReplacingPhrase(c *ReplacingPhraseContext)

	// ExitReplaceArea is called when exiting the replaceArea production.
	ExitReplaceArea(c *ReplaceAreaContext)

	// ExitReplaceByStatement is called when exiting the replaceByStatement production.
	ExitReplaceByStatement(c *ReplaceByStatementContext)

	// ExitReplaceOffStatement is called when exiting the replaceOffStatement production.
	ExitReplaceOffStatement(c *ReplaceOffStatementContext)

	// ExitReplaceClause is called when exiting the replaceClause production.
	ExitReplaceClause(c *ReplaceClauseContext)

	// ExitDirectoryPhrase is called when exiting the directoryPhrase production.
	ExitDirectoryPhrase(c *DirectoryPhraseContext)

	// ExitFamilyPhrase is called when exiting the familyPhrase production.
	ExitFamilyPhrase(c *FamilyPhraseContext)

	// ExitReplaceable is called when exiting the replaceable production.
	ExitReplaceable(c *ReplaceableContext)

	// ExitReplacement is called when exiting the replacement production.
	ExitReplacement(c *ReplacementContext)

	// ExitEjectStatement is called when exiting the ejectStatement production.
	ExitEjectStatement(c *EjectStatementContext)

	// ExitSkipStatement is called when exiting the skipStatement production.
	ExitSkipStatement(c *SkipStatementContext)

	// ExitTitleStatement is called when exiting the titleStatement production.
	ExitTitleStatement(c *TitleStatementContext)

	// ExitPseudoText is called when exiting the pseudoText production.
	ExitPseudoText(c *PseudoTextContext)

	// ExitCharData is called when exiting the charData production.
	ExitCharData(c *CharDataContext)

	// ExitCharDataSql is called when exiting the charDataSql production.
	ExitCharDataSql(c *CharDataSqlContext)

	// ExitCharDataLine is called when exiting the charDataLine production.
	ExitCharDataLine(c *CharDataLineContext)

	// ExitCobolWord is called when exiting the cobolWord production.
	ExitCobolWord(c *CobolWordContext)

	// ExitLiteral is called when exiting the literal production.
	ExitLiteral(c *LiteralContext)

	// ExitFilename is called when exiting the filename production.
	ExitFilename(c *FilenameContext)

	// ExitCharDataKeyword is called when exiting the charDataKeyword production.
	ExitCharDataKeyword(c *CharDataKeywordContext)
}

Cobol85PreprocessorListener is a complete listener for a parse tree produced by Cobol85PreprocessorParser.

type Cobol85PreprocessorParser

type Cobol85PreprocessorParser struct {
	*antlr.BaseParser
}

func NewCobol85PreprocessorParser

func NewCobol85PreprocessorParser(input antlr.TokenStream) *Cobol85PreprocessorParser

func (*Cobol85PreprocessorParser) CharData

func (p *Cobol85PreprocessorParser) CharData() (localctx ICharDataContext)

func (*Cobol85PreprocessorParser) CharDataKeyword

func (p *Cobol85PreprocessorParser) CharDataKeyword() (localctx ICharDataKeywordContext)

func (*Cobol85PreprocessorParser) CharDataLine

func (p *Cobol85PreprocessorParser) CharDataLine() (localctx ICharDataLineContext)

func (*Cobol85PreprocessorParser) CharDataSql

func (p *Cobol85PreprocessorParser) CharDataSql() (localctx ICharDataSqlContext)

func (*Cobol85PreprocessorParser) CobolWord

func (p *Cobol85PreprocessorParser) CobolWord() (localctx ICobolWordContext)

func (*Cobol85PreprocessorParser) CompilerOption

func (p *Cobol85PreprocessorParser) CompilerOption() (localctx ICompilerOptionContext)

func (*Cobol85PreprocessorParser) CompilerOptions

func (p *Cobol85PreprocessorParser) CompilerOptions() (localctx ICompilerOptionsContext)

func (*Cobol85PreprocessorParser) CompilerXOpts

func (p *Cobol85PreprocessorParser) CompilerXOpts() (localctx ICompilerXOptsContext)

func (*Cobol85PreprocessorParser) CopyLibrary

func (p *Cobol85PreprocessorParser) CopyLibrary() (localctx ICopyLibraryContext)

func (*Cobol85PreprocessorParser) CopySource

func (p *Cobol85PreprocessorParser) CopySource() (localctx ICopySourceContext)

func (*Cobol85PreprocessorParser) CopyStatement

func (p *Cobol85PreprocessorParser) CopyStatement() (localctx ICopyStatementContext)

func (*Cobol85PreprocessorParser) DirectoryPhrase

func (p *Cobol85PreprocessorParser) DirectoryPhrase() (localctx IDirectoryPhraseContext)

func (*Cobol85PreprocessorParser) EjectStatement

func (p *Cobol85PreprocessorParser) EjectStatement() (localctx IEjectStatementContext)

func (*Cobol85PreprocessorParser) ExecCicsStatement

func (p *Cobol85PreprocessorParser) ExecCicsStatement() (localctx IExecCicsStatementContext)

func (*Cobol85PreprocessorParser) ExecSqlImsStatement

func (p *Cobol85PreprocessorParser) ExecSqlImsStatement() (localctx IExecSqlImsStatementContext)

func (*Cobol85PreprocessorParser) ExecSqlStatement

func (p *Cobol85PreprocessorParser) ExecSqlStatement() (localctx IExecSqlStatementContext)

func (*Cobol85PreprocessorParser) FamilyPhrase

func (p *Cobol85PreprocessorParser) FamilyPhrase() (localctx IFamilyPhraseContext)

func (*Cobol85PreprocessorParser) Filename

func (p *Cobol85PreprocessorParser) Filename() (localctx IFilenameContext)

func (*Cobol85PreprocessorParser) Literal

func (p *Cobol85PreprocessorParser) Literal() (localctx ILiteralContext)

func (*Cobol85PreprocessorParser) PseudoText

func (p *Cobol85PreprocessorParser) PseudoText() (localctx IPseudoTextContext)

func (*Cobol85PreprocessorParser) ReplaceArea

func (p *Cobol85PreprocessorParser) ReplaceArea() (localctx IReplaceAreaContext)

func (*Cobol85PreprocessorParser) ReplaceByStatement

func (p *Cobol85PreprocessorParser) ReplaceByStatement() (localctx IReplaceByStatementContext)

func (*Cobol85PreprocessorParser) ReplaceClause

func (p *Cobol85PreprocessorParser) ReplaceClause() (localctx IReplaceClauseContext)

func (*Cobol85PreprocessorParser) ReplaceOffStatement

func (p *Cobol85PreprocessorParser) ReplaceOffStatement() (localctx IReplaceOffStatementContext)

func (*Cobol85PreprocessorParser) Replaceable

func (p *Cobol85PreprocessorParser) Replaceable() (localctx IReplaceableContext)

func (*Cobol85PreprocessorParser) Replacement

func (p *Cobol85PreprocessorParser) Replacement() (localctx IReplacementContext)

func (*Cobol85PreprocessorParser) ReplacingPhrase

func (p *Cobol85PreprocessorParser) ReplacingPhrase() (localctx IReplacingPhraseContext)

func (*Cobol85PreprocessorParser) SkipStatement

func (p *Cobol85PreprocessorParser) SkipStatement() (localctx ISkipStatementContext)

func (*Cobol85PreprocessorParser) StartRule

func (p *Cobol85PreprocessorParser) StartRule() (localctx IStartRuleContext)

func (*Cobol85PreprocessorParser) TitleStatement

func (p *Cobol85PreprocessorParser) TitleStatement() (localctx ITitleStatementContext)

type CobolWordContext

type CobolWordContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCobolWordContext

func NewCobolWordContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CobolWordContext

func NewEmptyCobolWordContext

func NewEmptyCobolWordContext() *CobolWordContext

func (*CobolWordContext) CharDataKeyword

func (s *CobolWordContext) CharDataKeyword() ICharDataKeywordContext

func (*CobolWordContext) EnterRule

func (s *CobolWordContext) EnterRule(listener antlr.ParseTreeListener)

func (*CobolWordContext) ExitRule

func (s *CobolWordContext) ExitRule(listener antlr.ParseTreeListener)

func (*CobolWordContext) GetParser

func (s *CobolWordContext) GetParser() antlr.Parser

func (*CobolWordContext) GetRuleContext

func (s *CobolWordContext) GetRuleContext() antlr.RuleContext

func (*CobolWordContext) IDENTIFIER

func (s *CobolWordContext) IDENTIFIER() antlr.TerminalNode

func (*CobolWordContext) IsCobolWordContext

func (*CobolWordContext) IsCobolWordContext()

func (*CobolWordContext) ToStringTree

func (s *CobolWordContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type CompilerOptionContext

type CompilerOptionContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCompilerOptionContext

func NewCompilerOptionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CompilerOptionContext

func NewEmptyCompilerOptionContext

func NewEmptyCompilerOptionContext() *CompilerOptionContext

func (*CompilerOptionContext) ADATA

func (*CompilerOptionContext) ADV

func (*CompilerOptionContext) ALIAS

func (*CompilerOptionContext) ANSI

func (*CompilerOptionContext) ANY

func (*CompilerOptionContext) APOST

func (*CompilerOptionContext) AR

func (*CompilerOptionContext) ARITH

func (*CompilerOptionContext) AUTO

func (*CompilerOptionContext) AWO

func (*CompilerOptionContext) AllCOMMACHAR

func (s *CompilerOptionContext) AllCOMMACHAR() []antlr.TerminalNode

func (*CompilerOptionContext) AllE_CHAR

func (s *CompilerOptionContext) AllE_CHAR() []antlr.TerminalNode

func (*CompilerOptionContext) AllI_CHAR

func (s *CompilerOptionContext) AllI_CHAR() []antlr.TerminalNode

func (*CompilerOptionContext) AllLiteral

func (s *CompilerOptionContext) AllLiteral() []ILiteralContext

func (*CompilerOptionContext) AllS_CHAR

func (s *CompilerOptionContext) AllS_CHAR() []antlr.TerminalNode

func (*CompilerOptionContext) AllU_CHAR

func (s *CompilerOptionContext) AllU_CHAR() []antlr.TerminalNode

func (*CompilerOptionContext) AllW_CHAR

func (s *CompilerOptionContext) AllW_CHAR() []antlr.TerminalNode

func (*CompilerOptionContext) BIN

func (*CompilerOptionContext) BLOCK0

func (*CompilerOptionContext) BUF

func (*CompilerOptionContext) BUFSIZE

func (*CompilerOptionContext) CBLCARD

func (*CompilerOptionContext) CICS

func (*CompilerOptionContext) CO

func (*CompilerOptionContext) COBOL2

func (*CompilerOptionContext) COBOL3

func (*CompilerOptionContext) CODEPAGE

func (*CompilerOptionContext) COMMACHAR

func (s *CompilerOptionContext) COMMACHAR(i int) antlr.TerminalNode

func (*CompilerOptionContext) COMPAT

func (*CompilerOptionContext) COMPILE

func (*CompilerOptionContext) CP

func (*CompilerOptionContext) CPP

func (*CompilerOptionContext) CPSM

func (*CompilerOptionContext) CS

func (*CompilerOptionContext) CURR

func (*CompilerOptionContext) CURRENCY

func (*CompilerOptionContext) C_CHAR

func (*CompilerOptionContext) CobolWord

func (*CompilerOptionContext) DATA

func (*CompilerOptionContext) DATEPROC

func (*CompilerOptionContext) DBCS

func (*CompilerOptionContext) DD

func (*CompilerOptionContext) DEBUG

func (*CompilerOptionContext) DECK

func (*CompilerOptionContext) DIAGTRUNC

func (s *CompilerOptionContext) DIAGTRUNC() antlr.TerminalNode

func (*CompilerOptionContext) DLL

func (*CompilerOptionContext) DP

func (*CompilerOptionContext) DTR

func (*CompilerOptionContext) DU

func (*CompilerOptionContext) DUMP

func (*CompilerOptionContext) DYN

func (*CompilerOptionContext) DYNAM

func (*CompilerOptionContext) D_CHAR

func (*CompilerOptionContext) EDF

func (*CompilerOptionContext) EJPD

func (*CompilerOptionContext) EN

func (*CompilerOptionContext) ENGLISH

func (*CompilerOptionContext) EPILOG

func (*CompilerOptionContext) EXIT

func (*CompilerOptionContext) EXP

func (*CompilerOptionContext) EXPORTALL

func (s *CompilerOptionContext) EXPORTALL() antlr.TerminalNode

func (*CompilerOptionContext) EXTEND

func (*CompilerOptionContext) E_CHAR

func (*CompilerOptionContext) EnterRule

func (s *CompilerOptionContext) EnterRule(listener antlr.ParseTreeListener)

func (*CompilerOptionContext) ExitRule

func (s *CompilerOptionContext) ExitRule(listener antlr.ParseTreeListener)

func (*CompilerOptionContext) FASTSRT

func (*CompilerOptionContext) FEPI

func (*CompilerOptionContext) FLAG

func (*CompilerOptionContext) FLAGSTD

func (*CompilerOptionContext) FSRT

func (*CompilerOptionContext) FULL

func (*CompilerOptionContext) F_CHAR

func (*CompilerOptionContext) GDS

func (*CompilerOptionContext) GRAPHIC

func (*CompilerOptionContext) GetParser

func (s *CompilerOptionContext) GetParser() antlr.Parser

func (*CompilerOptionContext) GetRuleContext

func (s *CompilerOptionContext) GetRuleContext() antlr.RuleContext

func (*CompilerOptionContext) HOOK

func (*CompilerOptionContext) H_CHAR

func (*CompilerOptionContext) INTDATE

func (*CompilerOptionContext) I_CHAR

func (*CompilerOptionContext) IsCompilerOptionContext

func (*CompilerOptionContext) IsCompilerOptionContext()

func (*CompilerOptionContext) JA

func (*CompilerOptionContext) JP

func (*CompilerOptionContext) KA

func (*CompilerOptionContext) LANG

func (*CompilerOptionContext) LANGUAGE

func (*CompilerOptionContext) LC

func (*CompilerOptionContext) LEASM

func (*CompilerOptionContext) LENGTH

func (*CompilerOptionContext) LIB

func (*CompilerOptionContext) LILIAN

func (*CompilerOptionContext) LIN

func (*CompilerOptionContext) LINECOUNT

func (s *CompilerOptionContext) LINECOUNT() antlr.TerminalNode

func (*CompilerOptionContext) LINKAGE

func (*CompilerOptionContext) LIST

func (*CompilerOptionContext) LM

func (*CompilerOptionContext) LONGMIXED

func (s *CompilerOptionContext) LONGMIXED() antlr.TerminalNode

func (*CompilerOptionContext) LONGUPPER

func (s *CompilerOptionContext) LONGUPPER() antlr.TerminalNode

func (*CompilerOptionContext) LPARENCHAR

func (s *CompilerOptionContext) LPARENCHAR() antlr.TerminalNode

func (*CompilerOptionContext) LU

func (*CompilerOptionContext) Literal

func (*CompilerOptionContext) MAP

func (*CompilerOptionContext) MARGINS

func (*CompilerOptionContext) MAX

func (*CompilerOptionContext) MD

func (*CompilerOptionContext) MDECK

func (*CompilerOptionContext) MIG

func (*CompilerOptionContext) MIXED

func (*CompilerOptionContext) M_CHAR

func (*CompilerOptionContext) NAME

func (*CompilerOptionContext) NAT

func (*CompilerOptionContext) NATIONAL

func (*CompilerOptionContext) NATLANG

func (*CompilerOptionContext) NN

func (*CompilerOptionContext) NOADATA

func (*CompilerOptionContext) NOADV

func (*CompilerOptionContext) NOALIAS

func (*CompilerOptionContext) NOAWO

func (*CompilerOptionContext) NOBLOCK0

func (*CompilerOptionContext) NOC

func (*CompilerOptionContext) NOCBLCARD

func (s *CompilerOptionContext) NOCBLCARD() antlr.TerminalNode

func (*CompilerOptionContext) NOCICS

func (*CompilerOptionContext) NOCMPR2

func (*CompilerOptionContext) NOCOMPILE

func (s *CompilerOptionContext) NOCOMPILE() antlr.TerminalNode

func (*CompilerOptionContext) NOCPSM

func (*CompilerOptionContext) NOCURR

func (*CompilerOptionContext) NOCURRENCY

func (s *CompilerOptionContext) NOCURRENCY() antlr.TerminalNode

func (*CompilerOptionContext) NOD

func (*CompilerOptionContext) NODATEPROC

func (s *CompilerOptionContext) NODATEPROC() antlr.TerminalNode

func (*CompilerOptionContext) NODBCS

func (*CompilerOptionContext) NODE

func (*CompilerOptionContext) NODEBUG

func (*CompilerOptionContext) NODECK

func (*CompilerOptionContext) NODIAGTRUNC

func (s *CompilerOptionContext) NODIAGTRUNC() antlr.TerminalNode

func (*CompilerOptionContext) NODLL

func (*CompilerOptionContext) NODP

func (*CompilerOptionContext) NODTR

func (*CompilerOptionContext) NODU

func (*CompilerOptionContext) NODUMP

func (*CompilerOptionContext) NODYN

func (*CompilerOptionContext) NODYNAM

func (*CompilerOptionContext) NOEDF

func (*CompilerOptionContext) NOEJPD

func (*CompilerOptionContext) NOEPILOG

func (*CompilerOptionContext) NOEXIT

func (*CompilerOptionContext) NOEXP

func (*CompilerOptionContext) NOEXPORTALL

func (s *CompilerOptionContext) NOEXPORTALL() antlr.TerminalNode

func (*CompilerOptionContext) NOF

func (*CompilerOptionContext) NOFASTSRT

func (s *CompilerOptionContext) NOFASTSRT() antlr.TerminalNode

func (*CompilerOptionContext) NOFEPI

func (*CompilerOptionContext) NOFLAG

func (*CompilerOptionContext) NOFLAGMIG

func (s *CompilerOptionContext) NOFLAGMIG() antlr.TerminalNode

func (*CompilerOptionContext) NOFLAGSTD

func (s *CompilerOptionContext) NOFLAGSTD() antlr.TerminalNode

func (*CompilerOptionContext) NOFSRT

func (*CompilerOptionContext) NOGRAPHIC

func (s *CompilerOptionContext) NOGRAPHIC() antlr.TerminalNode

func (*CompilerOptionContext) NOHOOK

func (*CompilerOptionContext) NOLENGTH

func (*CompilerOptionContext) NOLIB

func (*CompilerOptionContext) NOLINKAGE

func (s *CompilerOptionContext) NOLINKAGE() antlr.TerminalNode

func (*CompilerOptionContext) NOLIST

func (*CompilerOptionContext) NOMAP

func (*CompilerOptionContext) NOMD

func (*CompilerOptionContext) NOMDECK

func (*CompilerOptionContext) NONAME

func (*CompilerOptionContext) NONUM

func (*CompilerOptionContext) NONUMBER

func (*CompilerOptionContext) NOOBJ

func (*CompilerOptionContext) NOOBJECT

func (*CompilerOptionContext) NOOFF

func (*CompilerOptionContext) NOOFFSET

func (*CompilerOptionContext) NOOPSEQUENCE

func (s *CompilerOptionContext) NOOPSEQUENCE() antlr.TerminalNode

func (*CompilerOptionContext) NOOPT

func (*CompilerOptionContext) NOOPTIMIZE

func (s *CompilerOptionContext) NOOPTIMIZE() antlr.TerminalNode

func (*CompilerOptionContext) NOOPTIONS

func (s *CompilerOptionContext) NOOPTIONS() antlr.TerminalNode

func (*CompilerOptionContext) NOP

func (*CompilerOptionContext) NOPFD

func (*CompilerOptionContext) NOPROLOG

func (*CompilerOptionContext) NORENT

func (*CompilerOptionContext) NOS

func (*CompilerOptionContext) NOSEP

func (*CompilerOptionContext) NOSEPARATE

func (s *CompilerOptionContext) NOSEPARATE() antlr.TerminalNode

func (*CompilerOptionContext) NOSEQ

func (*CompilerOptionContext) NOSEQUENCE

func (s *CompilerOptionContext) NOSEQUENCE() antlr.TerminalNode

func (*CompilerOptionContext) NOSOURCE

func (*CompilerOptionContext) NOSPIE

func (*CompilerOptionContext) NOSQL

func (*CompilerOptionContext) NOSQLC

func (*CompilerOptionContext) NOSQLCCSID

func (s *CompilerOptionContext) NOSQLCCSID() antlr.TerminalNode

func (*CompilerOptionContext) NOSSR

func (*CompilerOptionContext) NOSSRANGE

func (s *CompilerOptionContext) NOSSRANGE() antlr.TerminalNode

func (*CompilerOptionContext) NOSTDTRUNC

func (s *CompilerOptionContext) NOSTDTRUNC() antlr.TerminalNode

func (*CompilerOptionContext) NOTERM

func (*CompilerOptionContext) NOTERMINAL

func (s *CompilerOptionContext) NOTERMINAL() antlr.TerminalNode

func (*CompilerOptionContext) NOTEST

func (*CompilerOptionContext) NOTHREAD

func (*CompilerOptionContext) NOTRIG

func (*CompilerOptionContext) NOVBREF

func (*CompilerOptionContext) NOWD

func (*CompilerOptionContext) NOWORD

func (*CompilerOptionContext) NOX

func (*CompilerOptionContext) NOXREF

func (*CompilerOptionContext) NOZWB

func (*CompilerOptionContext) NS

func (*CompilerOptionContext) NSEQ

func (*CompilerOptionContext) NSYMBOL

func (*CompilerOptionContext) NUM

func (*CompilerOptionContext) NUMBER

func (*CompilerOptionContext) NUMPROC

func (*CompilerOptionContext) N_CHAR

func (*CompilerOptionContext) OBJ

func (*CompilerOptionContext) OBJECT

func (*CompilerOptionContext) OFF

func (*CompilerOptionContext) OFFSET

func (*CompilerOptionContext) OP

func (*CompilerOptionContext) OPMARGINS

func (s *CompilerOptionContext) OPMARGINS() antlr.TerminalNode

func (*CompilerOptionContext) OPSEQUENCE

func (s *CompilerOptionContext) OPSEQUENCE() antlr.TerminalNode

func (*CompilerOptionContext) OPT

func (*CompilerOptionContext) OPTFILE

func (*CompilerOptionContext) OPTIMIZE

func (*CompilerOptionContext) OPTIONS

func (*CompilerOptionContext) OUT

func (*CompilerOptionContext) OUTDD

func (*CompilerOptionContext) PFD

func (*CompilerOptionContext) PGMN

func (*CompilerOptionContext) PGMNAME

func (*CompilerOptionContext) PROLOG

func (*CompilerOptionContext) QUOTE

func (*CompilerOptionContext) Q_CHAR

func (*CompilerOptionContext) RENT

func (*CompilerOptionContext) RMODE

func (*CompilerOptionContext) RPARENCHAR

func (s *CompilerOptionContext) RPARENCHAR() antlr.TerminalNode

func (*CompilerOptionContext) SEP

func (*CompilerOptionContext) SEPARATE

func (*CompilerOptionContext) SEQ

func (*CompilerOptionContext) SEQUENCE

func (*CompilerOptionContext) SHORT

func (*CompilerOptionContext) SIZE

func (*CompilerOptionContext) SOURCE

func (*CompilerOptionContext) SP

func (*CompilerOptionContext) SPACE

func (*CompilerOptionContext) SPIE

func (*CompilerOptionContext) SQL

func (*CompilerOptionContext) SQLC

func (*CompilerOptionContext) SQLCCSID

func (*CompilerOptionContext) SS

func (*CompilerOptionContext) SSR

func (*CompilerOptionContext) SSRANGE

func (*CompilerOptionContext) STD

func (*CompilerOptionContext) SYSEIB

func (*CompilerOptionContext) SZ

func (*CompilerOptionContext) S_CHAR

func (*CompilerOptionContext) TERM

func (*CompilerOptionContext) TERMINAL

func (*CompilerOptionContext) TEST

func (*CompilerOptionContext) THREAD

func (*CompilerOptionContext) TRIG

func (*CompilerOptionContext) TRUNC

func (*CompilerOptionContext) ToStringTree

func (s *CompilerOptionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*CompilerOptionContext) UE

func (*CompilerOptionContext) UPPER

func (*CompilerOptionContext) U_CHAR

func (*CompilerOptionContext) VBREF

func (*CompilerOptionContext) WD

func (*CompilerOptionContext) WORD

func (*CompilerOptionContext) W_CHAR

func (*CompilerOptionContext) XMLPARSE

func (*CompilerOptionContext) XMLSS

func (*CompilerOptionContext) XP

func (*CompilerOptionContext) XREF

func (*CompilerOptionContext) X_CHAR

func (*CompilerOptionContext) YEARWINDOW

func (s *CompilerOptionContext) YEARWINDOW() antlr.TerminalNode

func (*CompilerOptionContext) YW

func (*CompilerOptionContext) ZWB

type CompilerOptionsContext

type CompilerOptionsContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCompilerOptionsContext

func NewCompilerOptionsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CompilerOptionsContext

func NewEmptyCompilerOptionsContext

func NewEmptyCompilerOptionsContext() *CompilerOptionsContext

func (*CompilerOptionsContext) AllCOMMACHAR

func (s *CompilerOptionsContext) AllCOMMACHAR() []antlr.TerminalNode

func (*CompilerOptionsContext) AllCompilerOption

func (s *CompilerOptionsContext) AllCompilerOption() []ICompilerOptionContext

func (*CompilerOptionsContext) AllCompilerXOpts

func (s *CompilerOptionsContext) AllCompilerXOpts() []ICompilerXOptsContext

func (*CompilerOptionsContext) CBL

func (*CompilerOptionsContext) COMMACHAR

func (s *CompilerOptionsContext) COMMACHAR(i int) antlr.TerminalNode

func (*CompilerOptionsContext) CompilerOption

func (s *CompilerOptionsContext) CompilerOption(i int) ICompilerOptionContext

func (*CompilerOptionsContext) CompilerXOpts

func (s *CompilerOptionsContext) CompilerXOpts(i int) ICompilerXOptsContext

func (*CompilerOptionsContext) EnterRule

func (s *CompilerOptionsContext) EnterRule(listener antlr.ParseTreeListener)

func (*CompilerOptionsContext) ExitRule

func (s *CompilerOptionsContext) ExitRule(listener antlr.ParseTreeListener)

func (*CompilerOptionsContext) GetParser

func (s *CompilerOptionsContext) GetParser() antlr.Parser

func (*CompilerOptionsContext) GetRuleContext

func (s *CompilerOptionsContext) GetRuleContext() antlr.RuleContext

func (*CompilerOptionsContext) IsCompilerOptionsContext

func (*CompilerOptionsContext) IsCompilerOptionsContext()

func (*CompilerOptionsContext) PROCESS

func (*CompilerOptionsContext) ToStringTree

func (s *CompilerOptionsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type CompilerXOptsContext

type CompilerXOptsContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCompilerXOptsContext

func NewCompilerXOptsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CompilerXOptsContext

func NewEmptyCompilerXOptsContext

func NewEmptyCompilerXOptsContext() *CompilerXOptsContext

func (*CompilerXOptsContext) AllCOMMACHAR

func (s *CompilerXOptsContext) AllCOMMACHAR() []antlr.TerminalNode

func (*CompilerXOptsContext) AllCompilerOption

func (s *CompilerXOptsContext) AllCompilerOption() []ICompilerOptionContext

func (*CompilerXOptsContext) COMMACHAR

func (s *CompilerXOptsContext) COMMACHAR(i int) antlr.TerminalNode

func (*CompilerXOptsContext) CompilerOption

func (s *CompilerXOptsContext) CompilerOption(i int) ICompilerOptionContext

func (*CompilerXOptsContext) EnterRule

func (s *CompilerXOptsContext) EnterRule(listener antlr.ParseTreeListener)

func (*CompilerXOptsContext) ExitRule

func (s *CompilerXOptsContext) ExitRule(listener antlr.ParseTreeListener)

func (*CompilerXOptsContext) GetParser

func (s *CompilerXOptsContext) GetParser() antlr.Parser

func (*CompilerXOptsContext) GetRuleContext

func (s *CompilerXOptsContext) GetRuleContext() antlr.RuleContext

func (*CompilerXOptsContext) IsCompilerXOptsContext

func (*CompilerXOptsContext) IsCompilerXOptsContext()

func (*CompilerXOptsContext) LPARENCHAR

func (s *CompilerXOptsContext) LPARENCHAR() antlr.TerminalNode

func (*CompilerXOptsContext) RPARENCHAR

func (s *CompilerXOptsContext) RPARENCHAR() antlr.TerminalNode

func (*CompilerXOptsContext) ToStringTree

func (s *CompilerXOptsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

func (*CompilerXOptsContext) XOPTS

type CopyLibraryContext

type CopyLibraryContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCopyLibraryContext

func NewCopyLibraryContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CopyLibraryContext

func NewEmptyCopyLibraryContext

func NewEmptyCopyLibraryContext() *CopyLibraryContext

func (*CopyLibraryContext) CobolWord

func (s *CopyLibraryContext) CobolWord() ICobolWordContext

func (*CopyLibraryContext) EnterRule

func (s *CopyLibraryContext) EnterRule(listener antlr.ParseTreeListener)

func (*CopyLibraryContext) ExitRule

func (s *CopyLibraryContext) ExitRule(listener antlr.ParseTreeListener)

func (*CopyLibraryContext) GetParser

func (s *CopyLibraryContext) GetParser() antlr.Parser

func (*CopyLibraryContext) GetRuleContext

func (s *CopyLibraryContext) GetRuleContext() antlr.RuleContext

func (*CopyLibraryContext) IsCopyLibraryContext

func (*CopyLibraryContext) IsCopyLibraryContext()

func (*CopyLibraryContext) Literal

func (s *CopyLibraryContext) Literal() ILiteralContext

func (*CopyLibraryContext) ToStringTree

func (s *CopyLibraryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type CopySourceContext

type CopySourceContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCopySourceContext

func NewCopySourceContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CopySourceContext

func NewEmptyCopySourceContext

func NewEmptyCopySourceContext() *CopySourceContext

func (*CopySourceContext) CobolWord

func (s *CopySourceContext) CobolWord() ICobolWordContext

func (*CopySourceContext) CopyLibrary

func (s *CopySourceContext) CopyLibrary() ICopyLibraryContext

func (*CopySourceContext) EnterRule

func (s *CopySourceContext) EnterRule(listener antlr.ParseTreeListener)

func (*CopySourceContext) ExitRule

func (s *CopySourceContext) ExitRule(listener antlr.ParseTreeListener)

func (*CopySourceContext) Filename

func (s *CopySourceContext) Filename() IFilenameContext

func (*CopySourceContext) GetParser

func (s *CopySourceContext) GetParser() antlr.Parser

func (*CopySourceContext) GetRuleContext

func (s *CopySourceContext) GetRuleContext() antlr.RuleContext

func (*CopySourceContext) IN

func (*CopySourceContext) IsCopySourceContext

func (*CopySourceContext) IsCopySourceContext()

func (*CopySourceContext) Literal

func (s *CopySourceContext) Literal() ILiteralContext

func (*CopySourceContext) OF

func (*CopySourceContext) ToStringTree

func (s *CopySourceContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type CopyStatementContext

type CopyStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewCopyStatementContext

func NewCopyStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *CopyStatementContext

func NewEmptyCopyStatementContext

func NewEmptyCopyStatementContext() *CopyStatementContext

func (*CopyStatementContext) AllDirectoryPhrase

func (s *CopyStatementContext) AllDirectoryPhrase() []IDirectoryPhraseContext

func (*CopyStatementContext) AllFamilyPhrase

func (s *CopyStatementContext) AllFamilyPhrase() []IFamilyPhraseContext

func (*CopyStatementContext) AllNEWLINE

func (s *CopyStatementContext) AllNEWLINE() []antlr.TerminalNode

func (*CopyStatementContext) AllReplacingPhrase

func (s *CopyStatementContext) AllReplacingPhrase() []IReplacingPhraseContext

func (*CopyStatementContext) AllSUPPRESS

func (s *CopyStatementContext) AllSUPPRESS() []antlr.TerminalNode

func (*CopyStatementContext) COPY

func (*CopyStatementContext) CopySource

func (s *CopyStatementContext) CopySource() ICopySourceContext

func (*CopyStatementContext) DOT

func (*CopyStatementContext) DirectoryPhrase

func (s *CopyStatementContext) DirectoryPhrase(i int) IDirectoryPhraseContext

func (*CopyStatementContext) EnterRule

func (s *CopyStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*CopyStatementContext) ExitRule

func (s *CopyStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*CopyStatementContext) FamilyPhrase

func (s *CopyStatementContext) FamilyPhrase(i int) IFamilyPhraseContext

func (*CopyStatementContext) GetParser

func (s *CopyStatementContext) GetParser() antlr.Parser

func (*CopyStatementContext) GetRuleContext

func (s *CopyStatementContext) GetRuleContext() antlr.RuleContext

func (*CopyStatementContext) IsCopyStatementContext

func (*CopyStatementContext) IsCopyStatementContext()

func (*CopyStatementContext) NEWLINE

func (*CopyStatementContext) ReplacingPhrase

func (s *CopyStatementContext) ReplacingPhrase(i int) IReplacingPhraseContext

func (*CopyStatementContext) SUPPRESS

func (s *CopyStatementContext) SUPPRESS(i int) antlr.TerminalNode

func (*CopyStatementContext) ToStringTree

func (s *CopyStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type DirectoryPhraseContext

type DirectoryPhraseContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewDirectoryPhraseContext

func NewDirectoryPhraseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *DirectoryPhraseContext

func NewEmptyDirectoryPhraseContext

func NewEmptyDirectoryPhraseContext() *DirectoryPhraseContext

func (*DirectoryPhraseContext) AllNEWLINE

func (s *DirectoryPhraseContext) AllNEWLINE() []antlr.TerminalNode

func (*DirectoryPhraseContext) CobolWord

func (*DirectoryPhraseContext) EnterRule

func (s *DirectoryPhraseContext) EnterRule(listener antlr.ParseTreeListener)

func (*DirectoryPhraseContext) ExitRule

func (s *DirectoryPhraseContext) ExitRule(listener antlr.ParseTreeListener)

func (*DirectoryPhraseContext) GetParser

func (s *DirectoryPhraseContext) GetParser() antlr.Parser

func (*DirectoryPhraseContext) GetRuleContext

func (s *DirectoryPhraseContext) GetRuleContext() antlr.RuleContext

func (*DirectoryPhraseContext) IN

func (*DirectoryPhraseContext) IsDirectoryPhraseContext

func (*DirectoryPhraseContext) IsDirectoryPhraseContext()

func (*DirectoryPhraseContext) Literal

func (*DirectoryPhraseContext) NEWLINE

func (*DirectoryPhraseContext) OF

func (*DirectoryPhraseContext) ToStringTree

func (s *DirectoryPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type EjectStatementContext

type EjectStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEjectStatementContext

func NewEjectStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *EjectStatementContext

func NewEmptyEjectStatementContext

func NewEmptyEjectStatementContext() *EjectStatementContext

func (*EjectStatementContext) DOT

func (*EjectStatementContext) EJECT

func (*EjectStatementContext) EnterRule

func (s *EjectStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*EjectStatementContext) ExitRule

func (s *EjectStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*EjectStatementContext) GetParser

func (s *EjectStatementContext) GetParser() antlr.Parser

func (*EjectStatementContext) GetRuleContext

func (s *EjectStatementContext) GetRuleContext() antlr.RuleContext

func (*EjectStatementContext) IsEjectStatementContext

func (*EjectStatementContext) IsEjectStatementContext()

func (*EjectStatementContext) ToStringTree

func (s *EjectStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ExecCicsStatementContext

type ExecCicsStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyExecCicsStatementContext

func NewEmptyExecCicsStatementContext() *ExecCicsStatementContext

func NewExecCicsStatementContext

func NewExecCicsStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ExecCicsStatementContext

func (*ExecCicsStatementContext) CICS

func (*ExecCicsStatementContext) CharData

func (*ExecCicsStatementContext) DOT

func (*ExecCicsStatementContext) END_EXEC

func (*ExecCicsStatementContext) EXEC

func (*ExecCicsStatementContext) EnterRule

func (s *ExecCicsStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*ExecCicsStatementContext) ExitRule

func (s *ExecCicsStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*ExecCicsStatementContext) GetParser

func (s *ExecCicsStatementContext) GetParser() antlr.Parser

func (*ExecCicsStatementContext) GetRuleContext

func (s *ExecCicsStatementContext) GetRuleContext() antlr.RuleContext

func (*ExecCicsStatementContext) IsExecCicsStatementContext

func (*ExecCicsStatementContext) IsExecCicsStatementContext()

func (*ExecCicsStatementContext) ToStringTree

func (s *ExecCicsStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ExecSqlImsStatementContext

type ExecSqlImsStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyExecSqlImsStatementContext

func NewEmptyExecSqlImsStatementContext() *ExecSqlImsStatementContext

func NewExecSqlImsStatementContext

func NewExecSqlImsStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ExecSqlImsStatementContext

func (*ExecSqlImsStatementContext) CharData

func (*ExecSqlImsStatementContext) DOT

func (*ExecSqlImsStatementContext) END_EXEC

func (*ExecSqlImsStatementContext) EXEC

func (*ExecSqlImsStatementContext) EnterRule

func (s *ExecSqlImsStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*ExecSqlImsStatementContext) ExitRule

func (s *ExecSqlImsStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*ExecSqlImsStatementContext) GetParser

func (s *ExecSqlImsStatementContext) GetParser() antlr.Parser

func (*ExecSqlImsStatementContext) GetRuleContext

func (s *ExecSqlImsStatementContext) GetRuleContext() antlr.RuleContext

func (*ExecSqlImsStatementContext) IsExecSqlImsStatementContext

func (*ExecSqlImsStatementContext) IsExecSqlImsStatementContext()

func (*ExecSqlImsStatementContext) SQLIMS

func (*ExecSqlImsStatementContext) ToStringTree

func (s *ExecSqlImsStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ExecSqlStatementContext

type ExecSqlStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyExecSqlStatementContext

func NewEmptyExecSqlStatementContext() *ExecSqlStatementContext

func NewExecSqlStatementContext

func NewExecSqlStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ExecSqlStatementContext

func (*ExecSqlStatementContext) CharDataSql

func (*ExecSqlStatementContext) DOT

func (*ExecSqlStatementContext) END_EXEC

func (*ExecSqlStatementContext) EXEC

func (*ExecSqlStatementContext) EnterRule

func (s *ExecSqlStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*ExecSqlStatementContext) ExitRule

func (s *ExecSqlStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*ExecSqlStatementContext) GetParser

func (s *ExecSqlStatementContext) GetParser() antlr.Parser

func (*ExecSqlStatementContext) GetRuleContext

func (s *ExecSqlStatementContext) GetRuleContext() antlr.RuleContext

func (*ExecSqlStatementContext) IsExecSqlStatementContext

func (*ExecSqlStatementContext) IsExecSqlStatementContext()

func (*ExecSqlStatementContext) SQL

func (*ExecSqlStatementContext) ToStringTree

func (s *ExecSqlStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type FamilyPhraseContext

type FamilyPhraseContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyFamilyPhraseContext

func NewEmptyFamilyPhraseContext() *FamilyPhraseContext

func NewFamilyPhraseContext

func NewFamilyPhraseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *FamilyPhraseContext

func (*FamilyPhraseContext) AllNEWLINE

func (s *FamilyPhraseContext) AllNEWLINE() []antlr.TerminalNode

func (*FamilyPhraseContext) CobolWord

func (s *FamilyPhraseContext) CobolWord() ICobolWordContext

func (*FamilyPhraseContext) EnterRule

func (s *FamilyPhraseContext) EnterRule(listener antlr.ParseTreeListener)

func (*FamilyPhraseContext) ExitRule

func (s *FamilyPhraseContext) ExitRule(listener antlr.ParseTreeListener)

func (*FamilyPhraseContext) GetParser

func (s *FamilyPhraseContext) GetParser() antlr.Parser

func (*FamilyPhraseContext) GetRuleContext

func (s *FamilyPhraseContext) GetRuleContext() antlr.RuleContext

func (*FamilyPhraseContext) IsFamilyPhraseContext

func (*FamilyPhraseContext) IsFamilyPhraseContext()

func (*FamilyPhraseContext) Literal

func (s *FamilyPhraseContext) Literal() ILiteralContext

func (*FamilyPhraseContext) NEWLINE

func (s *FamilyPhraseContext) NEWLINE(i int) antlr.TerminalNode

func (*FamilyPhraseContext) ON

func (*FamilyPhraseContext) ToStringTree

func (s *FamilyPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type FilenameContext

type FilenameContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyFilenameContext

func NewEmptyFilenameContext() *FilenameContext

func NewFilenameContext

func NewFilenameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *FilenameContext

func (*FilenameContext) EnterRule

func (s *FilenameContext) EnterRule(listener antlr.ParseTreeListener)

func (*FilenameContext) ExitRule

func (s *FilenameContext) ExitRule(listener antlr.ParseTreeListener)

func (*FilenameContext) FILENAME

func (s *FilenameContext) FILENAME() antlr.TerminalNode

func (*FilenameContext) GetParser

func (s *FilenameContext) GetParser() antlr.Parser

func (*FilenameContext) GetRuleContext

func (s *FilenameContext) GetRuleContext() antlr.RuleContext

func (*FilenameContext) IsFilenameContext

func (*FilenameContext) IsFilenameContext()

func (*FilenameContext) ToStringTree

func (s *FilenameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ICharDataContext

type ICharDataContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCharDataContext differentiates from other interfaces.
	IsCharDataContext()
}

ICharDataContext is an interface to support dynamic dispatch.

type ICharDataKeywordContext

type ICharDataKeywordContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCharDataKeywordContext differentiates from other interfaces.
	IsCharDataKeywordContext()
}

ICharDataKeywordContext is an interface to support dynamic dispatch.

type ICharDataLineContext

type ICharDataLineContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCharDataLineContext differentiates from other interfaces.
	IsCharDataLineContext()
}

ICharDataLineContext is an interface to support dynamic dispatch.

type ICharDataSqlContext

type ICharDataSqlContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCharDataSqlContext differentiates from other interfaces.
	IsCharDataSqlContext()
}

ICharDataSqlContext is an interface to support dynamic dispatch.

type ICobolWordContext

type ICobolWordContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCobolWordContext differentiates from other interfaces.
	IsCobolWordContext()
}

ICobolWordContext is an interface to support dynamic dispatch.

type ICompilerOptionContext

type ICompilerOptionContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCompilerOptionContext differentiates from other interfaces.
	IsCompilerOptionContext()
}

ICompilerOptionContext is an interface to support dynamic dispatch.

type ICompilerOptionsContext

type ICompilerOptionsContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCompilerOptionsContext differentiates from other interfaces.
	IsCompilerOptionsContext()
}

ICompilerOptionsContext is an interface to support dynamic dispatch.

type ICompilerXOptsContext

type ICompilerXOptsContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCompilerXOptsContext differentiates from other interfaces.
	IsCompilerXOptsContext()
}

ICompilerXOptsContext is an interface to support dynamic dispatch.

type ICopyLibraryContext

type ICopyLibraryContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCopyLibraryContext differentiates from other interfaces.
	IsCopyLibraryContext()
}

ICopyLibraryContext is an interface to support dynamic dispatch.

type ICopySourceContext

type ICopySourceContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCopySourceContext differentiates from other interfaces.
	IsCopySourceContext()
}

ICopySourceContext is an interface to support dynamic dispatch.

type ICopyStatementContext

type ICopyStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsCopyStatementContext differentiates from other interfaces.
	IsCopyStatementContext()
}

ICopyStatementContext is an interface to support dynamic dispatch.

type IDirectoryPhraseContext

type IDirectoryPhraseContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsDirectoryPhraseContext differentiates from other interfaces.
	IsDirectoryPhraseContext()
}

IDirectoryPhraseContext is an interface to support dynamic dispatch.

type IEjectStatementContext

type IEjectStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsEjectStatementContext differentiates from other interfaces.
	IsEjectStatementContext()
}

IEjectStatementContext is an interface to support dynamic dispatch.

type IExecCicsStatementContext

type IExecCicsStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsExecCicsStatementContext differentiates from other interfaces.
	IsExecCicsStatementContext()
}

IExecCicsStatementContext is an interface to support dynamic dispatch.

type IExecSqlImsStatementContext

type IExecSqlImsStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsExecSqlImsStatementContext differentiates from other interfaces.
	IsExecSqlImsStatementContext()
}

IExecSqlImsStatementContext is an interface to support dynamic dispatch.

type IExecSqlStatementContext

type IExecSqlStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsExecSqlStatementContext differentiates from other interfaces.
	IsExecSqlStatementContext()
}

IExecSqlStatementContext is an interface to support dynamic dispatch.

type IFamilyPhraseContext

type IFamilyPhraseContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsFamilyPhraseContext differentiates from other interfaces.
	IsFamilyPhraseContext()
}

IFamilyPhraseContext is an interface to support dynamic dispatch.

type IFilenameContext

type IFilenameContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsFilenameContext differentiates from other interfaces.
	IsFilenameContext()
}

IFilenameContext is an interface to support dynamic dispatch.

type ILiteralContext

type ILiteralContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsLiteralContext differentiates from other interfaces.
	IsLiteralContext()
}

ILiteralContext is an interface to support dynamic dispatch.

type IPseudoTextContext

type IPseudoTextContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsPseudoTextContext differentiates from other interfaces.
	IsPseudoTextContext()
}

IPseudoTextContext is an interface to support dynamic dispatch.

type IReplaceAreaContext

type IReplaceAreaContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplaceAreaContext differentiates from other interfaces.
	IsReplaceAreaContext()
}

IReplaceAreaContext is an interface to support dynamic dispatch.

type IReplaceByStatementContext

type IReplaceByStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplaceByStatementContext differentiates from other interfaces.
	IsReplaceByStatementContext()
}

IReplaceByStatementContext is an interface to support dynamic dispatch.

type IReplaceClauseContext

type IReplaceClauseContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplaceClauseContext differentiates from other interfaces.
	IsReplaceClauseContext()
}

IReplaceClauseContext is an interface to support dynamic dispatch.

type IReplaceOffStatementContext

type IReplaceOffStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplaceOffStatementContext differentiates from other interfaces.
	IsReplaceOffStatementContext()
}

IReplaceOffStatementContext is an interface to support dynamic dispatch.

type IReplaceableContext

type IReplaceableContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplaceableContext differentiates from other interfaces.
	IsReplaceableContext()
}

IReplaceableContext is an interface to support dynamic dispatch.

type IReplacementContext

type IReplacementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplacementContext differentiates from other interfaces.
	IsReplacementContext()
}

IReplacementContext is an interface to support dynamic dispatch.

type IReplacingPhraseContext

type IReplacingPhraseContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsReplacingPhraseContext differentiates from other interfaces.
	IsReplacingPhraseContext()
}

IReplacingPhraseContext is an interface to support dynamic dispatch.

type ISkipStatementContext

type ISkipStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsSkipStatementContext differentiates from other interfaces.
	IsSkipStatementContext()
}

ISkipStatementContext is an interface to support dynamic dispatch.

type IStartRuleContext

type IStartRuleContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsStartRuleContext differentiates from other interfaces.
	IsStartRuleContext()
}

IStartRuleContext is an interface to support dynamic dispatch.

type ITitleStatementContext

type ITitleStatementContext interface {
	antlr.ParserRuleContext

	// GetParser returns the parser.
	GetParser() antlr.Parser

	// IsTitleStatementContext differentiates from other interfaces.
	IsTitleStatementContext()
}

ITitleStatementContext is an interface to support dynamic dispatch.

type LiteralContext

type LiteralContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyLiteralContext

func NewEmptyLiteralContext() *LiteralContext

func NewLiteralContext

func NewLiteralContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *LiteralContext

func (*LiteralContext) EnterRule

func (s *LiteralContext) EnterRule(listener antlr.ParseTreeListener)

func (*LiteralContext) ExitRule

func (s *LiteralContext) ExitRule(listener antlr.ParseTreeListener)

func (*LiteralContext) GetParser

func (s *LiteralContext) GetParser() antlr.Parser

func (*LiteralContext) GetRuleContext

func (s *LiteralContext) GetRuleContext() antlr.RuleContext

func (*LiteralContext) IsLiteralContext

func (*LiteralContext) IsLiteralContext()

func (*LiteralContext) NONNUMERICLITERAL

func (s *LiteralContext) NONNUMERICLITERAL() antlr.TerminalNode

func (*LiteralContext) NUMERICLITERAL

func (s *LiteralContext) NUMERICLITERAL() antlr.TerminalNode

func (*LiteralContext) ToStringTree

func (s *LiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type PseudoTextContext

type PseudoTextContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyPseudoTextContext

func NewEmptyPseudoTextContext() *PseudoTextContext

func NewPseudoTextContext

func NewPseudoTextContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *PseudoTextContext

func (*PseudoTextContext) AllDOUBLEEQUALCHAR

func (s *PseudoTextContext) AllDOUBLEEQUALCHAR() []antlr.TerminalNode

func (*PseudoTextContext) CharData

func (s *PseudoTextContext) CharData() ICharDataContext

func (*PseudoTextContext) DOUBLEEQUALCHAR

func (s *PseudoTextContext) DOUBLEEQUALCHAR(i int) antlr.TerminalNode

func (*PseudoTextContext) EnterRule

func (s *PseudoTextContext) EnterRule(listener antlr.ParseTreeListener)

func (*PseudoTextContext) ExitRule

func (s *PseudoTextContext) ExitRule(listener antlr.ParseTreeListener)

func (*PseudoTextContext) GetParser

func (s *PseudoTextContext) GetParser() antlr.Parser

func (*PseudoTextContext) GetRuleContext

func (s *PseudoTextContext) GetRuleContext() antlr.RuleContext

func (*PseudoTextContext) IsPseudoTextContext

func (*PseudoTextContext) IsPseudoTextContext()

func (*PseudoTextContext) ToStringTree

func (s *PseudoTextContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplaceAreaContext

type ReplaceAreaContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplaceAreaContext

func NewEmptyReplaceAreaContext() *ReplaceAreaContext

func NewReplaceAreaContext

func NewReplaceAreaContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplaceAreaContext

func (*ReplaceAreaContext) AllCharData

func (s *ReplaceAreaContext) AllCharData() []ICharDataContext

func (*ReplaceAreaContext) AllCopyStatement

func (s *ReplaceAreaContext) AllCopyStatement() []ICopyStatementContext

func (*ReplaceAreaContext) CharData

func (s *ReplaceAreaContext) CharData(i int) ICharDataContext

func (*ReplaceAreaContext) CopyStatement

func (s *ReplaceAreaContext) CopyStatement(i int) ICopyStatementContext

func (*ReplaceAreaContext) EnterRule

func (s *ReplaceAreaContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplaceAreaContext) ExitRule

func (s *ReplaceAreaContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplaceAreaContext) GetParser

func (s *ReplaceAreaContext) GetParser() antlr.Parser

func (*ReplaceAreaContext) GetRuleContext

func (s *ReplaceAreaContext) GetRuleContext() antlr.RuleContext

func (*ReplaceAreaContext) IsReplaceAreaContext

func (*ReplaceAreaContext) IsReplaceAreaContext()

func (*ReplaceAreaContext) ReplaceByStatement

func (s *ReplaceAreaContext) ReplaceByStatement() IReplaceByStatementContext

func (*ReplaceAreaContext) ReplaceOffStatement

func (s *ReplaceAreaContext) ReplaceOffStatement() IReplaceOffStatementContext

func (*ReplaceAreaContext) ToStringTree

func (s *ReplaceAreaContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplaceByStatementContext

type ReplaceByStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplaceByStatementContext

func NewEmptyReplaceByStatementContext() *ReplaceByStatementContext

func NewReplaceByStatementContext

func NewReplaceByStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplaceByStatementContext

func (*ReplaceByStatementContext) AllNEWLINE

func (s *ReplaceByStatementContext) AllNEWLINE() []antlr.TerminalNode

func (*ReplaceByStatementContext) AllReplaceClause

func (s *ReplaceByStatementContext) AllReplaceClause() []IReplaceClauseContext

func (*ReplaceByStatementContext) DOT

func (*ReplaceByStatementContext) EnterRule

func (s *ReplaceByStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplaceByStatementContext) ExitRule

func (s *ReplaceByStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplaceByStatementContext) GetParser

func (s *ReplaceByStatementContext) GetParser() antlr.Parser

func (*ReplaceByStatementContext) GetRuleContext

func (s *ReplaceByStatementContext) GetRuleContext() antlr.RuleContext

func (*ReplaceByStatementContext) IsReplaceByStatementContext

func (*ReplaceByStatementContext) IsReplaceByStatementContext()

func (*ReplaceByStatementContext) NEWLINE

func (*ReplaceByStatementContext) REPLACE

func (*ReplaceByStatementContext) ReplaceClause

func (*ReplaceByStatementContext) ToStringTree

func (s *ReplaceByStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplaceClauseContext

type ReplaceClauseContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplaceClauseContext

func NewEmptyReplaceClauseContext() *ReplaceClauseContext

func NewReplaceClauseContext

func NewReplaceClauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplaceClauseContext

func (*ReplaceClauseContext) AllNEWLINE

func (s *ReplaceClauseContext) AllNEWLINE() []antlr.TerminalNode

func (*ReplaceClauseContext) BY

func (*ReplaceClauseContext) DirectoryPhrase

func (s *ReplaceClauseContext) DirectoryPhrase() IDirectoryPhraseContext

func (*ReplaceClauseContext) EnterRule

func (s *ReplaceClauseContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplaceClauseContext) ExitRule

func (s *ReplaceClauseContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplaceClauseContext) FamilyPhrase

func (s *ReplaceClauseContext) FamilyPhrase() IFamilyPhraseContext

func (*ReplaceClauseContext) GetParser

func (s *ReplaceClauseContext) GetParser() antlr.Parser

func (*ReplaceClauseContext) GetRuleContext

func (s *ReplaceClauseContext) GetRuleContext() antlr.RuleContext

func (*ReplaceClauseContext) IsReplaceClauseContext

func (*ReplaceClauseContext) IsReplaceClauseContext()

func (*ReplaceClauseContext) NEWLINE

func (*ReplaceClauseContext) Replaceable

func (s *ReplaceClauseContext) Replaceable() IReplaceableContext

func (*ReplaceClauseContext) Replacement

func (s *ReplaceClauseContext) Replacement() IReplacementContext

func (*ReplaceClauseContext) ToStringTree

func (s *ReplaceClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplaceOffStatementContext

type ReplaceOffStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplaceOffStatementContext

func NewEmptyReplaceOffStatementContext() *ReplaceOffStatementContext

func NewReplaceOffStatementContext

func NewReplaceOffStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplaceOffStatementContext

func (*ReplaceOffStatementContext) DOT

func (*ReplaceOffStatementContext) EnterRule

func (s *ReplaceOffStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplaceOffStatementContext) ExitRule

func (s *ReplaceOffStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplaceOffStatementContext) GetParser

func (s *ReplaceOffStatementContext) GetParser() antlr.Parser

func (*ReplaceOffStatementContext) GetRuleContext

func (s *ReplaceOffStatementContext) GetRuleContext() antlr.RuleContext

func (*ReplaceOffStatementContext) IsReplaceOffStatementContext

func (*ReplaceOffStatementContext) IsReplaceOffStatementContext()

func (*ReplaceOffStatementContext) OFF

func (*ReplaceOffStatementContext) REPLACE

func (*ReplaceOffStatementContext) ToStringTree

func (s *ReplaceOffStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplaceableContext

type ReplaceableContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplaceableContext

func NewEmptyReplaceableContext() *ReplaceableContext

func NewReplaceableContext

func NewReplaceableContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplaceableContext

func (*ReplaceableContext) CharDataLine

func (s *ReplaceableContext) CharDataLine() ICharDataLineContext

func (*ReplaceableContext) CobolWord

func (s *ReplaceableContext) CobolWord() ICobolWordContext

func (*ReplaceableContext) EnterRule

func (s *ReplaceableContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplaceableContext) ExitRule

func (s *ReplaceableContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplaceableContext) GetParser

func (s *ReplaceableContext) GetParser() antlr.Parser

func (*ReplaceableContext) GetRuleContext

func (s *ReplaceableContext) GetRuleContext() antlr.RuleContext

func (*ReplaceableContext) IsReplaceableContext

func (*ReplaceableContext) IsReplaceableContext()

func (*ReplaceableContext) Literal

func (s *ReplaceableContext) Literal() ILiteralContext

func (*ReplaceableContext) PseudoText

func (s *ReplaceableContext) PseudoText() IPseudoTextContext

func (*ReplaceableContext) ToStringTree

func (s *ReplaceableContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplacementContext

type ReplacementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplacementContext

func NewEmptyReplacementContext() *ReplacementContext

func NewReplacementContext

func NewReplacementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplacementContext

func (*ReplacementContext) CharDataLine

func (s *ReplacementContext) CharDataLine() ICharDataLineContext

func (*ReplacementContext) CobolWord

func (s *ReplacementContext) CobolWord() ICobolWordContext

func (*ReplacementContext) EnterRule

func (s *ReplacementContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplacementContext) ExitRule

func (s *ReplacementContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplacementContext) GetParser

func (s *ReplacementContext) GetParser() antlr.Parser

func (*ReplacementContext) GetRuleContext

func (s *ReplacementContext) GetRuleContext() antlr.RuleContext

func (*ReplacementContext) IsReplacementContext

func (*ReplacementContext) IsReplacementContext()

func (*ReplacementContext) Literal

func (s *ReplacementContext) Literal() ILiteralContext

func (*ReplacementContext) PseudoText

func (s *ReplacementContext) PseudoText() IPseudoTextContext

func (*ReplacementContext) ToStringTree

func (s *ReplacementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type ReplacingPhraseContext

type ReplacingPhraseContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyReplacingPhraseContext

func NewEmptyReplacingPhraseContext() *ReplacingPhraseContext

func NewReplacingPhraseContext

func NewReplacingPhraseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ReplacingPhraseContext

func (*ReplacingPhraseContext) AllNEWLINE

func (s *ReplacingPhraseContext) AllNEWLINE() []antlr.TerminalNode

func (*ReplacingPhraseContext) AllReplaceClause

func (s *ReplacingPhraseContext) AllReplaceClause() []IReplaceClauseContext

func (*ReplacingPhraseContext) EnterRule

func (s *ReplacingPhraseContext) EnterRule(listener antlr.ParseTreeListener)

func (*ReplacingPhraseContext) ExitRule

func (s *ReplacingPhraseContext) ExitRule(listener antlr.ParseTreeListener)

func (*ReplacingPhraseContext) GetParser

func (s *ReplacingPhraseContext) GetParser() antlr.Parser

func (*ReplacingPhraseContext) GetRuleContext

func (s *ReplacingPhraseContext) GetRuleContext() antlr.RuleContext

func (*ReplacingPhraseContext) IsReplacingPhraseContext

func (*ReplacingPhraseContext) IsReplacingPhraseContext()

func (*ReplacingPhraseContext) NEWLINE

func (*ReplacingPhraseContext) REPLACING

func (s *ReplacingPhraseContext) REPLACING() antlr.TerminalNode

func (*ReplacingPhraseContext) ReplaceClause

func (s *ReplacingPhraseContext) ReplaceClause(i int) IReplaceClauseContext

func (*ReplacingPhraseContext) ToStringTree

func (s *ReplacingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type SkipStatementContext

type SkipStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptySkipStatementContext

func NewEmptySkipStatementContext() *SkipStatementContext

func NewSkipStatementContext

func NewSkipStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *SkipStatementContext

func (*SkipStatementContext) DOT

func (*SkipStatementContext) EnterRule

func (s *SkipStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*SkipStatementContext) ExitRule

func (s *SkipStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*SkipStatementContext) GetParser

func (s *SkipStatementContext) GetParser() antlr.Parser

func (*SkipStatementContext) GetRuleContext

func (s *SkipStatementContext) GetRuleContext() antlr.RuleContext

func (*SkipStatementContext) IsSkipStatementContext

func (*SkipStatementContext) IsSkipStatementContext()

func (*SkipStatementContext) SKIP1

func (*SkipStatementContext) SKIP2

func (*SkipStatementContext) SKIP3

func (*SkipStatementContext) ToStringTree

func (s *SkipStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type StartRuleContext

type StartRuleContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyStartRuleContext

func NewEmptyStartRuleContext() *StartRuleContext

func NewStartRuleContext

func NewStartRuleContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *StartRuleContext

func (*StartRuleContext) AllCharDataLine

func (s *StartRuleContext) AllCharDataLine() []ICharDataLineContext

func (*StartRuleContext) AllCompilerOptions

func (s *StartRuleContext) AllCompilerOptions() []ICompilerOptionsContext

func (*StartRuleContext) AllCopyStatement

func (s *StartRuleContext) AllCopyStatement() []ICopyStatementContext

func (*StartRuleContext) AllEjectStatement

func (s *StartRuleContext) AllEjectStatement() []IEjectStatementContext

func (*StartRuleContext) AllExecCicsStatement

func (s *StartRuleContext) AllExecCicsStatement() []IExecCicsStatementContext

func (*StartRuleContext) AllExecSqlImsStatement

func (s *StartRuleContext) AllExecSqlImsStatement() []IExecSqlImsStatementContext

func (*StartRuleContext) AllExecSqlStatement

func (s *StartRuleContext) AllExecSqlStatement() []IExecSqlStatementContext

func (*StartRuleContext) AllNEWLINE

func (s *StartRuleContext) AllNEWLINE() []antlr.TerminalNode

func (*StartRuleContext) AllReplaceArea

func (s *StartRuleContext) AllReplaceArea() []IReplaceAreaContext

func (*StartRuleContext) AllReplaceOffStatement

func (s *StartRuleContext) AllReplaceOffStatement() []IReplaceOffStatementContext

func (*StartRuleContext) AllSkipStatement

func (s *StartRuleContext) AllSkipStatement() []ISkipStatementContext

func (*StartRuleContext) AllTitleStatement

func (s *StartRuleContext) AllTitleStatement() []ITitleStatementContext

func (*StartRuleContext) CharDataLine

func (s *StartRuleContext) CharDataLine(i int) ICharDataLineContext

func (*StartRuleContext) CompilerOptions

func (s *StartRuleContext) CompilerOptions(i int) ICompilerOptionsContext

func (*StartRuleContext) CopyStatement

func (s *StartRuleContext) CopyStatement(i int) ICopyStatementContext

func (*StartRuleContext) EOF

func (*StartRuleContext) EjectStatement

func (s *StartRuleContext) EjectStatement(i int) IEjectStatementContext

func (*StartRuleContext) EnterRule

func (s *StartRuleContext) EnterRule(listener antlr.ParseTreeListener)

func (*StartRuleContext) ExecCicsStatement

func (s *StartRuleContext) ExecCicsStatement(i int) IExecCicsStatementContext

func (*StartRuleContext) ExecSqlImsStatement

func (s *StartRuleContext) ExecSqlImsStatement(i int) IExecSqlImsStatementContext

func (*StartRuleContext) ExecSqlStatement

func (s *StartRuleContext) ExecSqlStatement(i int) IExecSqlStatementContext

func (*StartRuleContext) ExitRule

func (s *StartRuleContext) ExitRule(listener antlr.ParseTreeListener)

func (*StartRuleContext) GetParser

func (s *StartRuleContext) GetParser() antlr.Parser

func (*StartRuleContext) GetRuleContext

func (s *StartRuleContext) GetRuleContext() antlr.RuleContext

func (*StartRuleContext) IsStartRuleContext

func (*StartRuleContext) IsStartRuleContext()

func (*StartRuleContext) NEWLINE

func (s *StartRuleContext) NEWLINE(i int) antlr.TerminalNode

func (*StartRuleContext) ReplaceArea

func (s *StartRuleContext) ReplaceArea(i int) IReplaceAreaContext

func (*StartRuleContext) ReplaceOffStatement

func (s *StartRuleContext) ReplaceOffStatement(i int) IReplaceOffStatementContext

func (*StartRuleContext) SkipStatement

func (s *StartRuleContext) SkipStatement(i int) ISkipStatementContext

func (*StartRuleContext) TitleStatement

func (s *StartRuleContext) TitleStatement(i int) ITitleStatementContext

func (*StartRuleContext) ToStringTree

func (s *StartRuleContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

type TitleStatementContext

type TitleStatementContext struct {
	*antlr.BaseParserRuleContext
	// contains filtered or unexported fields
}

func NewEmptyTitleStatementContext

func NewEmptyTitleStatementContext() *TitleStatementContext

func NewTitleStatementContext

func NewTitleStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *TitleStatementContext

func (*TitleStatementContext) DOT

func (*TitleStatementContext) EnterRule

func (s *TitleStatementContext) EnterRule(listener antlr.ParseTreeListener)

func (*TitleStatementContext) ExitRule

func (s *TitleStatementContext) ExitRule(listener antlr.ParseTreeListener)

func (*TitleStatementContext) GetParser

func (s *TitleStatementContext) GetParser() antlr.Parser

func (*TitleStatementContext) GetRuleContext

func (s *TitleStatementContext) GetRuleContext() antlr.RuleContext

func (*TitleStatementContext) IsTitleStatementContext

func (*TitleStatementContext) IsTitleStatementContext()

func (*TitleStatementContext) Literal

func (*TitleStatementContext) TITLE

func (*TitleStatementContext) ToStringTree

func (s *TitleStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL