cobol85

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/cobol85"

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

type exampleListener struct {
	*cobol85.BaseCobol85Listener
}

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 := cobol85.NewCobol85Lexer(is)
	stream := antlr.NewCommonTokenStream(lexer, antlr.TokenDefaultChannel)

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

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

Index

Examples

Constants

View Source
const (
	Cobol85LexerABORT                  = 1
	Cobol85LexerACCEPT                 = 2
	Cobol85LexerACCESS                 = 3
	Cobol85LexerADD                    = 4
	Cobol85LexerADDRESS                = 5
	Cobol85LexerADVANCING              = 6
	Cobol85LexerAFTER                  = 7
	Cobol85LexerALIGNED                = 8
	Cobol85LexerALL                    = 9
	Cobol85LexerALPHABET               = 10
	Cobol85LexerALPHABETIC             = 11
	Cobol85LexerALPHABETIC_LOWER       = 12
	Cobol85LexerALPHABETIC_UPPER       = 13
	Cobol85LexerALPHANUMERIC           = 14
	Cobol85LexerALPHANUMERIC_EDITED    = 15
	Cobol85LexerALSO                   = 16
	Cobol85LexerALTER                  = 17
	Cobol85LexerALTERNATE              = 18
	Cobol85LexerAND                    = 19
	Cobol85LexerANY                    = 20
	Cobol85LexerARE                    = 21
	Cobol85LexerAREA                   = 22
	Cobol85LexerAREAS                  = 23
	Cobol85LexerAS                     = 24
	Cobol85LexerASCENDING              = 25
	Cobol85LexerASCII                  = 26
	Cobol85LexerASSIGN                 = 27
	Cobol85LexerASSOCIATED_DATA        = 28
	Cobol85LexerASSOCIATED_DATA_LENGTH = 29
	Cobol85LexerAT                     = 30
	Cobol85LexerATTRIBUTE              = 31
	Cobol85LexerAUTHOR                 = 32
	Cobol85LexerAUTO                   = 33
	Cobol85LexerAUTO_SKIP              = 34
	Cobol85LexerBACKGROUND_COLOR       = 35
	Cobol85LexerBACKGROUND_COLOUR      = 36
	Cobol85LexerBASIS                  = 37
	Cobol85LexerBEEP                   = 38
	Cobol85LexerBEFORE                 = 39
	Cobol85LexerBEGINNING              = 40
	Cobol85LexerBELL                   = 41
	Cobol85LexerBINARY                 = 42
	Cobol85LexerBIT                    = 43
	Cobol85LexerBLANK                  = 44
	Cobol85LexerBLINK                  = 45
	Cobol85LexerBLOCK                  = 46
	Cobol85LexerBOUNDS                 = 47
	Cobol85LexerBOTTOM                 = 48
	Cobol85LexerBY                     = 49
	Cobol85LexerBYFUNCTION             = 50
	Cobol85LexerBYTITLE                = 51
	Cobol85LexerCALL                   = 52
	Cobol85LexerCANCEL                 = 53
	Cobol85LexerCAPABLE                = 54
	Cobol85LexerCCSVERSION             = 55
	Cobol85LexerCD                     = 56
	Cobol85LexerCF                     = 57
	Cobol85LexerCH                     = 58
	Cobol85LexerCHAINING               = 59
	Cobol85LexerCHANGED                = 60
	Cobol85LexerCHANNEL                = 61
	Cobol85LexerCHARACTER              = 62
	Cobol85LexerCHARACTERS             = 63
	Cobol85LexerCLASS                  = 64
	Cobol85LexerCLASS_ID               = 65
	Cobol85LexerCLOCK_UNITS            = 66
	Cobol85LexerCLOSE                  = 67
	Cobol85LexerCLOSE_DISPOSITION      = 68
	Cobol85LexerCOBOL                  = 69
	Cobol85LexerCODE                   = 70
	Cobol85LexerCODE_SET               = 71
	Cobol85LexerCOLLATING              = 72
	Cobol85LexerCOL                    = 73
	Cobol85LexerCOLUMN                 = 74
	Cobol85LexerCOM_REG                = 75
	Cobol85LexerCOMMA                  = 76
	Cobol85LexerCOMMITMENT             = 77
	Cobol85LexerCOMMON                 = 78
	Cobol85LexerCOMMUNICATION          = 79
	Cobol85LexerCOMP                   = 80
	Cobol85LexerCOMP_1                 = 81
	Cobol85LexerCOMP_2                 = 82
	Cobol85LexerCOMP_3                 = 83
	Cobol85LexerCOMP_4                 = 84
	Cobol85LexerCOMP_5                 = 85
	Cobol85LexerCOMPUTATIONAL          = 86
	Cobol85LexerCOMPUTATIONAL_1        = 87
	Cobol85LexerCOMPUTATIONAL_2        = 88
	Cobol85LexerCOMPUTATIONAL_3        = 89
	Cobol85LexerCOMPUTATIONAL_4        = 90
	Cobol85LexerCOMPUTATIONAL_5        = 91
	Cobol85LexerCOMPUTE                = 92
	Cobol85LexerCONFIGURATION          = 93
	Cobol85LexerCONTAINS               = 94
	Cobol85LexerCONTENT                = 95
	Cobol85LexerCONTINUE               = 96
	Cobol85LexerCONTROL                = 97
	Cobol85LexerCONTROL_POINT          = 98
	Cobol85LexerCONTROLS               = 99
	Cobol85LexerCONVENTION             = 100
	Cobol85LexerCONVERTING             = 101
	Cobol85LexerCOPY                   = 102
	Cobol85LexerCORR                   = 103
	Cobol85LexerCORRESPONDING          = 104
	Cobol85LexerCOUNT                  = 105
	Cobol85LexerCRUNCH                 = 106
	Cobol85LexerCURRENCY               = 107
	Cobol85LexerCURSOR                 = 108
	Cobol85LexerDATA                   = 109
	Cobol85LexerDATA_BASE              = 110
	Cobol85LexerDATE                   = 111
	Cobol85LexerDATE_COMPILED          = 112
	Cobol85LexerDATE_WRITTEN           = 113
	Cobol85LexerDAY                    = 114
	Cobol85LexerDAY_OF_WEEK            = 115
	Cobol85LexerDBCS                   = 116
	Cobol85LexerDE                     = 117
	Cobol85LexerDEBUG_CONTENTS         = 118
	Cobol85LexerDEBUG_ITEM             = 119
	Cobol85LexerDEBUG_LINE             = 120
	Cobol85LexerDEBUG_NAME             = 121
	Cobol85LexerDEBUG_SUB_1            = 122
	Cobol85LexerDEBUG_SUB_2            = 123
	Cobol85LexerDEBUG_SUB_3            = 124
	Cobol85LexerDEBUGGING              = 125
	Cobol85LexerDECIMAL_POINT          = 126
	Cobol85LexerDECLARATIVES           = 127
	Cobol85LexerDEFAULT                = 128
	Cobol85LexerDEFAULT_DISPLAY        = 129
	Cobol85LexerDEFINITION             = 130
	Cobol85LexerDELETE                 = 131
	Cobol85LexerDELIMITED              = 132
	Cobol85LexerDELIMITER              = 133
	Cobol85LexerDEPENDING              = 134
	Cobol85LexerDESCENDING             = 135
	Cobol85LexerDESTINATION            = 136
	Cobol85LexerDETAIL                 = 137
	Cobol85LexerDFHRESP                = 138
	Cobol85LexerDFHVALUE               = 139
	Cobol85LexerDISABLE                = 140
	Cobol85LexerDISK                   = 141
	Cobol85LexerDISPLAY                = 142
	Cobol85LexerDISPLAY_1              = 143
	Cobol85LexerDIVIDE                 = 144
	Cobol85LexerDIVISION               = 145
	Cobol85LexerDONTCARE               = 146
	Cobol85LexerDOUBLE                 = 147
	Cobol85LexerDOWN                   = 148
	Cobol85LexerDUPLICATES             = 149
	Cobol85LexerDYNAMIC                = 150
	Cobol85LexerEBCDIC                 = 151
	Cobol85LexerEGCS                   = 152
	Cobol85LexerEGI                    = 153
	Cobol85LexerELSE                   = 154
	Cobol85LexerEMI                    = 155
	Cobol85LexerEMPTY_CHECK            = 156
	Cobol85LexerENABLE                 = 157
	Cobol85LexerEND                    = 158
	Cobol85LexerEND_ACCEPT             = 159
	Cobol85LexerEND_ADD                = 160
	Cobol85LexerEND_CALL               = 161
	Cobol85LexerEND_COMPUTE            = 162
	Cobol85LexerEND_DELETE             = 163
	Cobol85LexerEND_DIVIDE             = 164
	Cobol85LexerEND_EVALUATE           = 165
	Cobol85LexerEND_IF                 = 166
	Cobol85LexerEND_MULTIPLY           = 167
	Cobol85LexerEND_OF_PAGE            = 168
	Cobol85LexerEND_PERFORM            = 169
	Cobol85LexerEND_READ               = 170
	Cobol85LexerEND_RECEIVE            = 171
	Cobol85LexerEND_RETURN             = 172
	Cobol85LexerEND_REWRITE            = 173
	Cobol85LexerEND_SEARCH             = 174
	Cobol85LexerEND_START              = 175
	Cobol85LexerEND_STRING             = 176
	Cobol85LexerEND_SUBTRACT           = 177
	Cobol85LexerEND_UNSTRING           = 178
	Cobol85LexerEND_WRITE              = 179
	Cobol85LexerENDING                 = 180
	Cobol85LexerENTER                  = 181
	Cobol85LexerENTRY                  = 182
	Cobol85LexerENTRY_PROCEDURE        = 183
	Cobol85LexerENVIRONMENT            = 184
	Cobol85LexerEOP                    = 185
	Cobol85LexerEQUAL                  = 186
	Cobol85LexerERASE                  = 187
	Cobol85LexerERROR                  = 188
	Cobol85LexerEOL                    = 189
	Cobol85LexerEOS                    = 190
	Cobol85LexerESCAPE                 = 191
	Cobol85LexerESI                    = 192
	Cobol85LexerEVALUATE               = 193
	Cobol85LexerEVENT                  = 194
	Cobol85LexerEVERY                  = 195
	Cobol85LexerEXCEPTION              = 196
	Cobol85LexerEXCLUSIVE              = 197
	Cobol85LexerEXHIBIT                = 198
	Cobol85LexerEXIT                   = 199
	Cobol85LexerEXPORT                 = 200
	Cobol85LexerEXTEND                 = 201
	Cobol85LexerEXTENDED               = 202
	Cobol85LexerEXTERNAL               = 203
	Cobol85LexerFALSE                  = 204
	Cobol85LexerFD                     = 205
	Cobol85LexerFILE                   = 206
	Cobol85LexerFILE_CONTROL           = 207
	Cobol85LexerFILLER                 = 208
	Cobol85LexerFINAL                  = 209
	Cobol85LexerFIRST                  = 210
	Cobol85LexerFOOTING                = 211
	Cobol85LexerFOR                    = 212
	Cobol85LexerFOREGROUND_COLOR       = 213
	Cobol85LexerFOREGROUND_COLOUR      = 214
	Cobol85LexerFROM                   = 215
	Cobol85LexerFULL                   = 216
	Cobol85LexerFUNCTION               = 217
	Cobol85LexerFUNCTIONNAME           = 218
	Cobol85LexerFUNCTION_POINTER       = 219
	Cobol85LexerGENERATE               = 220
	Cobol85LexerGOBACK                 = 221
	Cobol85LexerGIVING                 = 222
	Cobol85LexerGLOBAL                 = 223
	Cobol85LexerGO                     = 224
	Cobol85LexerGREATER                = 225
	Cobol85LexerGRID                   = 226
	Cobol85LexerGROUP                  = 227
	Cobol85LexerHEADING                = 228
	Cobol85LexerHIGHLIGHT              = 229
	Cobol85LexerHIGH_VALUE             = 230
	Cobol85LexerHIGH_VALUES            = 231
	Cobol85LexerI_O                    = 232
	Cobol85LexerI_O_CONTROL            = 233
	Cobol85LexerID                     = 234
	Cobol85LexerIDENTIFICATION         = 235
	Cobol85LexerIF                     = 236
	Cobol85LexerIMPLICIT               = 237
	Cobol85LexerIMPORT                 = 238
	Cobol85LexerIN                     = 239
	Cobol85LexerINDEX                  = 240
	Cobol85LexerINDEXED                = 241
	Cobol85LexerINDICATE               = 242
	Cobol85LexerINITIAL                = 243
	Cobol85LexerINITIALIZE             = 244
	Cobol85LexerINITIATE               = 245
	Cobol85LexerINPUT                  = 246
	Cobol85LexerINPUT_OUTPUT           = 247
	Cobol85LexerINSPECT                = 248
	Cobol85LexerINSTALLATION           = 249
	Cobol85LexerINTEGER                = 250
	Cobol85LexerINTO                   = 251
	Cobol85LexerINVALID                = 252
	Cobol85LexerINVOKE                 = 253
	Cobol85LexerIS                     = 254
	Cobol85LexerJUST                   = 255
	Cobol85LexerJUSTIFIED              = 256
	Cobol85LexerKANJI                  = 257
	Cobol85LexerKEPT                   = 258
	Cobol85LexerKEY                    = 259
	Cobol85LexerKEYBOARD               = 260
	Cobol85LexerLABEL                  = 261
	Cobol85LexerLANGUAGE               = 262
	Cobol85LexerLAST                   = 263
	Cobol85LexerLB                     = 264
	Cobol85LexerLD                     = 265
	Cobol85LexerLEADING                = 266
	Cobol85LexerLEFT                   = 267
	Cobol85LexerLEFTLINE               = 268
	Cobol85LexerLENGTH                 = 269
	Cobol85LexerLENGTH_CHECK           = 270
	Cobol85LexerLESS                   = 271
	Cobol85LexerLIBACCESS              = 272
	Cobol85LexerLIBPARAMETER           = 273
	Cobol85LexerLIBRARY                = 274
	Cobol85LexerLIMIT                  = 275
	Cobol85LexerLIMITS                 = 276
	Cobol85LexerLINAGE                 = 277
	Cobol85LexerLINAGE_COUNTER         = 278
	Cobol85LexerLINE                   = 279
	Cobol85LexerLINES                  = 280
	Cobol85LexerLINE_COUNTER           = 281
	Cobol85LexerLINKAGE                = 282
	Cobol85LexerLIST                   = 283
	Cobol85LexerLOCAL                  = 284
	Cobol85LexerLOCAL_STORAGE          = 285
	Cobol85LexerLOCK                   = 286
	Cobol85LexerLONG_DATE              = 287
	Cobol85LexerLONG_TIME              = 288
	Cobol85LexerLOWER                  = 289
	Cobol85LexerLOWLIGHT               = 290
	Cobol85LexerLOW_VALUE              = 291
	Cobol85LexerLOW_VALUES             = 292
	Cobol85LexerMEMORY                 = 293
	Cobol85LexerMERGE                  = 294
	Cobol85LexerMESSAGE                = 295
	Cobol85LexerMMDDYYYY               = 296
	Cobol85LexerMODE                   = 297
	Cobol85LexerMODULES                = 298
	Cobol85LexerMORE_LABELS            = 299
	Cobol85LexerMOVE                   = 300
	Cobol85LexerMULTIPLE               = 301
	Cobol85LexerMULTIPLY               = 302
	Cobol85LexerNAMED                  = 303
	Cobol85LexerNATIONAL               = 304
	Cobol85LexerNATIONAL_EDITED        = 305
	Cobol85LexerNATIVE                 = 306
	Cobol85LexerNEGATIVE               = 307
	Cobol85LexerNETWORK                = 308
	Cobol85LexerNEXT                   = 309
	Cobol85LexerNO                     = 310
	Cobol85LexerNO_ECHO                = 311
	Cobol85LexerNOT                    = 312
	Cobol85LexerNULL                   = 313
	Cobol85LexerNULLS                  = 314
	Cobol85LexerNUMBER                 = 315
	Cobol85LexerNUMERIC                = 316
	Cobol85LexerNUMERIC_DATE           = 317
	Cobol85LexerNUMERIC_EDITED         = 318
	Cobol85LexerNUMERIC_TIME           = 319
	Cobol85LexerOBJECT_COMPUTER        = 320
	Cobol85LexerOCCURS                 = 321
	Cobol85LexerODT                    = 322
	Cobol85LexerOF                     = 323
	Cobol85LexerOFF                    = 324
	Cobol85LexerOMITTED                = 325
	Cobol85LexerON                     = 326
	Cobol85LexerOPEN                   = 327
	Cobol85LexerOPTIONAL               = 328
	Cobol85LexerOR                     = 329
	Cobol85LexerORDER                  = 330
	Cobol85LexerORDERLY                = 331
	Cobol85LexerORGANIZATION           = 332
	Cobol85LexerOTHER                  = 333
	Cobol85LexerOUTPUT                 = 334
	Cobol85LexerOVERFLOW               = 335
	Cobol85LexerOVERLINE               = 336
	Cobol85LexerOWN                    = 337
	Cobol85LexerPACKED_DECIMAL         = 338
	Cobol85LexerPADDING                = 339
	Cobol85LexerPAGE                   = 340
	Cobol85LexerPAGE_COUNTER           = 341
	Cobol85LexerPASSWORD               = 342
	Cobol85LexerPERFORM                = 343
	Cobol85LexerPF                     = 344
	Cobol85LexerPH                     = 345
	Cobol85LexerPIC                    = 346
	Cobol85LexerPICTURE                = 347
	Cobol85LexerPLUS                   = 348
	Cobol85LexerPOINTER                = 349
	Cobol85LexerPOSITION               = 350
	Cobol85LexerPOSITIVE               = 351
	Cobol85LexerPORT                   = 352
	Cobol85LexerPRINTER                = 353
	Cobol85LexerPRINTING               = 354
	Cobol85LexerPRIVATE                = 355
	Cobol85LexerPROCEDURE              = 356
	Cobol85LexerPROCEDURE_POINTER      = 357
	Cobol85LexerPROCEDURES             = 358
	Cobol85LexerPROCEED                = 359
	Cobol85LexerPROCESS                = 360
	Cobol85LexerPROGRAM                = 361
	Cobol85LexerPROGRAM_ID             = 362
	Cobol85LexerPROGRAM_LIBRARY        = 363
	Cobol85LexerPROMPT                 = 364
	Cobol85LexerPURGE                  = 365
	Cobol85LexerQUEUE                  = 366
	Cobol85LexerQUOTE                  = 367
	Cobol85LexerQUOTES                 = 368
	Cobol85LexerRANDOM                 = 369
	Cobol85LexerREADER                 = 370
	Cobol85LexerREMOTE                 = 371
	Cobol85LexerRD                     = 372
	Cobol85LexerREAL                   = 373
	Cobol85LexerREAD                   = 374
	Cobol85LexerRECEIVE                = 375
	Cobol85LexerRECEIVED               = 376
	Cobol85LexerRECORD                 = 377
	Cobol85LexerRECORDING              = 378
	Cobol85LexerRECORDS                = 379
	Cobol85LexerRECURSIVE              = 380
	Cobol85LexerREDEFINES              = 381
	Cobol85LexerREEL                   = 382
	Cobol85LexerREF                    = 383
	Cobol85LexerREFERENCE              = 384
	Cobol85LexerREFERENCES             = 385
	Cobol85LexerRELATIVE               = 386
	Cobol85LexerRELEASE                = 387
	Cobol85LexerREMAINDER              = 388
	Cobol85LexerREMARKS                = 389
	Cobol85LexerREMOVAL                = 390
	Cobol85LexerREMOVE                 = 391
	Cobol85LexerRENAMES                = 392
	Cobol85LexerREPLACE                = 393
	Cobol85LexerREPLACING              = 394
	Cobol85LexerREPORT                 = 395
	Cobol85LexerREPORTING              = 396
	Cobol85LexerREPORTS                = 397
	Cobol85LexerREQUIRED               = 398
	Cobol85LexerRERUN                  = 399
	Cobol85LexerRESERVE                = 400
	Cobol85LexerREVERSE_VIDEO          = 401
	Cobol85LexerRESET                  = 402
	Cobol85LexerRETURN                 = 403
	Cobol85LexerRETURN_CODE            = 404
	Cobol85LexerRETURNING              = 405
	Cobol85LexerREVERSED               = 406
	Cobol85LexerREWIND                 = 407
	Cobol85LexerREWRITE                = 408
	Cobol85LexerRF                     = 409
	Cobol85LexerRH                     = 410
	Cobol85LexerRIGHT                  = 411
	Cobol85LexerROUNDED                = 412
	Cobol85LexerRUN                    = 413
	Cobol85LexerSAME                   = 414
	Cobol85LexerSAVE                   = 415
	Cobol85LexerSCREEN                 = 416
	Cobol85LexerSD                     = 417
	Cobol85LexerSEARCH                 = 418
	Cobol85LexerSECTION                = 419
	Cobol85LexerSECURE                 = 420
	Cobol85LexerSECURITY               = 421
	Cobol85LexerSEGMENT                = 422
	Cobol85LexerSEGMENT_LIMIT          = 423
	Cobol85LexerSELECT                 = 424
	Cobol85LexerSEND                   = 425
	Cobol85LexerSENTENCE               = 426
	Cobol85LexerSEPARATE               = 427
	Cobol85LexerSEQUENCE               = 428
	Cobol85LexerSEQUENTIAL             = 429
	Cobol85LexerSET                    = 430
	Cobol85LexerSHARED                 = 431
	Cobol85LexerSHAREDBYALL            = 432
	Cobol85LexerSHAREDBYRUNUNIT        = 433
	Cobol85LexerSHARING                = 434
	Cobol85LexerSHIFT_IN               = 435
	Cobol85LexerSHIFT_OUT              = 436
	Cobol85LexerSHORT_DATE             = 437
	Cobol85LexerSIGN                   = 438
	Cobol85LexerSIZE                   = 439
	Cobol85LexerSORT                   = 440
	Cobol85LexerSORT_CONTROL           = 441
	Cobol85LexerSORT_CORE_SIZE         = 442
	Cobol85LexerSORT_FILE_SIZE         = 443
	Cobol85LexerSORT_MERGE             = 444
	Cobol85LexerSORT_MESSAGE           = 445
	Cobol85LexerSORT_MODE_SIZE         = 446
	Cobol85LexerSORT_RETURN            = 447
	Cobol85LexerSOURCE                 = 448
	Cobol85LexerSOURCE_COMPUTER        = 449
	Cobol85LexerSPACE                  = 450
	Cobol85LexerSPACES                 = 451
	Cobol85LexerSPECIAL_NAMES          = 452
	Cobol85LexerSTANDARD               = 453
	Cobol85LexerSTANDARD_1             = 454
	Cobol85LexerSTANDARD_2             = 455
	Cobol85LexerSTART                  = 456
	Cobol85LexerSTATUS                 = 457
	Cobol85LexerSTOP                   = 458
	Cobol85LexerSTRING                 = 459
	Cobol85LexerSUB_QUEUE_1            = 460
	Cobol85LexerSUB_QUEUE_2            = 461
	Cobol85LexerSUB_QUEUE_3            = 462
	Cobol85LexerSUBTRACT               = 463
	Cobol85LexerSUM                    = 464
	Cobol85LexerSUPPRESS               = 465
	Cobol85LexerSYMBOL                 = 466
	Cobol85LexerSYMBOLIC               = 467
	Cobol85LexerSYNC                   = 468
	Cobol85LexerSYNCHRONIZED           = 469
	Cobol85LexerTABLE                  = 470
	Cobol85LexerTALLY                  = 471
	Cobol85LexerTALLYING               = 472
	Cobol85LexerTASK                   = 473
	Cobol85LexerTAPE                   = 474
	Cobol85LexerTERMINAL               = 475
	Cobol85LexerTERMINATE              = 476
	Cobol85LexerTEST                   = 477
	Cobol85LexerTEXT                   = 478
	Cobol85LexerTHAN                   = 479
	Cobol85LexerTHEN                   = 480
	Cobol85LexerTHREAD                 = 481
	Cobol85LexerTHREAD_LOCAL           = 482
	Cobol85LexerTHROUGH                = 483
	Cobol85LexerTHRU                   = 484
	Cobol85LexerTIME                   = 485
	Cobol85LexerTIMER                  = 486
	Cobol85LexerTIMES                  = 487
	Cobol85LexerTITLE                  = 488
	Cobol85LexerTO                     = 489
	Cobol85LexerTODAYS_DATE            = 490
	Cobol85LexerTODAYS_NAME            = 491
	Cobol85LexerTOP                    = 492
	Cobol85LexerTRAILING               = 493
	Cobol85LexerTRUE                   = 494
	Cobol85LexerTRUNCATED              = 495
	Cobol85LexerTYPE                   = 496
	Cobol85LexerTYPEDEF                = 497
	Cobol85LexerUNDERLINE              = 498
	Cobol85LexerUNIT                   = 499
	Cobol85LexerUNSTRING               = 500
	Cobol85LexerUNTIL                  = 501
	Cobol85LexerUP                     = 502
	Cobol85LexerUPON                   = 503
	Cobol85LexerUSAGE                  = 504
	Cobol85LexerUSE                    = 505
	Cobol85LexerUSING                  = 506
	Cobol85LexerVALUE                  = 507
	Cobol85LexerVALUES                 = 508
	Cobol85LexerVARYING                = 509
	Cobol85LexerVIRTUAL                = 510
	Cobol85LexerWAIT                   = 511
	Cobol85LexerWHEN                   = 512
	Cobol85LexerWHEN_COMPILED          = 513
	Cobol85LexerWITH                   = 514
	Cobol85LexerWORDS                  = 515
	Cobol85LexerWORKING_STORAGE        = 516
	Cobol85LexerWRITE                  = 517
	Cobol85LexerYEAR                   = 518
	Cobol85LexerYYYYMMDD               = 519
	Cobol85LexerYYYYDDD                = 520
	Cobol85LexerZERO                   = 521
	Cobol85LexerZERO_FILL              = 522
	Cobol85LexerZEROS                  = 523
	Cobol85LexerZEROES                 = 524
	Cobol85LexerAMPCHAR                = 525
	Cobol85LexerASTERISKCHAR           = 526
	Cobol85LexerDOUBLEASTERISKCHAR     = 527
	Cobol85LexerCOLONCHAR              = 528
	Cobol85LexerCOMMACHAR              = 529
	Cobol85LexerCOMMENTENTRYTAG        = 530
	Cobol85LexerCOMMENTTAG             = 531
	Cobol85LexerDOLLARCHAR             = 532
	Cobol85LexerDOUBLEQUOTE            = 533
	Cobol85LexerDOT_FS                 = 534
	Cobol85LexerDOT                    = 535
	Cobol85LexerEQUALCHAR              = 536
	Cobol85LexerEXECCICSTAG            = 537
	Cobol85LexerEXECSQLTAG             = 538
	Cobol85LexerEXECSQLIMSTAG          = 539
	Cobol85LexerLESSTHANCHAR           = 540
	Cobol85LexerLESSTHANOREQUAL        = 541
	Cobol85LexerLPARENCHAR             = 542
	Cobol85LexerMINUSCHAR              = 543
	Cobol85LexerMORETHANCHAR           = 544
	Cobol85LexerMORETHANOREQUAL        = 545
	Cobol85LexerNOTEQUALCHAR           = 546
	Cobol85LexerPLUSCHAR               = 547
	Cobol85LexerSINGLEQUOTE            = 548
	Cobol85LexerRPARENCHAR             = 549
	Cobol85LexerSLASHCHAR              = 550
	Cobol85LexerNONNUMERICLITERAL      = 551
	Cobol85LexerLEVEL_NUMBER_66        = 552
	Cobol85LexerLEVEL_NUMBER_77        = 553
	Cobol85LexerLEVEL_NUMBER_88        = 554
	Cobol85LexerINTEGERLITERAL         = 555
	Cobol85LexerNUMERICLITERAL         = 556
	Cobol85LexerIDENTIFIER             = 557
	Cobol85LexerNEWLINE                = 558
	Cobol85LexerEXECCICSLINE           = 559
	Cobol85LexerEXECSQLIMSLINE         = 560
	Cobol85LexerEXECSQLLINE            = 561
	Cobol85LexerCOMMENTENTRYLINE       = 562
	Cobol85LexerCOMMENTLINE            = 563
	Cobol85LexerWS                     = 564
	Cobol85LexerSEPARATOR              = 565
)

Cobol85Lexer tokens.

View Source
const (
	Cobol85ParserEOF                    = antlr.TokenEOF
	Cobol85ParserABORT                  = 1
	Cobol85ParserACCEPT                 = 2
	Cobol85ParserACCESS                 = 3
	Cobol85ParserADD                    = 4
	Cobol85ParserADDRESS                = 5
	Cobol85ParserADVANCING              = 6
	Cobol85ParserAFTER                  = 7
	Cobol85ParserALIGNED                = 8
	Cobol85ParserALL                    = 9
	Cobol85ParserALPHABET               = 10
	Cobol85ParserALPHABETIC             = 11
	Cobol85ParserALPHABETIC_LOWER       = 12
	Cobol85ParserALPHABETIC_UPPER       = 13
	Cobol85ParserALPHANUMERIC           = 14
	Cobol85ParserALPHANUMERIC_EDITED    = 15
	Cobol85ParserALSO                   = 16
	Cobol85ParserALTER                  = 17
	Cobol85ParserALTERNATE              = 18
	Cobol85ParserAND                    = 19
	Cobol85ParserANY                    = 20
	Cobol85ParserARE                    = 21
	Cobol85ParserAREA                   = 22
	Cobol85ParserAREAS                  = 23
	Cobol85ParserAS                     = 24
	Cobol85ParserASCENDING              = 25
	Cobol85ParserASCII                  = 26
	Cobol85ParserASSIGN                 = 27
	Cobol85ParserASSOCIATED_DATA        = 28
	Cobol85ParserASSOCIATED_DATA_LENGTH = 29
	Cobol85ParserAT                     = 30
	Cobol85ParserATTRIBUTE              = 31
	Cobol85ParserAUTHOR                 = 32
	Cobol85ParserAUTO                   = 33
	Cobol85ParserAUTO_SKIP              = 34
	Cobol85ParserBACKGROUND_COLOR       = 35
	Cobol85ParserBACKGROUND_COLOUR      = 36
	Cobol85ParserBASIS                  = 37
	Cobol85ParserBEEP                   = 38
	Cobol85ParserBEFORE                 = 39
	Cobol85ParserBEGINNING              = 40
	Cobol85ParserBELL                   = 41
	Cobol85ParserBINARY                 = 42
	Cobol85ParserBIT                    = 43
	Cobol85ParserBLANK                  = 44
	Cobol85ParserBLINK                  = 45
	Cobol85ParserBLOCK                  = 46
	Cobol85ParserBOUNDS                 = 47
	Cobol85ParserBOTTOM                 = 48
	Cobol85ParserBY                     = 49
	Cobol85ParserBYFUNCTION             = 50
	Cobol85ParserBYTITLE                = 51
	Cobol85ParserCALL                   = 52
	Cobol85ParserCANCEL                 = 53
	Cobol85ParserCAPABLE                = 54
	Cobol85ParserCCSVERSION             = 55
	Cobol85ParserCD                     = 56
	Cobol85ParserCF                     = 57
	Cobol85ParserCH                     = 58
	Cobol85ParserCHAINING               = 59
	Cobol85ParserCHANGED                = 60
	Cobol85ParserCHANNEL                = 61
	Cobol85ParserCHARACTER              = 62
	Cobol85ParserCHARACTERS             = 63
	Cobol85ParserCLASS                  = 64
	Cobol85ParserCLASS_ID               = 65
	Cobol85ParserCLOCK_UNITS            = 66
	Cobol85ParserCLOSE                  = 67
	Cobol85ParserCLOSE_DISPOSITION      = 68
	Cobol85ParserCOBOL                  = 69
	Cobol85ParserCODE                   = 70
	Cobol85ParserCODE_SET               = 71
	Cobol85ParserCOLLATING              = 72
	Cobol85ParserCOL                    = 73
	Cobol85ParserCOLUMN                 = 74
	Cobol85ParserCOM_REG                = 75
	Cobol85ParserCOMMA                  = 76
	Cobol85ParserCOMMITMENT             = 77
	Cobol85ParserCOMMON                 = 78
	Cobol85ParserCOMMUNICATION          = 79
	Cobol85ParserCOMP                   = 80
	Cobol85ParserCOMP_1                 = 81
	Cobol85ParserCOMP_2                 = 82
	Cobol85ParserCOMP_3                 = 83
	Cobol85ParserCOMP_4                 = 84
	Cobol85ParserCOMP_5                 = 85
	Cobol85ParserCOMPUTATIONAL          = 86
	Cobol85ParserCOMPUTATIONAL_1        = 87
	Cobol85ParserCOMPUTATIONAL_2        = 88
	Cobol85ParserCOMPUTATIONAL_3        = 89
	Cobol85ParserCOMPUTATIONAL_4        = 90
	Cobol85ParserCOMPUTATIONAL_5        = 91
	Cobol85ParserCOMPUTE                = 92
	Cobol85ParserCONFIGURATION          = 93
	Cobol85ParserCONTAINS               = 94
	Cobol85ParserCONTENT                = 95
	Cobol85ParserCONTINUE               = 96
	Cobol85ParserCONTROL                = 97
	Cobol85ParserCONTROL_POINT          = 98
	Cobol85ParserCONTROLS               = 99
	Cobol85ParserCONVENTION             = 100
	Cobol85ParserCONVERTING             = 101
	Cobol85ParserCOPY                   = 102
	Cobol85ParserCORR                   = 103
	Cobol85ParserCORRESPONDING          = 104
	Cobol85ParserCOUNT                  = 105
	Cobol85ParserCRUNCH                 = 106
	Cobol85ParserCURRENCY               = 107
	Cobol85ParserCURSOR                 = 108
	Cobol85ParserDATA                   = 109
	Cobol85ParserDATA_BASE              = 110
	Cobol85ParserDATE                   = 111
	Cobol85ParserDATE_COMPILED          = 112
	Cobol85ParserDATE_WRITTEN           = 113
	Cobol85ParserDAY                    = 114
	Cobol85ParserDAY_OF_WEEK            = 115
	Cobol85ParserDBCS                   = 116
	Cobol85ParserDE                     = 117
	Cobol85ParserDEBUG_CONTENTS         = 118
	Cobol85ParserDEBUG_ITEM             = 119
	Cobol85ParserDEBUG_LINE             = 120
	Cobol85ParserDEBUG_NAME             = 121
	Cobol85ParserDEBUG_SUB_1            = 122
	Cobol85ParserDEBUG_SUB_2            = 123
	Cobol85ParserDEBUG_SUB_3            = 124
	Cobol85ParserDEBUGGING              = 125
	Cobol85ParserDECIMAL_POINT          = 126
	Cobol85ParserDECLARATIVES           = 127
	Cobol85ParserDEFAULT                = 128
	Cobol85ParserDEFAULT_DISPLAY        = 129
	Cobol85ParserDEFINITION             = 130
	Cobol85ParserDELETE                 = 131
	Cobol85ParserDELIMITED              = 132
	Cobol85ParserDELIMITER              = 133
	Cobol85ParserDEPENDING              = 134
	Cobol85ParserDESCENDING             = 135
	Cobol85ParserDESTINATION            = 136
	Cobol85ParserDETAIL                 = 137
	Cobol85ParserDFHRESP                = 138
	Cobol85ParserDFHVALUE               = 139
	Cobol85ParserDISABLE                = 140
	Cobol85ParserDISK                   = 141
	Cobol85ParserDISPLAY                = 142
	Cobol85ParserDISPLAY_1              = 143
	Cobol85ParserDIVIDE                 = 144
	Cobol85ParserDIVISION               = 145
	Cobol85ParserDONTCARE               = 146
	Cobol85ParserDOUBLE                 = 147
	Cobol85ParserDOWN                   = 148
	Cobol85ParserDUPLICATES             = 149
	Cobol85ParserDYNAMIC                = 150
	Cobol85ParserEBCDIC                 = 151
	Cobol85ParserEGCS                   = 152
	Cobol85ParserEGI                    = 153
	Cobol85ParserELSE                   = 154
	Cobol85ParserEMI                    = 155
	Cobol85ParserEMPTY_CHECK            = 156
	Cobol85ParserENABLE                 = 157
	Cobol85ParserEND                    = 158
	Cobol85ParserEND_ACCEPT             = 159
	Cobol85ParserEND_ADD                = 160
	Cobol85ParserEND_CALL               = 161
	Cobol85ParserEND_COMPUTE            = 162
	Cobol85ParserEND_DELETE             = 163
	Cobol85ParserEND_DIVIDE             = 164
	Cobol85ParserEND_EVALUATE           = 165
	Cobol85ParserEND_IF                 = 166
	Cobol85ParserEND_MULTIPLY           = 167
	Cobol85ParserEND_OF_PAGE            = 168
	Cobol85ParserEND_PERFORM            = 169
	Cobol85ParserEND_READ               = 170
	Cobol85ParserEND_RECEIVE            = 171
	Cobol85ParserEND_RETURN             = 172
	Cobol85ParserEND_REWRITE            = 173
	Cobol85ParserEND_SEARCH             = 174
	Cobol85ParserEND_START              = 175
	Cobol85ParserEND_STRING             = 176
	Cobol85ParserEND_SUBTRACT           = 177
	Cobol85ParserEND_UNSTRING           = 178
	Cobol85ParserEND_WRITE              = 179
	Cobol85ParserENDING                 = 180
	Cobol85ParserENTER                  = 181
	Cobol85ParserENTRY                  = 182
	Cobol85ParserENTRY_PROCEDURE        = 183
	Cobol85ParserENVIRONMENT            = 184
	Cobol85ParserEOP                    = 185
	Cobol85ParserEQUAL                  = 186
	Cobol85ParserERASE                  = 187
	Cobol85ParserERROR                  = 188
	Cobol85ParserEOL                    = 189
	Cobol85ParserEOS                    = 190
	Cobol85ParserESCAPE                 = 191
	Cobol85ParserESI                    = 192
	Cobol85ParserEVALUATE               = 193
	Cobol85ParserEVENT                  = 194
	Cobol85ParserEVERY                  = 195
	Cobol85ParserEXCEPTION              = 196
	Cobol85ParserEXCLUSIVE              = 197
	Cobol85ParserEXHIBIT                = 198
	Cobol85ParserEXIT                   = 199
	Cobol85ParserEXPORT                 = 200
	Cobol85ParserEXTEND                 = 201
	Cobol85ParserEXTENDED               = 202
	Cobol85ParserEXTERNAL               = 203
	Cobol85ParserFALSE                  = 204
	Cobol85ParserFD                     = 205
	Cobol85ParserFILE                   = 206
	Cobol85ParserFILE_CONTROL           = 207
	Cobol85ParserFILLER                 = 208
	Cobol85ParserFINAL                  = 209
	Cobol85ParserFIRST                  = 210
	Cobol85ParserFOOTING                = 211
	Cobol85ParserFOR                    = 212
	Cobol85ParserFOREGROUND_COLOR       = 213
	Cobol85ParserFOREGROUND_COLOUR      = 214
	Cobol85ParserFROM                   = 215
	Cobol85ParserFULL                   = 216
	Cobol85ParserFUNCTION               = 217
	Cobol85ParserFUNCTIONNAME           = 218
	Cobol85ParserFUNCTION_POINTER       = 219
	Cobol85ParserGENERATE               = 220
	Cobol85ParserGOBACK                 = 221
	Cobol85ParserGIVING                 = 222
	Cobol85ParserGLOBAL                 = 223
	Cobol85ParserGO                     = 224
	Cobol85ParserGREATER                = 225
	Cobol85ParserGRID                   = 226
	Cobol85ParserGROUP                  = 227
	Cobol85ParserHEADING                = 228
	Cobol85ParserHIGHLIGHT              = 229
	Cobol85ParserHIGH_VALUE             = 230
	Cobol85ParserHIGH_VALUES            = 231
	Cobol85ParserI_O                    = 232
	Cobol85ParserI_O_CONTROL            = 233
	Cobol85ParserID                     = 234
	Cobol85ParserIDENTIFICATION         = 235
	Cobol85ParserIF                     = 236
	Cobol85ParserIMPLICIT               = 237
	Cobol85ParserIMPORT                 = 238
	Cobol85ParserIN                     = 239
	Cobol85ParserINDEX                  = 240
	Cobol85ParserINDEXED                = 241
	Cobol85ParserINDICATE               = 242
	Cobol85ParserINITIAL                = 243
	Cobol85ParserINITIALIZE             = 244
	Cobol85ParserINITIATE               = 245
	Cobol85ParserINPUT                  = 246
	Cobol85ParserINPUT_OUTPUT           = 247
	Cobol85ParserINSPECT                = 248
	Cobol85ParserINSTALLATION           = 249
	Cobol85ParserINTEGER                = 250
	Cobol85ParserINTO                   = 251
	Cobol85ParserINVALID                = 252
	Cobol85ParserINVOKE                 = 253
	Cobol85ParserIS                     = 254
	Cobol85ParserJUST                   = 255
	Cobol85ParserJUSTIFIED              = 256
	Cobol85ParserKANJI                  = 257
	Cobol85ParserKEPT                   = 258
	Cobol85ParserKEY                    = 259
	Cobol85ParserKEYBOARD               = 260
	Cobol85ParserLABEL                  = 261
	Cobol85ParserLANGUAGE               = 262
	Cobol85ParserLAST                   = 263
	Cobol85ParserLB                     = 264
	Cobol85ParserLD                     = 265
	Cobol85ParserLEADING                = 266
	Cobol85ParserLEFT                   = 267
	Cobol85ParserLEFTLINE               = 268
	Cobol85ParserLENGTH                 = 269
	Cobol85ParserLENGTH_CHECK           = 270
	Cobol85ParserLESS                   = 271
	Cobol85ParserLIBACCESS              = 272
	Cobol85ParserLIBPARAMETER           = 273
	Cobol85ParserLIBRARY                = 274
	Cobol85ParserLIMIT                  = 275
	Cobol85ParserLIMITS                 = 276
	Cobol85ParserLINAGE                 = 277
	Cobol85ParserLINAGE_COUNTER         = 278
	Cobol85ParserLINE                   = 279
	Cobol85ParserLINES                  = 280
	Cobol85ParserLINE_COUNTER           = 281
	Cobol85ParserLINKAGE                = 282
	Cobol85ParserLIST                   = 283
	Cobol85ParserLOCAL                  = 284
	Cobol85ParserLOCAL_STORAGE          = 285
	Cobol85ParserLOCK                   = 286
	Cobol85ParserLONG_DATE              = 287
	Cobol85ParserLONG_TIME              = 288
	Cobol85ParserLOWER                  = 289
	Cobol85ParserLOWLIGHT               = 290
	Cobol85ParserLOW_VALUE              = 291
	Cobol85ParserLOW_VALUES             = 292
	Cobol85ParserMEMORY                 = 293
	Cobol85ParserMERGE                  = 294
	Cobol85ParserMESSAGE                = 295
	Cobol85ParserMMDDYYYY               = 296
	Cobol85ParserMODE                   = 297
	Cobol85ParserMODULES                = 298
	Cobol85ParserMORE_LABELS            = 299
	Cobol85ParserMOVE                   = 300
	Cobol85ParserMULTIPLE               = 301
	Cobol85ParserMULTIPLY               = 302
	Cobol85ParserNAMED                  = 303
	Cobol85ParserNATIONAL               = 304
	Cobol85ParserNATIONAL_EDITED        = 305
	Cobol85ParserNATIVE                 = 306
	Cobol85ParserNEGATIVE               = 307
	Cobol85ParserNETWORK                = 308
	Cobol85ParserNEXT                   = 309
	Cobol85ParserNO                     = 310
	Cobol85ParserNO_ECHO                = 311
	Cobol85ParserNOT                    = 312
	Cobol85ParserNULL                   = 313
	Cobol85ParserNULLS                  = 314
	Cobol85ParserNUMBER                 = 315
	Cobol85ParserNUMERIC                = 316
	Cobol85ParserNUMERIC_DATE           = 317
	Cobol85ParserNUMERIC_EDITED         = 318
	Cobol85ParserNUMERIC_TIME           = 319
	Cobol85ParserOBJECT_COMPUTER        = 320
	Cobol85ParserOCCURS                 = 321
	Cobol85ParserODT                    = 322
	Cobol85ParserOF                     = 323
	Cobol85ParserOFF                    = 324
	Cobol85ParserOMITTED                = 325
	Cobol85ParserON                     = 326
	Cobol85ParserOPEN                   = 327
	Cobol85ParserOPTIONAL               = 328
	Cobol85ParserOR                     = 329
	Cobol85ParserORDER                  = 330
	Cobol85ParserORDERLY                = 331
	Cobol85ParserORGANIZATION           = 332
	Cobol85ParserOTHER                  = 333
	Cobol85ParserOUTPUT                 = 334
	Cobol85ParserOVERFLOW               = 335
	Cobol85ParserOVERLINE               = 336
	Cobol85ParserOWN                    = 337
	Cobol85ParserPACKED_DECIMAL         = 338
	Cobol85ParserPADDING                = 339
	Cobol85ParserPAGE                   = 340
	Cobol85ParserPAGE_COUNTER           = 341
	Cobol85ParserPASSWORD               = 342
	Cobol85ParserPERFORM                = 343
	Cobol85ParserPF                     = 344
	Cobol85ParserPH                     = 345
	Cobol85ParserPIC                    = 346
	Cobol85ParserPICTURE                = 347
	Cobol85ParserPLUS                   = 348
	Cobol85ParserPOINTER                = 349
	Cobol85ParserPOSITION               = 350
	Cobol85ParserPOSITIVE               = 351
	Cobol85ParserPORT                   = 352
	Cobol85ParserPRINTER                = 353
	Cobol85ParserPRINTING               = 354
	Cobol85ParserPRIVATE                = 355
	Cobol85ParserPROCEDURE              = 356
	Cobol85ParserPROCEDURE_POINTER      = 357
	Cobol85ParserPROCEDURES             = 358
	Cobol85ParserPROCEED                = 359
	Cobol85ParserPROCESS                = 360
	Cobol85ParserPROGRAM                = 361
	Cobol85ParserPROGRAM_ID             = 362
	Cobol85ParserPROGRAM_LIBRARY        = 363
	Cobol85ParserPROMPT                 = 364
	Cobol85ParserPURGE                  = 365
	Cobol85ParserQUEUE                  = 366
	Cobol85ParserQUOTE                  = 367
	Cobol85ParserQUOTES                 = 368
	Cobol85ParserRANDOM                 = 369
	Cobol85ParserREADER                 = 370
	Cobol85ParserREMOTE                 = 371
	Cobol85ParserRD                     = 372
	Cobol85ParserREAL                   = 373
	Cobol85ParserREAD                   = 374
	Cobol85ParserRECEIVE                = 375
	Cobol85ParserRECEIVED               = 376
	Cobol85ParserRECORD                 = 377
	Cobol85ParserRECORDING              = 378
	Cobol85ParserRECORDS                = 379
	Cobol85ParserRECURSIVE              = 380
	Cobol85ParserREDEFINES              = 381
	Cobol85ParserREEL                   = 382
	Cobol85ParserREF                    = 383
	Cobol85ParserREFERENCE              = 384
	Cobol85ParserREFERENCES             = 385
	Cobol85ParserRELATIVE               = 386
	Cobol85ParserRELEASE                = 387
	Cobol85ParserREMAINDER              = 388
	Cobol85ParserREMARKS                = 389
	Cobol85ParserREMOVAL                = 390
	Cobol85ParserREMOVE                 = 391
	Cobol85ParserRENAMES                = 392
	Cobol85ParserREPLACE                = 393
	Cobol85ParserREPLACING              = 394
	Cobol85ParserREPORT                 = 395
	Cobol85ParserREPORTING              = 396
	Cobol85ParserREPORTS                = 397
	Cobol85ParserREQUIRED               = 398
	Cobol85ParserRERUN                  = 399
	Cobol85ParserRESERVE                = 400
	Cobol85ParserREVERSE_VIDEO          = 401
	Cobol85ParserRESET                  = 402
	Cobol85ParserRETURN                 = 403
	Cobol85ParserRETURN_CODE            = 404
	Cobol85ParserRETURNING              = 405
	Cobol85ParserREVERSED               = 406
	Cobol85ParserREWIND                 = 407
	Cobol85ParserREWRITE                = 408
	Cobol85ParserRF                     = 409
	Cobol85ParserRH                     = 410
	Cobol85ParserRIGHT                  = 411
	Cobol85ParserROUNDED                = 412
	Cobol85ParserRUN                    = 413
	Cobol85ParserSAME                   = 414
	Cobol85ParserSAVE                   = 415
	Cobol85ParserSCREEN                 = 416
	Cobol85ParserSD                     = 417
	Cobol85ParserSEARCH                 = 418
	Cobol85ParserSECTION                = 419
	Cobol85ParserSECURE                 = 420
	Cobol85ParserSECURITY               = 421
	Cobol85ParserSEGMENT                = 422
	Cobol85ParserSEGMENT_LIMIT          = 423
	Cobol85ParserSELECT                 = 424
	Cobol85ParserSEND                   = 425
	Cobol85ParserSENTENCE               = 426
	Cobol85ParserSEPARATE               = 427
	Cobol85ParserSEQUENCE               = 428
	Cobol85ParserSEQUENTIAL             = 429
	Cobol85ParserSET                    = 430
	Cobol85ParserSHARED                 = 431
	Cobol85ParserSHAREDBYALL            = 432
	Cobol85ParserSHAREDBYRUNUNIT        = 433
	Cobol85ParserSHARING                = 434
	Cobol85ParserSHIFT_IN               = 435
	Cobol85ParserSHIFT_OUT              = 436
	Cobol85ParserSHORT_DATE             = 437
	Cobol85ParserSIGN                   = 438
	Cobol85ParserSIZE                   = 439
	Cobol85ParserSORT                   = 440
	Cobol85ParserSORT_CONTROL           = 441
	Cobol85ParserSORT_CORE_SIZE         = 442
	Cobol85ParserSORT_FILE_SIZE         = 443
	Cobol85ParserSORT_MERGE             = 444
	Cobol85ParserSORT_MESSAGE           = 445
	Cobol85ParserSORT_MODE_SIZE         = 446
	Cobol85ParserSORT_RETURN            = 447
	Cobol85ParserSOURCE                 = 448
	Cobol85ParserSOURCE_COMPUTER        = 449
	Cobol85ParserSPACE                  = 450
	Cobol85ParserSPACES                 = 451
	Cobol85ParserSPECIAL_NAMES          = 452
	Cobol85ParserSTANDARD               = 453
	Cobol85ParserSTANDARD_1             = 454
	Cobol85ParserSTANDARD_2             = 455
	Cobol85ParserSTART                  = 456
	Cobol85ParserSTATUS                 = 457
	Cobol85ParserSTOP                   = 458
	Cobol85ParserSTRING                 = 459
	Cobol85ParserSUB_QUEUE_1            = 460
	Cobol85ParserSUB_QUEUE_2            = 461
	Cobol85ParserSUB_QUEUE_3            = 462
	Cobol85ParserSUBTRACT               = 463
	Cobol85ParserSUM                    = 464
	Cobol85ParserSUPPRESS               = 465
	Cobol85ParserSYMBOL                 = 466
	Cobol85ParserSYMBOLIC               = 467
	Cobol85ParserSYNC                   = 468
	Cobol85ParserSYNCHRONIZED           = 469
	Cobol85ParserTABLE                  = 470
	Cobol85ParserTALLY                  = 471
	Cobol85ParserTALLYING               = 472
	Cobol85ParserTASK                   = 473
	Cobol85ParserTAPE                   = 474
	Cobol85ParserTERMINAL               = 475
	Cobol85ParserTERMINATE              = 476
	Cobol85ParserTEST                   = 477
	Cobol85ParserTEXT                   = 478
	Cobol85ParserTHAN                   = 479
	Cobol85ParserTHEN                   = 480
	Cobol85ParserTHREAD                 = 481
	Cobol85ParserTHREAD_LOCAL           = 482
	Cobol85ParserTHROUGH                = 483
	Cobol85ParserTHRU                   = 484
	Cobol85ParserTIME                   = 485
	Cobol85ParserTIMER                  = 486
	Cobol85ParserTIMES                  = 487
	Cobol85ParserTITLE                  = 488
	Cobol85ParserTO                     = 489
	Cobol85ParserTODAYS_DATE            = 490
	Cobol85ParserTODAYS_NAME            = 491
	Cobol85ParserTOP                    = 492
	Cobol85ParserTRAILING               = 493
	Cobol85ParserTRUE                   = 494
	Cobol85ParserTRUNCATED              = 495
	Cobol85ParserTYPE                   = 496
	Cobol85ParserTYPEDEF                = 497
	Cobol85ParserUNDERLINE              = 498
	Cobol85ParserUNIT                   = 499
	Cobol85ParserUNSTRING               = 500
	Cobol85ParserUNTIL                  = 501
	Cobol85ParserUP                     = 502
	Cobol85ParserUPON                   = 503
	Cobol85ParserUSAGE                  = 504
	Cobol85ParserUSE                    = 505
	Cobol85ParserUSING                  = 506
	Cobol85ParserVALUE                  = 507
	Cobol85ParserVALUES                 = 508
	Cobol85ParserVARYING                = 509
	Cobol85ParserVIRTUAL                = 510
	Cobol85ParserWAIT                   = 511
	Cobol85ParserWHEN                   = 512
	Cobol85ParserWHEN_COMPILED          = 513
	Cobol85ParserWITH                   = 514
	Cobol85ParserWORDS                  = 515
	Cobol85ParserWORKING_STORAGE        = 516
	Cobol85ParserWRITE                  = 517
	Cobol85ParserYEAR                   = 518
	Cobol85ParserYYYYMMDD               = 519
	Cobol85ParserYYYYDDD                = 520
	Cobol85ParserZERO                   = 521
	Cobol85ParserZERO_FILL              = 522
	Cobol85ParserZEROS                  = 523
	Cobol85ParserZEROES                 = 524
	Cobol85ParserAMPCHAR                = 525
	Cobol85ParserASTERISKCHAR           = 526
	Cobol85ParserDOUBLEASTERISKCHAR     = 527
	Cobol85ParserCOLONCHAR              = 528
	Cobol85ParserCOMMACHAR              = 529
	Cobol85ParserCOMMENTENTRYTAG        = 530
	Cobol85ParserCOMMENTTAG             = 531
	Cobol85ParserDOLLARCHAR             = 532
	Cobol85ParserDOUBLEQUOTE            = 533
	Cobol85ParserDOT_FS                 = 534
	Cobol85ParserDOT                    = 535
	Cobol85ParserEQUALCHAR              = 536
	Cobol85ParserEXECCICSTAG            = 537
	Cobol85ParserEXECSQLTAG             = 538
	Cobol85ParserEXECSQLIMSTAG          = 539
	Cobol85ParserLESSTHANCHAR           = 540
	Cobol85ParserLESSTHANOREQUAL        = 541
	Cobol85ParserLPARENCHAR             = 542
	Cobol85ParserMINUSCHAR              = 543
	Cobol85ParserMORETHANCHAR           = 544
	Cobol85ParserMORETHANOREQUAL        = 545
	Cobol85ParserNOTEQUALCHAR           = 546
	Cobol85ParserPLUSCHAR               = 547
	Cobol85ParserSINGLEQUOTE            = 548
	Cobol85ParserRPARENCHAR             = 549
	Cobol85ParserSLASHCHAR              = 550
	Cobol85ParserNONNUMERICLITERAL      = 551
	Cobol85ParserLEVEL_NUMBER_66        = 552
	Cobol85ParserLEVEL_NUMBER_77        = 553
	Cobol85ParserLEVEL_NUMBER_88        = 554
	Cobol85ParserINTEGERLITERAL         = 555
	Cobol85ParserNUMERICLITERAL         = 556
	Cobol85ParserIDENTIFIER             = 557
	Cobol85ParserNEWLINE                = 558
	Cobol85ParserEXECCICSLINE           = 559
	Cobol85ParserEXECSQLIMSLINE         = 560
	Cobol85ParserEXECSQLLINE            = 561
	Cobol85ParserCOMMENTENTRYLINE       = 562
	Cobol85ParserCOMMENTLINE            = 563
	Cobol85ParserWS                     = 564
	Cobol85ParserSEPARATOR              = 565
)

Cobol85Parser tokens.

View Source
const (
	Cobol85ParserRULE_startRule                                     = 0
	Cobol85ParserRULE_compilationUnit                               = 1
	Cobol85ParserRULE_programUnit                                   = 2
	Cobol85ParserRULE_endProgramStatement                           = 3
	Cobol85ParserRULE_identificationDivision                        = 4
	Cobol85ParserRULE_identificationDivisionBody                    = 5
	Cobol85ParserRULE_programIdParagraph                            = 6
	Cobol85ParserRULE_authorParagraph                               = 7
	Cobol85ParserRULE_installationParagraph                         = 8
	Cobol85ParserRULE_dateWrittenParagraph                          = 9
	Cobol85ParserRULE_dateCompiledParagraph                         = 10
	Cobol85ParserRULE_securityParagraph                             = 11
	Cobol85ParserRULE_remarksParagraph                              = 12
	Cobol85ParserRULE_environmentDivision                           = 13
	Cobol85ParserRULE_environmentDivisionBody                       = 14
	Cobol85ParserRULE_configurationSection                          = 15
	Cobol85ParserRULE_configurationSectionParagraph                 = 16
	Cobol85ParserRULE_sourceComputerParagraph                       = 17
	Cobol85ParserRULE_objectComputerParagraph                       = 18
	Cobol85ParserRULE_objectComputerClause                          = 19
	Cobol85ParserRULE_memorySizeClause                              = 20
	Cobol85ParserRULE_diskSizeClause                                = 21
	Cobol85ParserRULE_collatingSequenceClause                       = 22
	Cobol85ParserRULE_collatingSequenceClauseAlphanumeric           = 23
	Cobol85ParserRULE_collatingSequenceClauseNational               = 24
	Cobol85ParserRULE_segmentLimitClause                            = 25
	Cobol85ParserRULE_characterSetClause                            = 26
	Cobol85ParserRULE_specialNamesParagraph                         = 27
	Cobol85ParserRULE_specialNameClause                             = 28
	Cobol85ParserRULE_alphabetClause                                = 29
	Cobol85ParserRULE_alphabetClauseFormat1                         = 30
	Cobol85ParserRULE_alphabetLiterals                              = 31
	Cobol85ParserRULE_alphabetThrough                               = 32
	Cobol85ParserRULE_alphabetAlso                                  = 33
	Cobol85ParserRULE_alphabetClauseFormat2                         = 34
	Cobol85ParserRULE_channelClause                                 = 35
	Cobol85ParserRULE_classClause                                   = 36
	Cobol85ParserRULE_classClauseThrough                            = 37
	Cobol85ParserRULE_classClauseFrom                               = 38
	Cobol85ParserRULE_classClauseTo                                 = 39
	Cobol85ParserRULE_currencySignClause                            = 40
	Cobol85ParserRULE_decimalPointClause                            = 41
	Cobol85ParserRULE_defaultComputationalSignClause                = 42
	Cobol85ParserRULE_defaultDisplaySignClause                      = 43
	Cobol85ParserRULE_environmentSwitchNameClause                   = 44
	Cobol85ParserRULE_environmentSwitchNameSpecialNamesStatusPhrase = 45
	Cobol85ParserRULE_odtClause                                     = 46
	Cobol85ParserRULE_reserveNetworkClause                          = 47
	Cobol85ParserRULE_symbolicCharactersClause                      = 48
	Cobol85ParserRULE_symbolicCharacters                            = 49
	Cobol85ParserRULE_inputOutputSection                            = 50
	Cobol85ParserRULE_inputOutputSectionParagraph                   = 51
	Cobol85ParserRULE_fileControlParagraph                          = 52
	Cobol85ParserRULE_fileControlEntry                              = 53
	Cobol85ParserRULE_selectClause                                  = 54
	Cobol85ParserRULE_fileControlClause                             = 55
	Cobol85ParserRULE_assignClause                                  = 56
	Cobol85ParserRULE_reserveClause                                 = 57
	Cobol85ParserRULE_organizationClause                            = 58
	Cobol85ParserRULE_paddingCharacterClause                        = 59
	Cobol85ParserRULE_recordDelimiterClause                         = 60
	Cobol85ParserRULE_accessModeClause                              = 61
	Cobol85ParserRULE_recordKeyClause                               = 62
	Cobol85ParserRULE_alternateRecordKeyClause                      = 63
	Cobol85ParserRULE_passwordClause                                = 64
	Cobol85ParserRULE_fileStatusClause                              = 65
	Cobol85ParserRULE_relativeKeyClause                             = 66
	Cobol85ParserRULE_ioControlParagraph                            = 67
	Cobol85ParserRULE_ioControlClause                               = 68
	Cobol85ParserRULE_rerunClause                                   = 69
	Cobol85ParserRULE_rerunEveryRecords                             = 70
	Cobol85ParserRULE_rerunEveryOf                                  = 71
	Cobol85ParserRULE_rerunEveryClock                               = 72
	Cobol85ParserRULE_sameClause                                    = 73
	Cobol85ParserRULE_multipleFileClause                            = 74
	Cobol85ParserRULE_multipleFilePosition                          = 75
	Cobol85ParserRULE_commitmentControlClause                       = 76
	Cobol85ParserRULE_dataDivision                                  = 77
	Cobol85ParserRULE_dataDivisionSection                           = 78
	Cobol85ParserRULE_fileSection                                   = 79
	Cobol85ParserRULE_fileDescriptionEntry                          = 80
	Cobol85ParserRULE_fileDescriptionEntryClause                    = 81
	Cobol85ParserRULE_externalClause                                = 82
	Cobol85ParserRULE_globalClause                                  = 83
	Cobol85ParserRULE_blockContainsClause                           = 84
	Cobol85ParserRULE_blockContainsTo                               = 85
	Cobol85ParserRULE_recordContainsClause                          = 86
	Cobol85ParserRULE_recordContainsClauseFormat1                   = 87
	Cobol85ParserRULE_recordContainsClauseFormat2                   = 88
	Cobol85ParserRULE_recordContainsClauseFormat3                   = 89
	Cobol85ParserRULE_recordContainsTo                              = 90
	Cobol85ParserRULE_labelRecordsClause                            = 91
	Cobol85ParserRULE_valueOfClause                                 = 92
	Cobol85ParserRULE_valuePair                                     = 93
	Cobol85ParserRULE_dataRecordsClause                             = 94
	Cobol85ParserRULE_linageClause                                  = 95
	Cobol85ParserRULE_linageAt                                      = 96
	Cobol85ParserRULE_linageFootingAt                               = 97
	Cobol85ParserRULE_linageLinesAtTop                              = 98
	Cobol85ParserRULE_linageLinesAtBottom                           = 99
	Cobol85ParserRULE_recordingModeClause                           = 100
	Cobol85ParserRULE_modeStatement                                 = 101
	Cobol85ParserRULE_codeSetClause                                 = 102
	Cobol85ParserRULE_reportClause                                  = 103
	Cobol85ParserRULE_dataBaseSection                               = 104
	Cobol85ParserRULE_dataBaseSectionEntry                          = 105
	Cobol85ParserRULE_workingStorageSection                         = 106
	Cobol85ParserRULE_linkageSection                                = 107
	Cobol85ParserRULE_communicationSection                          = 108
	Cobol85ParserRULE_communicationDescriptionEntry                 = 109
	Cobol85ParserRULE_communicationDescriptionEntryFormat1          = 110
	Cobol85ParserRULE_communicationDescriptionEntryFormat2          = 111
	Cobol85ParserRULE_communicationDescriptionEntryFormat3          = 112
	Cobol85ParserRULE_destinationCountClause                        = 113
	Cobol85ParserRULE_destinationTableClause                        = 114
	Cobol85ParserRULE_endKeyClause                                  = 115
	Cobol85ParserRULE_errorKeyClause                                = 116
	Cobol85ParserRULE_messageCountClause                            = 117
	Cobol85ParserRULE_messageDateClause                             = 118
	Cobol85ParserRULE_messageTimeClause                             = 119
	Cobol85ParserRULE_statusKeyClause                               = 120
	Cobol85ParserRULE_symbolicDestinationClause                     = 121
	Cobol85ParserRULE_symbolicQueueClause                           = 122
	Cobol85ParserRULE_symbolicSourceClause                          = 123
	Cobol85ParserRULE_symbolicTerminalClause                        = 124
	Cobol85ParserRULE_symbolicSubQueueClause                        = 125
	Cobol85ParserRULE_textLengthClause                              = 126
	Cobol85ParserRULE_localStorageSection                           = 127
	Cobol85ParserRULE_screenSection                                 = 128
	Cobol85ParserRULE_screenDescriptionEntry                        = 129
	Cobol85ParserRULE_screenDescriptionBlankClause                  = 130
	Cobol85ParserRULE_screenDescriptionBellClause                   = 131
	Cobol85ParserRULE_screenDescriptionBlinkClause                  = 132
	Cobol85ParserRULE_screenDescriptionEraseClause                  = 133
	Cobol85ParserRULE_screenDescriptionLightClause                  = 134
	Cobol85ParserRULE_screenDescriptionGridClause                   = 135
	Cobol85ParserRULE_screenDescriptionReverseVideoClause           = 136
	Cobol85ParserRULE_screenDescriptionUnderlineClause              = 137
	Cobol85ParserRULE_screenDescriptionSizeClause                   = 138
	Cobol85ParserRULE_screenDescriptionLineClause                   = 139
	Cobol85ParserRULE_screenDescriptionColumnClause                 = 140
	Cobol85ParserRULE_screenDescriptionForegroundColorClause        = 141
	Cobol85ParserRULE_screenDescriptionBackgroundColorClause        = 142
	Cobol85ParserRULE_screenDescriptionControlClause                = 143
	Cobol85ParserRULE_screenDescriptionValueClause                  = 144
	Cobol85ParserRULE_screenDescriptionPictureClause                = 145
	Cobol85ParserRULE_screenDescriptionFromClause                   = 146
	Cobol85ParserRULE_screenDescriptionToClause                     = 147
	Cobol85ParserRULE_screenDescriptionUsingClause                  = 148
	Cobol85ParserRULE_screenDescriptionUsageClause                  = 149
	Cobol85ParserRULE_screenDescriptionBlankWhenZeroClause          = 150
	Cobol85ParserRULE_screenDescriptionJustifiedClause              = 151
	Cobol85ParserRULE_screenDescriptionSignClause                   = 152
	Cobol85ParserRULE_screenDescriptionAutoClause                   = 153
	Cobol85ParserRULE_screenDescriptionSecureClause                 = 154
	Cobol85ParserRULE_screenDescriptionRequiredClause               = 155
	Cobol85ParserRULE_screenDescriptionPromptClause                 = 156
	Cobol85ParserRULE_screenDescriptionPromptOccursClause           = 157
	Cobol85ParserRULE_screenDescriptionFullClause                   = 158
	Cobol85ParserRULE_screenDescriptionZeroFillClause               = 159
	Cobol85ParserRULE_reportSection                                 = 160
	Cobol85ParserRULE_reportDescription                             = 161
	Cobol85ParserRULE_reportDescriptionEntry                        = 162
	Cobol85ParserRULE_reportDescriptionGlobalClause                 = 163
	Cobol85ParserRULE_reportDescriptionPageLimitClause              = 164
	Cobol85ParserRULE_reportDescriptionHeadingClause                = 165
	Cobol85ParserRULE_reportDescriptionFirstDetailClause            = 166
	Cobol85ParserRULE_reportDescriptionLastDetailClause             = 167
	Cobol85ParserRULE_reportDescriptionFootingClause                = 168
	Cobol85ParserRULE_reportGroupDescriptionEntry                   = 169
	Cobol85ParserRULE_reportGroupDescriptionEntryFormat1            = 170
	Cobol85ParserRULE_reportGroupDescriptionEntryFormat2            = 171
	Cobol85ParserRULE_reportGroupDescriptionEntryFormat3            = 172
	Cobol85ParserRULE_reportGroupBlankWhenZeroClause                = 173
	Cobol85ParserRULE_reportGroupColumnNumberClause                 = 174
	Cobol85ParserRULE_reportGroupIndicateClause                     = 175
	Cobol85ParserRULE_reportGroupJustifiedClause                    = 176
	Cobol85ParserRULE_reportGroupLineNumberClause                   = 177
	Cobol85ParserRULE_reportGroupLineNumberNextPage                 = 178
	Cobol85ParserRULE_reportGroupLineNumberPlus                     = 179
	Cobol85ParserRULE_reportGroupNextGroupClause                    = 180
	Cobol85ParserRULE_reportGroupNextGroupPlus                      = 181
	Cobol85ParserRULE_reportGroupNextGroupNextPage                  = 182
	Cobol85ParserRULE_reportGroupPictureClause                      = 183
	Cobol85ParserRULE_reportGroupResetClause                        = 184
	Cobol85ParserRULE_reportGroupSignClause                         = 185
	Cobol85ParserRULE_reportGroupSourceClause                       = 186
	Cobol85ParserRULE_reportGroupSumClause                          = 187
	Cobol85ParserRULE_reportGroupTypeClause                         = 188
	Cobol85ParserRULE_reportGroupTypeReportHeading                  = 189
	Cobol85ParserRULE_reportGroupTypePageHeading                    = 190
	Cobol85ParserRULE_reportGroupTypeControlHeading                 = 191
	Cobol85ParserRULE_reportGroupTypeDetail                         = 192
	Cobol85ParserRULE_reportGroupTypeControlFooting                 = 193
	Cobol85ParserRULE_reportGroupUsageClause                        = 194
	Cobol85ParserRULE_reportGroupTypePageFooting                    = 195
	Cobol85ParserRULE_reportGroupTypeReportFooting                  = 196
	Cobol85ParserRULE_reportGroupValueClause                        = 197
	Cobol85ParserRULE_programLibrarySection                         = 198
	Cobol85ParserRULE_libraryDescriptionEntry                       = 199
	Cobol85ParserRULE_libraryDescriptionEntryFormat1                = 200
	Cobol85ParserRULE_libraryDescriptionEntryFormat2                = 201
	Cobol85ParserRULE_libraryAttributeClauseFormat1                 = 202
	Cobol85ParserRULE_libraryAttributeClauseFormat2                 = 203
	Cobol85ParserRULE_libraryAttributeFunction                      = 204
	Cobol85ParserRULE_libraryAttributeParameter                     = 205
	Cobol85ParserRULE_libraryAttributeTitle                         = 206
	Cobol85ParserRULE_libraryEntryProcedureClauseFormat1            = 207
	Cobol85ParserRULE_libraryEntryProcedureClauseFormat2            = 208
	Cobol85ParserRULE_libraryEntryProcedureForClause                = 209
	Cobol85ParserRULE_libraryEntryProcedureGivingClause             = 210
	Cobol85ParserRULE_libraryEntryProcedureUsingClause              = 211
	Cobol85ParserRULE_libraryEntryProcedureUsingName                = 212
	Cobol85ParserRULE_libraryEntryProcedureWithClause               = 213
	Cobol85ParserRULE_libraryEntryProcedureWithName                 = 214
	Cobol85ParserRULE_libraryIsCommonClause                         = 215
	Cobol85ParserRULE_libraryIsGlobalClause                         = 216
	Cobol85ParserRULE_dataDescriptionEntry                          = 217
	Cobol85ParserRULE_dataDescriptionEntryFormat1                   = 218
	Cobol85ParserRULE_dataDescriptionEntryFormat2                   = 219
	Cobol85ParserRULE_dataDescriptionEntryFormat3                   = 220
	Cobol85ParserRULE_dataDescriptionEntryExecSql                   = 221
	Cobol85ParserRULE_dataAlignedClause                             = 222
	Cobol85ParserRULE_dataBlankWhenZeroClause                       = 223
	Cobol85ParserRULE_dataCommonOwnLocalClause                      = 224
	Cobol85ParserRULE_dataExternalClause                            = 225
	Cobol85ParserRULE_dataGlobalClause                              = 226
	Cobol85ParserRULE_dataIntegerStringClause                       = 227
	Cobol85ParserRULE_dataJustifiedClause                           = 228
	Cobol85ParserRULE_dataOccursClause                              = 229
	Cobol85ParserRULE_dataOccursTo                                  = 230
	Cobol85ParserRULE_dataOccursSort                                = 231
	Cobol85ParserRULE_dataPictureClause                             = 232
	Cobol85ParserRULE_pictureString                                 = 233
	Cobol85ParserRULE_pictureChars                                  = 234
	Cobol85ParserRULE_pictureCardinality                            = 235
	Cobol85ParserRULE_dataReceivedByClause                          = 236
	Cobol85ParserRULE_dataRecordAreaClause                          = 237
	Cobol85ParserRULE_dataRedefinesClause                           = 238
	Cobol85ParserRULE_dataRenamesClause                             = 239
	Cobol85ParserRULE_dataSignClause                                = 240
	Cobol85ParserRULE_dataSynchronizedClause                        = 241
	Cobol85ParserRULE_dataThreadLocalClause                         = 242
	Cobol85ParserRULE_dataTypeClause                                = 243
	Cobol85ParserRULE_dataTypeDefClause                             = 244
	Cobol85ParserRULE_dataUsageClause                               = 245
	Cobol85ParserRULE_dataUsingClause                               = 246
	Cobol85ParserRULE_dataValueClause                               = 247
	Cobol85ParserRULE_dataValueInterval                             = 248
	Cobol85ParserRULE_dataValueIntervalFrom                         = 249
	Cobol85ParserRULE_dataValueIntervalTo                           = 250
	Cobol85ParserRULE_dataWithLowerBoundsClause                     = 251
	Cobol85ParserRULE_procedureDivision                             = 252
	Cobol85ParserRULE_procedureDivisionUsingClause                  = 253
	Cobol85ParserRULE_procedureDivisionGivingClause                 = 254
	Cobol85ParserRULE_procedureDivisionUsingParameter               = 255
	Cobol85ParserRULE_procedureDivisionByReferencePhrase            = 256
	Cobol85ParserRULE_procedureDivisionByReference                  = 257
	Cobol85ParserRULE_procedureDivisionByValuePhrase                = 258
	Cobol85ParserRULE_procedureDivisionByValue                      = 259
	Cobol85ParserRULE_procedureDeclaratives                         = 260
	Cobol85ParserRULE_procedureDeclarative                          = 261
	Cobol85ParserRULE_procedureSectionHeader                        = 262
	Cobol85ParserRULE_procedureDivisionBody                         = 263
	Cobol85ParserRULE_procedureSection                              = 264
	Cobol85ParserRULE_paragraphs                                    = 265
	Cobol85ParserRULE_paragraph                                     = 266
	Cobol85ParserRULE_sentence                                      = 267
	Cobol85ParserRULE_statement                                     = 268
	Cobol85ParserRULE_acceptStatement                               = 269
	Cobol85ParserRULE_acceptFromDateStatement                       = 270
	Cobol85ParserRULE_acceptFromMnemonicStatement                   = 271
	Cobol85ParserRULE_acceptFromEscapeKeyStatement                  = 272
	Cobol85ParserRULE_acceptMessageCountStatement                   = 273
	Cobol85ParserRULE_addStatement                                  = 274
	Cobol85ParserRULE_addToStatement                                = 275
	Cobol85ParserRULE_addToGivingStatement                          = 276
	Cobol85ParserRULE_addCorrespondingStatement                     = 277
	Cobol85ParserRULE_addFrom                                       = 278
	Cobol85ParserRULE_addTo                                         = 279
	Cobol85ParserRULE_addToGiving                                   = 280
	Cobol85ParserRULE_addGiving                                     = 281
	Cobol85ParserRULE_alteredGoTo                                   = 282
	Cobol85ParserRULE_alterStatement                                = 283
	Cobol85ParserRULE_alterProceedTo                                = 284
	Cobol85ParserRULE_callStatement                                 = 285
	Cobol85ParserRULE_callUsingPhrase                               = 286
	Cobol85ParserRULE_callUsingParameter                            = 287
	Cobol85ParserRULE_callByReferencePhrase                         = 288
	Cobol85ParserRULE_callByReference                               = 289
	Cobol85ParserRULE_callByValuePhrase                             = 290
	Cobol85ParserRULE_callByValue                                   = 291
	Cobol85ParserRULE_callByContentPhrase                           = 292
	Cobol85ParserRULE_callByContent                                 = 293
	Cobol85ParserRULE_callGivingPhrase                              = 294
	Cobol85ParserRULE_cancelStatement                               = 295
	Cobol85ParserRULE_cancelCall                                    = 296
	Cobol85ParserRULE_closeStatement                                = 297
	Cobol85ParserRULE_closeFile                                     = 298
	Cobol85ParserRULE_closeReelUnitStatement                        = 299
	Cobol85ParserRULE_closeRelativeStatement                        = 300
	Cobol85ParserRULE_closePortFileIOStatement                      = 301
	Cobol85ParserRULE_closePortFileIOUsing                          = 302
	Cobol85ParserRULE_closePortFileIOUsingCloseDisposition          = 303
	Cobol85ParserRULE_closePortFileIOUsingAssociatedData            = 304
	Cobol85ParserRULE_closePortFileIOUsingAssociatedDataLength      = 305
	Cobol85ParserRULE_computeStatement                              = 306
	Cobol85ParserRULE_computeStore                                  = 307
	Cobol85ParserRULE_continueStatement                             = 308
	Cobol85ParserRULE_deleteStatement                               = 309
	Cobol85ParserRULE_disableStatement                              = 310
	Cobol85ParserRULE_displayStatement                              = 311
	Cobol85ParserRULE_displayOperand                                = 312
	Cobol85ParserRULE_displayAt                                     = 313
	Cobol85ParserRULE_displayUpon                                   = 314
	Cobol85ParserRULE_displayWith                                   = 315
	Cobol85ParserRULE_divideStatement                               = 316
	Cobol85ParserRULE_divideIntoStatement                           = 317
	Cobol85ParserRULE_divideIntoGivingStatement                     = 318
	Cobol85ParserRULE_divideByGivingStatement                       = 319
	Cobol85ParserRULE_divideGivingPhrase                            = 320
	Cobol85ParserRULE_divideInto                                    = 321
	Cobol85ParserRULE_divideGiving                                  = 322
	Cobol85ParserRULE_divideRemainder                               = 323
	Cobol85ParserRULE_enableStatement                               = 324
	Cobol85ParserRULE_entryStatement                                = 325
	Cobol85ParserRULE_evaluateStatement                             = 326
	Cobol85ParserRULE_evaluateSelect                                = 327
	Cobol85ParserRULE_evaluateAlsoSelect                            = 328
	Cobol85ParserRULE_evaluateWhenPhrase                            = 329
	Cobol85ParserRULE_evaluateWhen                                  = 330
	Cobol85ParserRULE_evaluateCondition                             = 331
	Cobol85ParserRULE_evaluateThrough                               = 332
	Cobol85ParserRULE_evaluateAlsoCondition                         = 333
	Cobol85ParserRULE_evaluateWhenOther                             = 334
	Cobol85ParserRULE_evaluateValue                                 = 335
	Cobol85ParserRULE_execCicsStatement                             = 336
	Cobol85ParserRULE_execSqlStatement                              = 337
	Cobol85ParserRULE_execSqlImsStatement                           = 338
	Cobol85ParserRULE_exhibitStatement                              = 339
	Cobol85ParserRULE_exhibitOperand                                = 340
	Cobol85ParserRULE_exitStatement                                 = 341
	Cobol85ParserRULE_generateStatement                             = 342
	Cobol85ParserRULE_gobackStatement                               = 343
	Cobol85ParserRULE_goToStatement                                 = 344
	Cobol85ParserRULE_goToStatementSimple                           = 345
	Cobol85ParserRULE_goToDependingOnStatement                      = 346
	Cobol85ParserRULE_ifStatement                                   = 347
	Cobol85ParserRULE_ifThen                                        = 348
	Cobol85ParserRULE_ifElse                                        = 349
	Cobol85ParserRULE_initializeStatement                           = 350
	Cobol85ParserRULE_initializeReplacingPhrase                     = 351
	Cobol85ParserRULE_initializeReplacingBy                         = 352
	Cobol85ParserRULE_initiateStatement                             = 353
	Cobol85ParserRULE_inspectStatement                              = 354
	Cobol85ParserRULE_inspectTallyingPhrase                         = 355
	Cobol85ParserRULE_inspectReplacingPhrase                        = 356
	Cobol85ParserRULE_inspectTallyingReplacingPhrase                = 357
	Cobol85ParserRULE_inspectConvertingPhrase                       = 358
	Cobol85ParserRULE_inspectFor                                    = 359
	Cobol85ParserRULE_inspectCharacters                             = 360
	Cobol85ParserRULE_inspectReplacingCharacters                    = 361
	Cobol85ParserRULE_inspectAllLeadings                            = 362
	Cobol85ParserRULE_inspectReplacingAllLeadings                   = 363
	Cobol85ParserRULE_inspectAllLeading                             = 364
	Cobol85ParserRULE_inspectReplacingAllLeading                    = 365
	Cobol85ParserRULE_inspectBy                                     = 366
	Cobol85ParserRULE_inspectTo                                     = 367
	Cobol85ParserRULE_inspectBeforeAfter                            = 368
	Cobol85ParserRULE_mergeStatement                                = 369
	Cobol85ParserRULE_mergeOnKeyClause                              = 370
	Cobol85ParserRULE_mergeCollatingSequencePhrase                  = 371
	Cobol85ParserRULE_mergeCollatingAlphanumeric                    = 372
	Cobol85ParserRULE_mergeCollatingNational                        = 373
	Cobol85ParserRULE_mergeUsing                                    = 374
	Cobol85ParserRULE_mergeOutputProcedurePhrase                    = 375
	Cobol85ParserRULE_mergeOutputThrough                            = 376
	Cobol85ParserRULE_mergeGivingPhrase                             = 377
	Cobol85ParserRULE_mergeGiving                                   = 378
	Cobol85ParserRULE_moveStatement                                 = 379
	Cobol85ParserRULE_moveToStatement                               = 380
	Cobol85ParserRULE_moveToSendingArea                             = 381
	Cobol85ParserRULE_moveCorrespondingToStatement                  = 382
	Cobol85ParserRULE_moveCorrespondingToSendingArea                = 383
	Cobol85ParserRULE_multiplyStatement                             = 384
	Cobol85ParserRULE_multiplyRegular                               = 385
	Cobol85ParserRULE_multiplyRegularOperand                        = 386
	Cobol85ParserRULE_multiplyGiving                                = 387
	Cobol85ParserRULE_multiplyGivingOperand                         = 388
	Cobol85ParserRULE_multiplyGivingResult                          = 389
	Cobol85ParserRULE_openStatement                                 = 390
	Cobol85ParserRULE_openInputStatement                            = 391
	Cobol85ParserRULE_openInput                                     = 392
	Cobol85ParserRULE_openOutputStatement                           = 393
	Cobol85ParserRULE_openOutput                                    = 394
	Cobol85ParserRULE_openIOStatement                               = 395
	Cobol85ParserRULE_openExtendStatement                           = 396
	Cobol85ParserRULE_performStatement                              = 397
	Cobol85ParserRULE_performInlineStatement                        = 398
	Cobol85ParserRULE_performProcedureStatement                     = 399
	Cobol85ParserRULE_performType                                   = 400
	Cobol85ParserRULE_performTimes                                  = 401
	Cobol85ParserRULE_performUntil                                  = 402
	Cobol85ParserRULE_performVarying                                = 403
	Cobol85ParserRULE_performVaryingClause                          = 404
	Cobol85ParserRULE_performVaryingPhrase                          = 405
	Cobol85ParserRULE_performAfter                                  = 406
	Cobol85ParserRULE_performFrom                                   = 407
	Cobol85ParserRULE_performBy                                     = 408
	Cobol85ParserRULE_performTestClause                             = 409
	Cobol85ParserRULE_purgeStatement                                = 410
	Cobol85ParserRULE_readStatement                                 = 411
	Cobol85ParserRULE_readInto                                      = 412
	Cobol85ParserRULE_readWith                                      = 413
	Cobol85ParserRULE_readKey                                       = 414
	Cobol85ParserRULE_receiveStatement                              = 415
	Cobol85ParserRULE_receiveFromStatement                          = 416
	Cobol85ParserRULE_receiveFrom                                   = 417
	Cobol85ParserRULE_receiveIntoStatement                          = 418
	Cobol85ParserRULE_receiveNoData                                 = 419
	Cobol85ParserRULE_receiveWithData                               = 420
	Cobol85ParserRULE_receiveBefore                                 = 421
	Cobol85ParserRULE_receiveWith                                   = 422
	Cobol85ParserRULE_receiveThread                                 = 423
	Cobol85ParserRULE_receiveSize                                   = 424
	Cobol85ParserRULE_receiveStatus                                 = 425
	Cobol85ParserRULE_releaseStatement                              = 426
	Cobol85ParserRULE_returnStatement                               = 427
	Cobol85ParserRULE_returnInto                                    = 428
	Cobol85ParserRULE_rewriteStatement                              = 429
	Cobol85ParserRULE_rewriteFrom                                   = 430
	Cobol85ParserRULE_searchStatement                               = 431
	Cobol85ParserRULE_searchVarying                                 = 432
	Cobol85ParserRULE_searchWhen                                    = 433
	Cobol85ParserRULE_sendStatement                                 = 434
	Cobol85ParserRULE_sendStatementSync                             = 435
	Cobol85ParserRULE_sendStatementAsync                            = 436
	Cobol85ParserRULE_sendFromPhrase                                = 437
	Cobol85ParserRULE_sendWithPhrase                                = 438
	Cobol85ParserRULE_sendReplacingPhrase                           = 439
	Cobol85ParserRULE_sendAdvancingPhrase                           = 440
	Cobol85ParserRULE_sendAdvancingPage                             = 441
	Cobol85ParserRULE_sendAdvancingLines                            = 442
	Cobol85ParserRULE_sendAdvancingMnemonic                         = 443
	Cobol85ParserRULE_setStatement                                  = 444
	Cobol85ParserRULE_setToStatement                                = 445
	Cobol85ParserRULE_setUpDownByStatement                          = 446
	Cobol85ParserRULE_setTo                                         = 447
	Cobol85ParserRULE_setToValue                                    = 448
	Cobol85ParserRULE_setByValue                                    = 449
	Cobol85ParserRULE_sortStatement                                 = 450
	Cobol85ParserRULE_sortOnKeyClause                               = 451
	Cobol85ParserRULE_sortDuplicatesPhrase                          = 452
	Cobol85ParserRULE_sortCollatingSequencePhrase                   = 453
	Cobol85ParserRULE_sortCollatingAlphanumeric                     = 454
	Cobol85ParserRULE_sortCollatingNational                         = 455
	Cobol85ParserRULE_sortInputProcedurePhrase                      = 456
	Cobol85ParserRULE_sortInputThrough                              = 457
	Cobol85ParserRULE_sortUsing                                     = 458
	Cobol85ParserRULE_sortOutputProcedurePhrase                     = 459
	Cobol85ParserRULE_sortOutputThrough                             = 460
	Cobol85ParserRULE_sortGivingPhrase                              = 461
	Cobol85ParserRULE_sortGiving                                    = 462
	Cobol85ParserRULE_startStatement                                = 463
	Cobol85ParserRULE_startKey                                      = 464
	Cobol85ParserRULE_stopStatement                                 = 465
	Cobol85ParserRULE_stringStatement                               = 466
	Cobol85ParserRULE_stringSendingPhrase                           = 467
	Cobol85ParserRULE_stringSending                                 = 468
	Cobol85ParserRULE_stringDelimitedByPhrase                       = 469
	Cobol85ParserRULE_stringForPhrase                               = 470
	Cobol85ParserRULE_stringIntoPhrase                              = 471
	Cobol85ParserRULE_stringWithPointerPhrase                       = 472
	Cobol85ParserRULE_subtractStatement                             = 473
	Cobol85ParserRULE_subtractFromStatement                         = 474
	Cobol85ParserRULE_subtractFromGivingStatement                   = 475
	Cobol85ParserRULE_subtractCorrespondingStatement                = 476
	Cobol85ParserRULE_subtractSubtrahend                            = 477
	Cobol85ParserRULE_subtractMinuend                               = 478
	Cobol85ParserRULE_subtractMinuendGiving                         = 479
	Cobol85ParserRULE_subtractGiving                                = 480
	Cobol85ParserRULE_subtractMinuendCorresponding                  = 481
	Cobol85ParserRULE_terminateStatement                            = 482
	Cobol85ParserRULE_unstringStatement                             = 483
	Cobol85ParserRULE_unstringSendingPhrase                         = 484
	Cobol85ParserRULE_unstringDelimitedByPhrase                     = 485
	Cobol85ParserRULE_unstringOrAllPhrase                           = 486
	Cobol85ParserRULE_unstringIntoPhrase                            = 487
	Cobol85ParserRULE_unstringInto                                  = 488
	Cobol85ParserRULE_unstringDelimiterIn                           = 489
	Cobol85ParserRULE_unstringCountIn                               = 490
	Cobol85ParserRULE_unstringWithPointerPhrase                     = 491
	Cobol85ParserRULE_unstringTallyingPhrase                        = 492
	Cobol85ParserRULE_useStatement                                  = 493
	Cobol85ParserRULE_useAfterClause                                = 494
	Cobol85ParserRULE_useAfterOn                                    = 495
	Cobol85ParserRULE_useDebugClause                                = 496
	Cobol85ParserRULE_useDebugOn                                    = 497
	Cobol85ParserRULE_writeStatement                                = 498
	Cobol85ParserRULE_writeFromPhrase                               = 499
	Cobol85ParserRULE_writeAdvancingPhrase                          = 500
	Cobol85ParserRULE_writeAdvancingPage                            = 501
	Cobol85ParserRULE_writeAdvancingLines                           = 502
	Cobol85ParserRULE_writeAdvancingMnemonic                        = 503
	Cobol85ParserRULE_writeAtEndOfPagePhrase                        = 504
	Cobol85ParserRULE_writeNotAtEndOfPagePhrase                     = 505
	Cobol85ParserRULE_atEndPhrase                                   = 506
	Cobol85ParserRULE_notAtEndPhrase                                = 507
	Cobol85ParserRULE_invalidKeyPhrase                              = 508
	Cobol85ParserRULE_notInvalidKeyPhrase                           = 509
	Cobol85ParserRULE_onOverflowPhrase                              = 510
	Cobol85ParserRULE_notOnOverflowPhrase                           = 511
	Cobol85ParserRULE_onSizeErrorPhrase                             = 512
	Cobol85ParserRULE_notOnSizeErrorPhrase                          = 513
	Cobol85ParserRULE_onExceptionClause                             = 514
	Cobol85ParserRULE_notOnExceptionClause                          = 515
	Cobol85ParserRULE_arithmeticExpression                          = 516
	Cobol85ParserRULE_plusMinus                                     = 517
	Cobol85ParserRULE_multDivs                                      = 518
	Cobol85ParserRULE_multDiv                                       = 519
	Cobol85ParserRULE_powers                                        = 520
	Cobol85ParserRULE_power                                         = 521
	Cobol85ParserRULE_basis                                         = 522
	Cobol85ParserRULE_condition                                     = 523
	Cobol85ParserRULE_andOrCondition                                = 524
	Cobol85ParserRULE_combinableCondition                           = 525
	Cobol85ParserRULE_simpleCondition                               = 526
	Cobol85ParserRULE_classCondition                                = 527
	Cobol85ParserRULE_conditionNameReference                        = 528
	Cobol85ParserRULE_conditionNameSubscriptReference               = 529
	Cobol85ParserRULE_relationCondition                             = 530
	Cobol85ParserRULE_relationSignCondition                         = 531
	Cobol85ParserRULE_relationArithmeticComparison                  = 532
	Cobol85ParserRULE_relationCombinedComparison                    = 533
	Cobol85ParserRULE_relationCombinedCondition                     = 534
	Cobol85ParserRULE_relationalOperator                            = 535
	Cobol85ParserRULE_abbreviation                                  = 536
	Cobol85ParserRULE_identifier                                    = 537
	Cobol85ParserRULE_tableCall                                     = 538
	Cobol85ParserRULE_functionCall                                  = 539
	Cobol85ParserRULE_referenceModifier                             = 540
	Cobol85ParserRULE_characterPosition                             = 541
	Cobol85ParserRULE_length                                        = 542
	Cobol85ParserRULE_subscript                                     = 543
	Cobol85ParserRULE_argument                                      = 544
	Cobol85ParserRULE_qualifiedDataName                             = 545
	Cobol85ParserRULE_qualifiedDataNameFormat1                      = 546
	Cobol85ParserRULE_qualifiedDataNameFormat2                      = 547
	Cobol85ParserRULE_qualifiedDataNameFormat3                      = 548
	Cobol85ParserRULE_qualifiedDataNameFormat4                      = 549
	Cobol85ParserRULE_qualifiedInData                               = 550
	Cobol85ParserRULE_inData                                        = 551
	Cobol85ParserRULE_inFile                                        = 552
	Cobol85ParserRULE_inMnemonic                                    = 553
	Cobol85ParserRULE_inSection                                     = 554
	Cobol85ParserRULE_inLibrary                                     = 555
	Cobol85ParserRULE_inTable                                       = 556
	Cobol85ParserRULE_alphabetName                                  = 557
	Cobol85ParserRULE_assignmentName                                = 558
	Cobol85ParserRULE_basisName                                     = 559
	Cobol85ParserRULE_cdName                                        = 560
	Cobol85ParserRULE_className                                     = 561
	Cobol85ParserRULE_computerName                                  = 562
	Cobol85ParserRULE_conditionName                                 = 563
	Cobol85ParserRULE_dataName                                      = 564
	Cobol85ParserRULE_dataDescName                                  = 565
	Cobol85ParserRULE_environmentName                               = 566
	Cobol85ParserRULE_fileName                                      = 567
	Cobol85ParserRULE_functionName                                  = 568
	Cobol85ParserRULE_indexName                                     = 569
	Cobol85ParserRULE_languageName                                  = 570
	Cobol85ParserRULE_libraryName                                   = 571
	Cobol85ParserRULE_localName                                     = 572
	Cobol85ParserRULE_mnemonicName                                  = 573
	Cobol85ParserRULE_paragraphName                                 = 574
	Cobol85ParserRULE_procedureName                                 = 575
	Cobol85ParserRULE_programName                                   = 576
	Cobol85ParserRULE_recordName                                    = 577
	Cobol85ParserRULE_reportName                                    = 578
	Cobol85ParserRULE_routineName                                   = 579
	Cobol85ParserRULE_screenName                                    = 580
	Cobol85ParserRULE_sectionName                                   = 581
	Cobol85ParserRULE_systemName                                    = 582
	Cobol85ParserRULE_symbolicCharacter                             = 583
	Cobol85ParserRULE_textName                                      = 584
	Cobol85ParserRULE_cobolWord                                     = 585
	Cobol85ParserRULE_literal                                       = 586
	Cobol85ParserRULE_booleanLiteral                                = 587
	Cobol85ParserRULE_numericLiteral                                = 588
	Cobol85ParserRULE_integerLiteral                                = 589
	Cobol85ParserRULE_cicsDfhRespLiteral                            = 590
	Cobol85ParserRULE_cicsDfhValueLiteral                           = 591
	Cobol85ParserRULE_figurativeConstant                            = 592
	Cobol85ParserRULE_specialRegister                               = 593
	Cobol85ParserRULE_commentEntry                                  = 594
)

Cobol85Parser rules.

Variables

This section is empty.

Functions

This section is empty.

Types

type AbbreviationContext

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

func NewAbbreviationContext

func NewAbbreviationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AbbreviationContext

func NewEmptyAbbreviationContext

func NewEmptyAbbreviationContext() *AbbreviationContext

func (*AbbreviationContext) Abbreviation

func (s *AbbreviationContext) Abbreviation() IAbbreviationContext

func (*AbbreviationContext) ArithmeticExpression

func (s *AbbreviationContext) ArithmeticExpression() IArithmeticExpressionContext

func (*AbbreviationContext) EnterRule

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

func (*AbbreviationContext) ExitRule

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

func (*AbbreviationContext) GetParser

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

func (*AbbreviationContext) GetRuleContext

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

func (*AbbreviationContext) IsAbbreviationContext

func (*AbbreviationContext) IsAbbreviationContext()

func (*AbbreviationContext) LPARENCHAR

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

func (*AbbreviationContext) NOT

func (*AbbreviationContext) RPARENCHAR

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

func (*AbbreviationContext) RelationalOperator

func (s *AbbreviationContext) RelationalOperator() IRelationalOperatorContext

func (*AbbreviationContext) ToStringTree

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

type AcceptFromDateStatementContext

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

func NewAcceptFromDateStatementContext

func NewAcceptFromDateStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AcceptFromDateStatementContext

func NewEmptyAcceptFromDateStatementContext

func NewEmptyAcceptFromDateStatementContext() *AcceptFromDateStatementContext

func (*AcceptFromDateStatementContext) DATE

func (*AcceptFromDateStatementContext) DAY

func (*AcceptFromDateStatementContext) DAY_OF_WEEK

func (*AcceptFromDateStatementContext) EnterRule

func (*AcceptFromDateStatementContext) ExitRule

func (*AcceptFromDateStatementContext) FROM

func (*AcceptFromDateStatementContext) GetParser

func (*AcceptFromDateStatementContext) GetRuleContext

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

func (*AcceptFromDateStatementContext) IsAcceptFromDateStatementContext

func (*AcceptFromDateStatementContext) IsAcceptFromDateStatementContext()

func (*AcceptFromDateStatementContext) MMDDYYYY

func (*AcceptFromDateStatementContext) TIME

func (*AcceptFromDateStatementContext) TIMER

func (*AcceptFromDateStatementContext) TODAYS_DATE

func (*AcceptFromDateStatementContext) TODAYS_NAME

func (*AcceptFromDateStatementContext) ToStringTree

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

func (*AcceptFromDateStatementContext) YEAR

func (*AcceptFromDateStatementContext) YYYYDDD

func (*AcceptFromDateStatementContext) YYYYMMDD

type AcceptFromEscapeKeyStatementContext

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

func NewAcceptFromEscapeKeyStatementContext

func NewAcceptFromEscapeKeyStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AcceptFromEscapeKeyStatementContext

func NewEmptyAcceptFromEscapeKeyStatementContext

func NewEmptyAcceptFromEscapeKeyStatementContext() *AcceptFromEscapeKeyStatementContext

func (*AcceptFromEscapeKeyStatementContext) ESCAPE

func (*AcceptFromEscapeKeyStatementContext) EnterRule

func (*AcceptFromEscapeKeyStatementContext) ExitRule

func (*AcceptFromEscapeKeyStatementContext) FROM

func (*AcceptFromEscapeKeyStatementContext) GetParser

func (*AcceptFromEscapeKeyStatementContext) GetRuleContext

func (*AcceptFromEscapeKeyStatementContext) IsAcceptFromEscapeKeyStatementContext

func (*AcceptFromEscapeKeyStatementContext) IsAcceptFromEscapeKeyStatementContext()

func (*AcceptFromEscapeKeyStatementContext) KEY

func (*AcceptFromEscapeKeyStatementContext) ToStringTree

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

type AcceptFromMnemonicStatementContext

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

func NewAcceptFromMnemonicStatementContext

func NewAcceptFromMnemonicStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AcceptFromMnemonicStatementContext

func NewEmptyAcceptFromMnemonicStatementContext

func NewEmptyAcceptFromMnemonicStatementContext() *AcceptFromMnemonicStatementContext

func (*AcceptFromMnemonicStatementContext) EnterRule

func (*AcceptFromMnemonicStatementContext) ExitRule

func (*AcceptFromMnemonicStatementContext) FROM

func (*AcceptFromMnemonicStatementContext) GetParser

func (*AcceptFromMnemonicStatementContext) GetRuleContext

func (*AcceptFromMnemonicStatementContext) IsAcceptFromMnemonicStatementContext

func (*AcceptFromMnemonicStatementContext) IsAcceptFromMnemonicStatementContext()

func (*AcceptFromMnemonicStatementContext) MnemonicName

func (*AcceptFromMnemonicStatementContext) ToStringTree

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

type AcceptMessageCountStatementContext

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

func NewAcceptMessageCountStatementContext

func NewAcceptMessageCountStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AcceptMessageCountStatementContext

func NewEmptyAcceptMessageCountStatementContext

func NewEmptyAcceptMessageCountStatementContext() *AcceptMessageCountStatementContext

func (*AcceptMessageCountStatementContext) COUNT

func (*AcceptMessageCountStatementContext) EnterRule

func (*AcceptMessageCountStatementContext) ExitRule

func (*AcceptMessageCountStatementContext) GetParser

func (*AcceptMessageCountStatementContext) GetRuleContext

func (*AcceptMessageCountStatementContext) IsAcceptMessageCountStatementContext

func (*AcceptMessageCountStatementContext) IsAcceptMessageCountStatementContext()

func (*AcceptMessageCountStatementContext) MESSAGE

func (*AcceptMessageCountStatementContext) ToStringTree

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

type AcceptStatementContext

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

func NewAcceptStatementContext

func NewAcceptStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AcceptStatementContext

func NewEmptyAcceptStatementContext

func NewEmptyAcceptStatementContext() *AcceptStatementContext

func (*AcceptStatementContext) ACCEPT

func (*AcceptStatementContext) AcceptFromDateStatement

func (s *AcceptStatementContext) AcceptFromDateStatement() IAcceptFromDateStatementContext

func (*AcceptStatementContext) AcceptFromEscapeKeyStatement

func (s *AcceptStatementContext) AcceptFromEscapeKeyStatement() IAcceptFromEscapeKeyStatementContext

func (*AcceptStatementContext) AcceptFromMnemonicStatement

func (s *AcceptStatementContext) AcceptFromMnemonicStatement() IAcceptFromMnemonicStatementContext

func (*AcceptStatementContext) AcceptMessageCountStatement

func (s *AcceptStatementContext) AcceptMessageCountStatement() IAcceptMessageCountStatementContext

func (*AcceptStatementContext) END_ACCEPT

func (s *AcceptStatementContext) END_ACCEPT() antlr.TerminalNode

func (*AcceptStatementContext) EnterRule

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

func (*AcceptStatementContext) ExitRule

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

func (*AcceptStatementContext) GetParser

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

func (*AcceptStatementContext) GetRuleContext

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

func (*AcceptStatementContext) Identifier

func (*AcceptStatementContext) IsAcceptStatementContext

func (*AcceptStatementContext) IsAcceptStatementContext()

func (*AcceptStatementContext) NotOnExceptionClause

func (s *AcceptStatementContext) NotOnExceptionClause() INotOnExceptionClauseContext

func (*AcceptStatementContext) OnExceptionClause

func (s *AcceptStatementContext) OnExceptionClause() IOnExceptionClauseContext

func (*AcceptStatementContext) ToStringTree

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

type AccessModeClauseContext

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

func NewAccessModeClauseContext

func NewAccessModeClauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AccessModeClauseContext

func NewEmptyAccessModeClauseContext

func NewEmptyAccessModeClauseContext() *AccessModeClauseContext

func (*AccessModeClauseContext) ACCESS

func (*AccessModeClauseContext) DYNAMIC

func (*AccessModeClauseContext) EXCLUSIVE

func (*AccessModeClauseContext) EnterRule

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

func (*AccessModeClauseContext) ExitRule

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

func (*AccessModeClauseContext) GetParser

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

func (*AccessModeClauseContext) GetRuleContext

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

func (*AccessModeClauseContext) IS

func (*AccessModeClauseContext) IsAccessModeClauseContext

func (*AccessModeClauseContext) IsAccessModeClauseContext()

func (*AccessModeClauseContext) MODE

func (*AccessModeClauseContext) RANDOM

func (*AccessModeClauseContext) SEQUENTIAL

func (s *AccessModeClauseContext) SEQUENTIAL() antlr.TerminalNode

func (*AccessModeClauseContext) ToStringTree

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

type AddCorrespondingStatementContext

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

func NewAddCorrespondingStatementContext

func NewAddCorrespondingStatementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AddCorrespondingStatementContext

func NewEmptyAddCorrespondingStatementContext

func NewEmptyAddCorrespondingStatementContext() *AddCorrespondingStatementContext

func (*AddCorrespondingStatementContext) AddTo

func (*AddCorrespondingStatementContext) CORR

func (*AddCorrespondingStatementContext) CORRESPONDING

func (*AddCorrespondingStatementContext) EnterRule

func (*AddCorrespondingStatementContext) ExitRule

func (*AddCorrespondingStatementContext) GetParser

func (*AddCorrespondingStatementContext) GetRuleContext

func (*AddCorrespondingStatementContext) Identifier

func (*AddCorrespondingStatementContext) IsAddCorrespondingStatementContext

func (*AddCorrespondingStatementContext) IsAddCorrespondingStatementContext()

func (*AddCorrespondingStatementContext) TO

func (*AddCorrespondingStatementContext) ToStringTree

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

type AddFromContext

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

func NewAddFromContext

func NewAddFromContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AddFromContext

func NewEmptyAddFromContext

func NewEmptyAddFromContext() *AddFromContext

func (*AddFromContext) EnterRule

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

func (*AddFromContext) ExitRule

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

func (*AddFromContext) GetParser

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

func (*AddFromContext)