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)
}
Output:
Index ¶
- Constants
- type AbbreviationContext
- func (s *AbbreviationContext) Abbreviation() IAbbreviationContext
- func (s *AbbreviationContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *AbbreviationContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AbbreviationContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AbbreviationContext) GetParser() antlr.Parser
- func (s *AbbreviationContext) GetRuleContext() antlr.RuleContext
- func (*AbbreviationContext) IsAbbreviationContext()
- func (s *AbbreviationContext) LPARENCHAR() antlr.TerminalNode
- func (s *AbbreviationContext) NOT() antlr.TerminalNode
- func (s *AbbreviationContext) RPARENCHAR() antlr.TerminalNode
- func (s *AbbreviationContext) RelationalOperator() IRelationalOperatorContext
- func (s *AbbreviationContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AcceptFromDateStatementContext
- func (s *AcceptFromDateStatementContext) DATE() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) DAY() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) DAY_OF_WEEK() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AcceptFromDateStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AcceptFromDateStatementContext) FROM() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) GetParser() antlr.Parser
- func (s *AcceptFromDateStatementContext) GetRuleContext() antlr.RuleContext
- func (*AcceptFromDateStatementContext) IsAcceptFromDateStatementContext()
- func (s *AcceptFromDateStatementContext) MMDDYYYY() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) TIME() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) TIMER() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) TODAYS_DATE() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) TODAYS_NAME() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *AcceptFromDateStatementContext) YEAR() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) YYYYDDD() antlr.TerminalNode
- func (s *AcceptFromDateStatementContext) YYYYMMDD() antlr.TerminalNode
- type AcceptFromEscapeKeyStatementContext
- func (s *AcceptFromEscapeKeyStatementContext) ESCAPE() antlr.TerminalNode
- func (s *AcceptFromEscapeKeyStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AcceptFromEscapeKeyStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AcceptFromEscapeKeyStatementContext) FROM() antlr.TerminalNode
- func (s *AcceptFromEscapeKeyStatementContext) GetParser() antlr.Parser
- func (s *AcceptFromEscapeKeyStatementContext) GetRuleContext() antlr.RuleContext
- func (*AcceptFromEscapeKeyStatementContext) IsAcceptFromEscapeKeyStatementContext()
- func (s *AcceptFromEscapeKeyStatementContext) KEY() antlr.TerminalNode
- func (s *AcceptFromEscapeKeyStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AcceptFromMnemonicStatementContext
- func (s *AcceptFromMnemonicStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AcceptFromMnemonicStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AcceptFromMnemonicStatementContext) FROM() antlr.TerminalNode
- func (s *AcceptFromMnemonicStatementContext) GetParser() antlr.Parser
- func (s *AcceptFromMnemonicStatementContext) GetRuleContext() antlr.RuleContext
- func (*AcceptFromMnemonicStatementContext) IsAcceptFromMnemonicStatementContext()
- func (s *AcceptFromMnemonicStatementContext) MnemonicName() IMnemonicNameContext
- func (s *AcceptFromMnemonicStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AcceptMessageCountStatementContext
- func (s *AcceptMessageCountStatementContext) COUNT() antlr.TerminalNode
- func (s *AcceptMessageCountStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AcceptMessageCountStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AcceptMessageCountStatementContext) GetParser() antlr.Parser
- func (s *AcceptMessageCountStatementContext) GetRuleContext() antlr.RuleContext
- func (*AcceptMessageCountStatementContext) IsAcceptMessageCountStatementContext()
- func (s *AcceptMessageCountStatementContext) MESSAGE() antlr.TerminalNode
- func (s *AcceptMessageCountStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AcceptStatementContext
- func (s *AcceptStatementContext) ACCEPT() antlr.TerminalNode
- func (s *AcceptStatementContext) AcceptFromDateStatement() IAcceptFromDateStatementContext
- func (s *AcceptStatementContext) AcceptFromEscapeKeyStatement() IAcceptFromEscapeKeyStatementContext
- func (s *AcceptStatementContext) AcceptFromMnemonicStatement() IAcceptFromMnemonicStatementContext
- func (s *AcceptStatementContext) AcceptMessageCountStatement() IAcceptMessageCountStatementContext
- func (s *AcceptStatementContext) END_ACCEPT() antlr.TerminalNode
- func (s *AcceptStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AcceptStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AcceptStatementContext) GetParser() antlr.Parser
- func (s *AcceptStatementContext) GetRuleContext() antlr.RuleContext
- func (s *AcceptStatementContext) Identifier() IIdentifierContext
- func (*AcceptStatementContext) IsAcceptStatementContext()
- func (s *AcceptStatementContext) NotOnExceptionClause() INotOnExceptionClauseContext
- func (s *AcceptStatementContext) OnExceptionClause() IOnExceptionClauseContext
- func (s *AcceptStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AccessModeClauseContext
- func (s *AccessModeClauseContext) ACCESS() antlr.TerminalNode
- func (s *AccessModeClauseContext) DYNAMIC() antlr.TerminalNode
- func (s *AccessModeClauseContext) EXCLUSIVE() antlr.TerminalNode
- func (s *AccessModeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AccessModeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AccessModeClauseContext) GetParser() antlr.Parser
- func (s *AccessModeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *AccessModeClauseContext) IS() antlr.TerminalNode
- func (*AccessModeClauseContext) IsAccessModeClauseContext()
- func (s *AccessModeClauseContext) MODE() antlr.TerminalNode
- func (s *AccessModeClauseContext) RANDOM() antlr.TerminalNode
- func (s *AccessModeClauseContext) SEQUENTIAL() antlr.TerminalNode
- func (s *AccessModeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddCorrespondingStatementContext
- func (s *AddCorrespondingStatementContext) AddTo() IAddToContext
- func (s *AddCorrespondingStatementContext) CORR() antlr.TerminalNode
- func (s *AddCorrespondingStatementContext) CORRESPONDING() antlr.TerminalNode
- func (s *AddCorrespondingStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddCorrespondingStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddCorrespondingStatementContext) GetParser() antlr.Parser
- func (s *AddCorrespondingStatementContext) GetRuleContext() antlr.RuleContext
- func (s *AddCorrespondingStatementContext) Identifier() IIdentifierContext
- func (*AddCorrespondingStatementContext) IsAddCorrespondingStatementContext()
- func (s *AddCorrespondingStatementContext) TO() antlr.TerminalNode
- func (s *AddCorrespondingStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddFromContext
- func (s *AddFromContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddFromContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddFromContext) GetParser() antlr.Parser
- func (s *AddFromContext) GetRuleContext() antlr.RuleContext
- func (s *AddFromContext) Identifier() IIdentifierContext
- func (*AddFromContext) IsAddFromContext()
- func (s *AddFromContext) Literal() ILiteralContext
- func (s *AddFromContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddGivingContext
- func (s *AddGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddGivingContext) GetParser() antlr.Parser
- func (s *AddGivingContext) GetRuleContext() antlr.RuleContext
- func (s *AddGivingContext) Identifier() IIdentifierContext
- func (*AddGivingContext) IsAddGivingContext()
- func (s *AddGivingContext) ROUNDED() antlr.TerminalNode
- func (s *AddGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddStatementContext
- func (s *AddStatementContext) ADD() antlr.TerminalNode
- func (s *AddStatementContext) AddCorrespondingStatement() IAddCorrespondingStatementContext
- func (s *AddStatementContext) AddToGivingStatement() IAddToGivingStatementContext
- func (s *AddStatementContext) AddToStatement() IAddToStatementContext
- func (s *AddStatementContext) END_ADD() antlr.TerminalNode
- func (s *AddStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddStatementContext) GetParser() antlr.Parser
- func (s *AddStatementContext) GetRuleContext() antlr.RuleContext
- func (*AddStatementContext) IsAddStatementContext()
- func (s *AddStatementContext) NotOnSizeErrorPhrase() INotOnSizeErrorPhraseContext
- func (s *AddStatementContext) OnSizeErrorPhrase() IOnSizeErrorPhraseContext
- func (s *AddStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddToContext
- func (s *AddToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddToContext) GetParser() antlr.Parser
- func (s *AddToContext) GetRuleContext() antlr.RuleContext
- func (s *AddToContext) Identifier() IIdentifierContext
- func (*AddToContext) IsAddToContext()
- func (s *AddToContext) ROUNDED() antlr.TerminalNode
- func (s *AddToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddToGivingContext
- func (s *AddToGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddToGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddToGivingContext) GetParser() antlr.Parser
- func (s *AddToGivingContext) GetRuleContext() antlr.RuleContext
- func (s *AddToGivingContext) Identifier() IIdentifierContext
- func (*AddToGivingContext) IsAddToGivingContext()
- func (s *AddToGivingContext) Literal() ILiteralContext
- func (s *AddToGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddToGivingStatementContext
- func (s *AddToGivingStatementContext) AddFrom(i int) IAddFromContext
- func (s *AddToGivingStatementContext) AddGiving(i int) IAddGivingContext
- func (s *AddToGivingStatementContext) AddToGiving(i int) IAddToGivingContext
- func (s *AddToGivingStatementContext) AllAddFrom() []IAddFromContext
- func (s *AddToGivingStatementContext) AllAddGiving() []IAddGivingContext
- func (s *AddToGivingStatementContext) AllAddToGiving() []IAddToGivingContext
- func (s *AddToGivingStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddToGivingStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddToGivingStatementContext) GIVING() antlr.TerminalNode
- func (s *AddToGivingStatementContext) GetParser() antlr.Parser
- func (s *AddToGivingStatementContext) GetRuleContext() antlr.RuleContext
- func (*AddToGivingStatementContext) IsAddToGivingStatementContext()
- func (s *AddToGivingStatementContext) TO() antlr.TerminalNode
- func (s *AddToGivingStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AddToStatementContext
- func (s *AddToStatementContext) AddFrom(i int) IAddFromContext
- func (s *AddToStatementContext) AddTo(i int) IAddToContext
- func (s *AddToStatementContext) AllAddFrom() []IAddFromContext
- func (s *AddToStatementContext) AllAddTo() []IAddToContext
- func (s *AddToStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AddToStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AddToStatementContext) GetParser() antlr.Parser
- func (s *AddToStatementContext) GetRuleContext() antlr.RuleContext
- func (*AddToStatementContext) IsAddToStatementContext()
- func (s *AddToStatementContext) TO() antlr.TerminalNode
- func (s *AddToStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetAlsoContext
- func (s *AlphabetAlsoContext) ALSO() antlr.TerminalNode
- func (s *AlphabetAlsoContext) AllLiteral() []ILiteralContext
- func (s *AlphabetAlsoContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetAlsoContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetAlsoContext) GetParser() antlr.Parser
- func (s *AlphabetAlsoContext) GetRuleContext() antlr.RuleContext
- func (*AlphabetAlsoContext) IsAlphabetAlsoContext()
- func (s *AlphabetAlsoContext) Literal(i int) ILiteralContext
- func (s *AlphabetAlsoContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetClauseContext
- func (s *AlphabetClauseContext) AlphabetClauseFormat1() IAlphabetClauseFormat1Context
- func (s *AlphabetClauseContext) AlphabetClauseFormat2() IAlphabetClauseFormat2Context
- func (s *AlphabetClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetClauseContext) GetParser() antlr.Parser
- func (s *AlphabetClauseContext) GetRuleContext() antlr.RuleContext
- func (*AlphabetClauseContext) IsAlphabetClauseContext()
- func (s *AlphabetClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetClauseFormat1Context
- func (s *AlphabetClauseFormat1Context) ALPHABET() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) ALPHANUMERIC() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) ASCII() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) AllAlphabetLiterals() []IAlphabetLiteralsContext
- func (s *AlphabetClauseFormat1Context) AlphabetLiterals(i int) IAlphabetLiteralsContext
- func (s *AlphabetClauseFormat1Context) AlphabetName() IAlphabetNameContext
- func (s *AlphabetClauseFormat1Context) CobolWord() ICobolWordContext
- func (s *AlphabetClauseFormat1Context) EBCDIC() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetClauseFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetClauseFormat1Context) FOR() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) GetParser() antlr.Parser
- func (s *AlphabetClauseFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *AlphabetClauseFormat1Context) IS() antlr.TerminalNode
- func (*AlphabetClauseFormat1Context) IsAlphabetClauseFormat1Context()
- func (s *AlphabetClauseFormat1Context) NATIVE() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) STANDARD_1() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) STANDARD_2() antlr.TerminalNode
- func (s *AlphabetClauseFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetClauseFormat2Context
- func (s *AlphabetClauseFormat2Context) ALPHABET() antlr.TerminalNode
- func (s *AlphabetClauseFormat2Context) AlphabetName() IAlphabetNameContext
- func (s *AlphabetClauseFormat2Context) CCSVERSION() antlr.TerminalNode
- func (s *AlphabetClauseFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetClauseFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetClauseFormat2Context) FOR() antlr.TerminalNode
- func (s *AlphabetClauseFormat2Context) GetParser() antlr.Parser
- func (s *AlphabetClauseFormat2Context) GetRuleContext() antlr.RuleContext
- func (s *AlphabetClauseFormat2Context) IS() antlr.TerminalNode
- func (*AlphabetClauseFormat2Context) IsAlphabetClauseFormat2Context()
- func (s *AlphabetClauseFormat2Context) Literal() ILiteralContext
- func (s *AlphabetClauseFormat2Context) NATIONAL() antlr.TerminalNode
- func (s *AlphabetClauseFormat2Context) NATIVE() antlr.TerminalNode
- func (s *AlphabetClauseFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetLiteralsContext
- func (s *AlphabetLiteralsContext) AllAlphabetAlso() []IAlphabetAlsoContext
- func (s *AlphabetLiteralsContext) AlphabetAlso(i int) IAlphabetAlsoContext
- func (s *AlphabetLiteralsContext) AlphabetThrough() IAlphabetThroughContext
- func (s *AlphabetLiteralsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetLiteralsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetLiteralsContext) GetParser() antlr.Parser
- func (s *AlphabetLiteralsContext) GetRuleContext() antlr.RuleContext
- func (*AlphabetLiteralsContext) IsAlphabetLiteralsContext()
- func (s *AlphabetLiteralsContext) Literal() ILiteralContext
- func (s *AlphabetLiteralsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetNameContext
- func (s *AlphabetNameContext) CobolWord() ICobolWordContext
- func (s *AlphabetNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetNameContext) GetParser() antlr.Parser
- func (s *AlphabetNameContext) GetRuleContext() antlr.RuleContext
- func (*AlphabetNameContext) IsAlphabetNameContext()
- func (s *AlphabetNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlphabetThroughContext
- func (s *AlphabetThroughContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlphabetThroughContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlphabetThroughContext) GetParser() antlr.Parser
- func (s *AlphabetThroughContext) GetRuleContext() antlr.RuleContext
- func (*AlphabetThroughContext) IsAlphabetThroughContext()
- func (s *AlphabetThroughContext) Literal() ILiteralContext
- func (s *AlphabetThroughContext) THROUGH() antlr.TerminalNode
- func (s *AlphabetThroughContext) THRU() antlr.TerminalNode
- func (s *AlphabetThroughContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlterProceedToContext
- func (s *AlterProceedToContext) AllProcedureName() []IProcedureNameContext
- func (s *AlterProceedToContext) AllTO() []antlr.TerminalNode
- func (s *AlterProceedToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlterProceedToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlterProceedToContext) GetParser() antlr.Parser
- func (s *AlterProceedToContext) GetRuleContext() antlr.RuleContext
- func (*AlterProceedToContext) IsAlterProceedToContext()
- func (s *AlterProceedToContext) PROCEED() antlr.TerminalNode
- func (s *AlterProceedToContext) ProcedureName(i int) IProcedureNameContext
- func (s *AlterProceedToContext) TO(i int) antlr.TerminalNode
- func (s *AlterProceedToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlterStatementContext
- func (s *AlterStatementContext) ALTER() antlr.TerminalNode
- func (s *AlterStatementContext) AllAlterProceedTo() []IAlterProceedToContext
- func (s *AlterStatementContext) AlterProceedTo(i int) IAlterProceedToContext
- func (s *AlterStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlterStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlterStatementContext) GetParser() antlr.Parser
- func (s *AlterStatementContext) GetRuleContext() antlr.RuleContext
- func (*AlterStatementContext) IsAlterStatementContext()
- func (s *AlterStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlteredGoToContext
- func (s *AlteredGoToContext) DOT_FS() antlr.TerminalNode
- func (s *AlteredGoToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlteredGoToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlteredGoToContext) GO() antlr.TerminalNode
- func (s *AlteredGoToContext) GetParser() antlr.Parser
- func (s *AlteredGoToContext) GetRuleContext() antlr.RuleContext
- func (*AlteredGoToContext) IsAlteredGoToContext()
- func (s *AlteredGoToContext) TO() antlr.TerminalNode
- func (s *AlteredGoToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AlternateRecordKeyClauseContext
- func (s *AlternateRecordKeyClauseContext) ALTERNATE() antlr.TerminalNode
- func (s *AlternateRecordKeyClauseContext) DUPLICATES() antlr.TerminalNode
- func (s *AlternateRecordKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AlternateRecordKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AlternateRecordKeyClauseContext) GetParser() antlr.Parser
- func (s *AlternateRecordKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (s *AlternateRecordKeyClauseContext) IS() antlr.TerminalNode
- func (*AlternateRecordKeyClauseContext) IsAlternateRecordKeyClauseContext()
- func (s *AlternateRecordKeyClauseContext) KEY() antlr.TerminalNode
- func (s *AlternateRecordKeyClauseContext) PasswordClause() IPasswordClauseContext
- func (s *AlternateRecordKeyClauseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *AlternateRecordKeyClauseContext) RECORD() antlr.TerminalNode
- func (s *AlternateRecordKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *AlternateRecordKeyClauseContext) WITH() antlr.TerminalNode
- type AndOrConditionContext
- func (s *AndOrConditionContext) AND() antlr.TerminalNode
- func (s *AndOrConditionContext) Abbreviation(i int) IAbbreviationContext
- func (s *AndOrConditionContext) AllAbbreviation() []IAbbreviationContext
- func (s *AndOrConditionContext) CombinableCondition() ICombinableConditionContext
- func (s *AndOrConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AndOrConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AndOrConditionContext) GetParser() antlr.Parser
- func (s *AndOrConditionContext) GetRuleContext() antlr.RuleContext
- func (*AndOrConditionContext) IsAndOrConditionContext()
- func (s *AndOrConditionContext) OR() antlr.TerminalNode
- func (s *AndOrConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ArgumentContext
- func (s *ArgumentContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *ArgumentContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ArgumentContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ArgumentContext) GetParser() antlr.Parser
- func (s *ArgumentContext) GetRuleContext() antlr.RuleContext
- func (s *ArgumentContext) Identifier() IIdentifierContext
- func (s *ArgumentContext) IndexName() IIndexNameContext
- func (s *ArgumentContext) IntegerLiteral() IIntegerLiteralContext
- func (*ArgumentContext) IsArgumentContext()
- func (s *ArgumentContext) Literal() ILiteralContext
- func (s *ArgumentContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *ArgumentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ArithmeticExpressionContext
- func (s *ArithmeticExpressionContext) AllPlusMinus() []IPlusMinusContext
- func (s *ArithmeticExpressionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ArithmeticExpressionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ArithmeticExpressionContext) GetParser() antlr.Parser
- func (s *ArithmeticExpressionContext) GetRuleContext() antlr.RuleContext
- func (*ArithmeticExpressionContext) IsArithmeticExpressionContext()
- func (s *ArithmeticExpressionContext) MultDivs() IMultDivsContext
- func (s *ArithmeticExpressionContext) PlusMinus(i int) IPlusMinusContext
- func (s *ArithmeticExpressionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AssignClauseContext
- func (s *AssignClauseContext) ASSIGN() antlr.TerminalNode
- func (s *AssignClauseContext) AssignmentName() IAssignmentNameContext
- func (s *AssignClauseContext) DISK() antlr.TerminalNode
- func (s *AssignClauseContext) DISPLAY() antlr.TerminalNode
- func (s *AssignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AssignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AssignClauseContext) GetParser() antlr.Parser
- func (s *AssignClauseContext) GetRuleContext() antlr.RuleContext
- func (*AssignClauseContext) IsAssignClauseContext()
- func (s *AssignClauseContext) KEYBOARD() antlr.TerminalNode
- func (s *AssignClauseContext) Literal() ILiteralContext
- func (s *AssignClauseContext) PORT() antlr.TerminalNode
- func (s *AssignClauseContext) PRINTER() antlr.TerminalNode
- func (s *AssignClauseContext) READER() antlr.TerminalNode
- func (s *AssignClauseContext) REMOTE() antlr.TerminalNode
- func (s *AssignClauseContext) TAPE() antlr.TerminalNode
- func (s *AssignClauseContext) TO() antlr.TerminalNode
- func (s *AssignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *AssignClauseContext) VIRTUAL() antlr.TerminalNode
- type AssignmentNameContext
- func (s *AssignmentNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AssignmentNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AssignmentNameContext) GetParser() antlr.Parser
- func (s *AssignmentNameContext) GetRuleContext() antlr.RuleContext
- func (*AssignmentNameContext) IsAssignmentNameContext()
- func (s *AssignmentNameContext) SystemName() ISystemNameContext
- func (s *AssignmentNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AtEndPhraseContext
- func (s *AtEndPhraseContext) AT() antlr.TerminalNode
- func (s *AtEndPhraseContext) AllStatement() []IStatementContext
- func (s *AtEndPhraseContext) END() antlr.TerminalNode
- func (s *AtEndPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AtEndPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AtEndPhraseContext) GetParser() antlr.Parser
- func (s *AtEndPhraseContext) GetRuleContext() antlr.RuleContext
- func (*AtEndPhraseContext) IsAtEndPhraseContext()
- func (s *AtEndPhraseContext) Statement(i int) IStatementContext
- func (s *AtEndPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type AuthorParagraphContext
- func (s *AuthorParagraphContext) AUTHOR() antlr.TerminalNode
- func (s *AuthorParagraphContext) CommentEntry() ICommentEntryContext
- func (s *AuthorParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *AuthorParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *AuthorParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *AuthorParagraphContext) GetParser() antlr.Parser
- func (s *AuthorParagraphContext) GetRuleContext() antlr.RuleContext
- func (*AuthorParagraphContext) IsAuthorParagraphContext()
- func (s *AuthorParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type BaseCobol85Listener
- func (s *BaseCobol85Listener) EnterAbbreviation(ctx *AbbreviationContext)
- func (s *BaseCobol85Listener) EnterAcceptFromDateStatement(ctx *AcceptFromDateStatementContext)
- func (s *BaseCobol85Listener) EnterAcceptFromEscapeKeyStatement(ctx *AcceptFromEscapeKeyStatementContext)
- func (s *BaseCobol85Listener) EnterAcceptFromMnemonicStatement(ctx *AcceptFromMnemonicStatementContext)
- func (s *BaseCobol85Listener) EnterAcceptMessageCountStatement(ctx *AcceptMessageCountStatementContext)
- func (s *BaseCobol85Listener) EnterAcceptStatement(ctx *AcceptStatementContext)
- func (s *BaseCobol85Listener) EnterAccessModeClause(ctx *AccessModeClauseContext)
- func (s *BaseCobol85Listener) EnterAddCorrespondingStatement(ctx *AddCorrespondingStatementContext)
- func (s *BaseCobol85Listener) EnterAddFrom(ctx *AddFromContext)
- func (s *BaseCobol85Listener) EnterAddGiving(ctx *AddGivingContext)
- func (s *BaseCobol85Listener) EnterAddStatement(ctx *AddStatementContext)
- func (s *BaseCobol85Listener) EnterAddTo(ctx *AddToContext)
- func (s *BaseCobol85Listener) EnterAddToGiving(ctx *AddToGivingContext)
- func (s *BaseCobol85Listener) EnterAddToGivingStatement(ctx *AddToGivingStatementContext)
- func (s *BaseCobol85Listener) EnterAddToStatement(ctx *AddToStatementContext)
- func (s *BaseCobol85Listener) EnterAlphabetAlso(ctx *AlphabetAlsoContext)
- func (s *BaseCobol85Listener) EnterAlphabetClause(ctx *AlphabetClauseContext)
- func (s *BaseCobol85Listener) EnterAlphabetClauseFormat1(ctx *AlphabetClauseFormat1Context)
- func (s *BaseCobol85Listener) EnterAlphabetClauseFormat2(ctx *AlphabetClauseFormat2Context)
- func (s *BaseCobol85Listener) EnterAlphabetLiterals(ctx *AlphabetLiteralsContext)
- func (s *BaseCobol85Listener) EnterAlphabetName(ctx *AlphabetNameContext)
- func (s *BaseCobol85Listener) EnterAlphabetThrough(ctx *AlphabetThroughContext)
- func (s *BaseCobol85Listener) EnterAlterProceedTo(ctx *AlterProceedToContext)
- func (s *BaseCobol85Listener) EnterAlterStatement(ctx *AlterStatementContext)
- func (s *BaseCobol85Listener) EnterAlteredGoTo(ctx *AlteredGoToContext)
- func (s *BaseCobol85Listener) EnterAlternateRecordKeyClause(ctx *AlternateRecordKeyClauseContext)
- func (s *BaseCobol85Listener) EnterAndOrCondition(ctx *AndOrConditionContext)
- func (s *BaseCobol85Listener) EnterArgument(ctx *ArgumentContext)
- func (s *BaseCobol85Listener) EnterArithmeticExpression(ctx *ArithmeticExpressionContext)
- func (s *BaseCobol85Listener) EnterAssignClause(ctx *AssignClauseContext)
- func (s *BaseCobol85Listener) EnterAssignmentName(ctx *AssignmentNameContext)
- func (s *BaseCobol85Listener) EnterAtEndPhrase(ctx *AtEndPhraseContext)
- func (s *BaseCobol85Listener) EnterAuthorParagraph(ctx *AuthorParagraphContext)
- func (s *BaseCobol85Listener) EnterBasis(ctx *BasisContext)
- func (s *BaseCobol85Listener) EnterBasisName(ctx *BasisNameContext)
- func (s *BaseCobol85Listener) EnterBlockContainsClause(ctx *BlockContainsClauseContext)
- func (s *BaseCobol85Listener) EnterBlockContainsTo(ctx *BlockContainsToContext)
- func (s *BaseCobol85Listener) EnterBooleanLiteral(ctx *BooleanLiteralContext)
- func (s *BaseCobol85Listener) EnterCallByContent(ctx *CallByContentContext)
- func (s *BaseCobol85Listener) EnterCallByContentPhrase(ctx *CallByContentPhraseContext)
- func (s *BaseCobol85Listener) EnterCallByReference(ctx *CallByReferenceContext)
- func (s *BaseCobol85Listener) EnterCallByReferencePhrase(ctx *CallByReferencePhraseContext)
- func (s *BaseCobol85Listener) EnterCallByValue(ctx *CallByValueContext)
- func (s *BaseCobol85Listener) EnterCallByValuePhrase(ctx *CallByValuePhraseContext)
- func (s *BaseCobol85Listener) EnterCallGivingPhrase(ctx *CallGivingPhraseContext)
- func (s *BaseCobol85Listener) EnterCallStatement(ctx *CallStatementContext)
- func (s *BaseCobol85Listener) EnterCallUsingParameter(ctx *CallUsingParameterContext)
- func (s *BaseCobol85Listener) EnterCallUsingPhrase(ctx *CallUsingPhraseContext)
- func (s *BaseCobol85Listener) EnterCancelCall(ctx *CancelCallContext)
- func (s *BaseCobol85Listener) EnterCancelStatement(ctx *CancelStatementContext)
- func (s *BaseCobol85Listener) EnterCdName(ctx *CdNameContext)
- func (s *BaseCobol85Listener) EnterChannelClause(ctx *ChannelClauseContext)
- func (s *BaseCobol85Listener) EnterCharacterPosition(ctx *CharacterPositionContext)
- func (s *BaseCobol85Listener) EnterCharacterSetClause(ctx *CharacterSetClauseContext)
- func (s *BaseCobol85Listener) EnterCicsDfhRespLiteral(ctx *CicsDfhRespLiteralContext)
- func (s *BaseCobol85Listener) EnterCicsDfhValueLiteral(ctx *CicsDfhValueLiteralContext)
- func (s *BaseCobol85Listener) EnterClassClause(ctx *ClassClauseContext)
- func (s *BaseCobol85Listener) EnterClassClauseFrom(ctx *ClassClauseFromContext)
- func (s *BaseCobol85Listener) EnterClassClauseThrough(ctx *ClassClauseThroughContext)
- func (s *BaseCobol85Listener) EnterClassClauseTo(ctx *ClassClauseToContext)
- func (s *BaseCobol85Listener) EnterClassCondition(ctx *ClassConditionContext)
- func (s *BaseCobol85Listener) EnterClassName(ctx *ClassNameContext)
- func (s *BaseCobol85Listener) EnterCloseFile(ctx *CloseFileContext)
- func (s *BaseCobol85Listener) EnterClosePortFileIOStatement(ctx *ClosePortFileIOStatementContext)
- func (s *BaseCobol85Listener) EnterClosePortFileIOUsing(ctx *ClosePortFileIOUsingContext)
- func (s *BaseCobol85Listener) EnterClosePortFileIOUsingAssociatedData(ctx *ClosePortFileIOUsingAssociatedDataContext)
- func (s *BaseCobol85Listener) EnterClosePortFileIOUsingAssociatedDataLength(ctx *ClosePortFileIOUsingAssociatedDataLengthContext)
- func (s *BaseCobol85Listener) EnterClosePortFileIOUsingCloseDisposition(ctx *ClosePortFileIOUsingCloseDispositionContext)
- func (s *BaseCobol85Listener) EnterCloseReelUnitStatement(ctx *CloseReelUnitStatementContext)
- func (s *BaseCobol85Listener) EnterCloseRelativeStatement(ctx *CloseRelativeStatementContext)
- func (s *BaseCobol85Listener) EnterCloseStatement(ctx *CloseStatementContext)
- func (s *BaseCobol85Listener) EnterCobolWord(ctx *CobolWordContext)
- func (s *BaseCobol85Listener) EnterCodeSetClause(ctx *CodeSetClauseContext)
- func (s *BaseCobol85Listener) EnterCollatingSequenceClause(ctx *CollatingSequenceClauseContext)
- func (s *BaseCobol85Listener) EnterCollatingSequenceClauseAlphanumeric(ctx *CollatingSequenceClauseAlphanumericContext)
- func (s *BaseCobol85Listener) EnterCollatingSequenceClauseNational(ctx *CollatingSequenceClauseNationalContext)
- func (s *BaseCobol85Listener) EnterCombinableCondition(ctx *CombinableConditionContext)
- func (s *BaseCobol85Listener) EnterCommentEntry(ctx *CommentEntryContext)
- func (s *BaseCobol85Listener) EnterCommitmentControlClause(ctx *CommitmentControlClauseContext)
- func (s *BaseCobol85Listener) EnterCommunicationDescriptionEntry(ctx *CommunicationDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterCommunicationDescriptionEntryFormat1(ctx *CommunicationDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) EnterCommunicationDescriptionEntryFormat2(ctx *CommunicationDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) EnterCommunicationDescriptionEntryFormat3(ctx *CommunicationDescriptionEntryFormat3Context)
- func (s *BaseCobol85Listener) EnterCommunicationSection(ctx *CommunicationSectionContext)
- func (s *BaseCobol85Listener) EnterCompilationUnit(ctx *CompilationUnitContext)
- func (s *BaseCobol85Listener) EnterComputeStatement(ctx *ComputeStatementContext)
- func (s *BaseCobol85Listener) EnterComputeStore(ctx *ComputeStoreContext)
- func (s *BaseCobol85Listener) EnterComputerName(ctx *ComputerNameContext)
- func (s *BaseCobol85Listener) EnterCondition(ctx *ConditionContext)
- func (s *BaseCobol85Listener) EnterConditionName(ctx *ConditionNameContext)
- func (s *BaseCobol85Listener) EnterConditionNameReference(ctx *ConditionNameReferenceContext)
- func (s *BaseCobol85Listener) EnterConditionNameSubscriptReference(ctx *ConditionNameSubscriptReferenceContext)
- func (s *BaseCobol85Listener) EnterConfigurationSection(ctx *ConfigurationSectionContext)
- func (s *BaseCobol85Listener) EnterConfigurationSectionParagraph(ctx *ConfigurationSectionParagraphContext)
- func (s *BaseCobol85Listener) EnterContinueStatement(ctx *ContinueStatementContext)
- func (s *BaseCobol85Listener) EnterCurrencySignClause(ctx *CurrencySignClauseContext)
- func (s *BaseCobol85Listener) EnterDataAlignedClause(ctx *DataAlignedClauseContext)
- func (s *BaseCobol85Listener) EnterDataBaseSection(ctx *DataBaseSectionContext)
- func (s *BaseCobol85Listener) EnterDataBaseSectionEntry(ctx *DataBaseSectionEntryContext)
- func (s *BaseCobol85Listener) EnterDataBlankWhenZeroClause(ctx *DataBlankWhenZeroClauseContext)
- func (s *BaseCobol85Listener) EnterDataCommonOwnLocalClause(ctx *DataCommonOwnLocalClauseContext)
- func (s *BaseCobol85Listener) EnterDataDescName(ctx *DataDescNameContext)
- func (s *BaseCobol85Listener) EnterDataDescriptionEntry(ctx *DataDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterDataDescriptionEntryExecSql(ctx *DataDescriptionEntryExecSqlContext)
- func (s *BaseCobol85Listener) EnterDataDescriptionEntryFormat1(ctx *DataDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) EnterDataDescriptionEntryFormat2(ctx *DataDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) EnterDataDescriptionEntryFormat3(ctx *DataDescriptionEntryFormat3Context)
- func (s *BaseCobol85Listener) EnterDataDivision(ctx *DataDivisionContext)
- func (s *BaseCobol85Listener) EnterDataDivisionSection(ctx *DataDivisionSectionContext)
- func (s *BaseCobol85Listener) EnterDataExternalClause(ctx *DataExternalClauseContext)
- func (s *BaseCobol85Listener) EnterDataGlobalClause(ctx *DataGlobalClauseContext)
- func (s *BaseCobol85Listener) EnterDataIntegerStringClause(ctx *DataIntegerStringClauseContext)
- func (s *BaseCobol85Listener) EnterDataJustifiedClause(ctx *DataJustifiedClauseContext)
- func (s *BaseCobol85Listener) EnterDataName(ctx *DataNameContext)
- func (s *BaseCobol85Listener) EnterDataOccursClause(ctx *DataOccursClauseContext)
- func (s *BaseCobol85Listener) EnterDataOccursSort(ctx *DataOccursSortContext)
- func (s *BaseCobol85Listener) EnterDataOccursTo(ctx *DataOccursToContext)
- func (s *BaseCobol85Listener) EnterDataPictureClause(ctx *DataPictureClauseContext)
- func (s *BaseCobol85Listener) EnterDataReceivedByClause(ctx *DataReceivedByClauseContext)
- func (s *BaseCobol85Listener) EnterDataRecordAreaClause(ctx *DataRecordAreaClauseContext)
- func (s *BaseCobol85Listener) EnterDataRecordsClause(ctx *DataRecordsClauseContext)
- func (s *BaseCobol85Listener) EnterDataRedefinesClause(ctx *DataRedefinesClauseContext)
- func (s *BaseCobol85Listener) EnterDataRenamesClause(ctx *DataRenamesClauseContext)
- func (s *BaseCobol85Listener) EnterDataSignClause(ctx *DataSignClauseContext)
- func (s *BaseCobol85Listener) EnterDataSynchronizedClause(ctx *DataSynchronizedClauseContext)
- func (s *BaseCobol85Listener) EnterDataThreadLocalClause(ctx *DataThreadLocalClauseContext)
- func (s *BaseCobol85Listener) EnterDataTypeClause(ctx *DataTypeClauseContext)
- func (s *BaseCobol85Listener) EnterDataTypeDefClause(ctx *DataTypeDefClauseContext)
- func (s *BaseCobol85Listener) EnterDataUsageClause(ctx *DataUsageClauseContext)
- func (s *BaseCobol85Listener) EnterDataUsingClause(ctx *DataUsingClauseContext)
- func (s *BaseCobol85Listener) EnterDataValueClause(ctx *DataValueClauseContext)
- func (s *BaseCobol85Listener) EnterDataValueInterval(ctx *DataValueIntervalContext)
- func (s *BaseCobol85Listener) EnterDataValueIntervalFrom(ctx *DataValueIntervalFromContext)
- func (s *BaseCobol85Listener) EnterDataValueIntervalTo(ctx *DataValueIntervalToContext)
- func (s *BaseCobol85Listener) EnterDataWithLowerBoundsClause(ctx *DataWithLowerBoundsClauseContext)
- func (s *BaseCobol85Listener) EnterDateCompiledParagraph(ctx *DateCompiledParagraphContext)
- func (s *BaseCobol85Listener) EnterDateWrittenParagraph(ctx *DateWrittenParagraphContext)
- func (s *BaseCobol85Listener) EnterDecimalPointClause(ctx *DecimalPointClauseContext)
- func (s *BaseCobol85Listener) EnterDefaultComputationalSignClause(ctx *DefaultComputationalSignClauseContext)
- func (s *BaseCobol85Listener) EnterDefaultDisplaySignClause(ctx *DefaultDisplaySignClauseContext)
- func (s *BaseCobol85Listener) EnterDeleteStatement(ctx *DeleteStatementContext)
- func (s *BaseCobol85Listener) EnterDestinationCountClause(ctx *DestinationCountClauseContext)
- func (s *BaseCobol85Listener) EnterDestinationTableClause(ctx *DestinationTableClauseContext)
- func (s *BaseCobol85Listener) EnterDisableStatement(ctx *DisableStatementContext)
- func (s *BaseCobol85Listener) EnterDiskSizeClause(ctx *DiskSizeClauseContext)
- func (s *BaseCobol85Listener) EnterDisplayAt(ctx *DisplayAtContext)
- func (s *BaseCobol85Listener) EnterDisplayOperand(ctx *DisplayOperandContext)
- func (s *BaseCobol85Listener) EnterDisplayStatement(ctx *DisplayStatementContext)
- func (s *BaseCobol85Listener) EnterDisplayUpon(ctx *DisplayUponContext)
- func (s *BaseCobol85Listener) EnterDisplayWith(ctx *DisplayWithContext)
- func (s *BaseCobol85Listener) EnterDivideByGivingStatement(ctx *DivideByGivingStatementContext)
- func (s *BaseCobol85Listener) EnterDivideGiving(ctx *DivideGivingContext)
- func (s *BaseCobol85Listener) EnterDivideGivingPhrase(ctx *DivideGivingPhraseContext)
- func (s *BaseCobol85Listener) EnterDivideInto(ctx *DivideIntoContext)
- func (s *BaseCobol85Listener) EnterDivideIntoGivingStatement(ctx *DivideIntoGivingStatementContext)
- func (s *BaseCobol85Listener) EnterDivideIntoStatement(ctx *DivideIntoStatementContext)
- func (s *BaseCobol85Listener) EnterDivideRemainder(ctx *DivideRemainderContext)
- func (s *BaseCobol85Listener) EnterDivideStatement(ctx *DivideStatementContext)
- func (s *BaseCobol85Listener) EnterEnableStatement(ctx *EnableStatementContext)
- func (s *BaseCobol85Listener) EnterEndKeyClause(ctx *EndKeyClauseContext)
- func (s *BaseCobol85Listener) EnterEndProgramStatement(ctx *EndProgramStatementContext)
- func (s *BaseCobol85Listener) EnterEntryStatement(ctx *EntryStatementContext)
- func (s *BaseCobol85Listener) EnterEnvironmentDivision(ctx *EnvironmentDivisionContext)
- func (s *BaseCobol85Listener) EnterEnvironmentDivisionBody(ctx *EnvironmentDivisionBodyContext)
- func (s *BaseCobol85Listener) EnterEnvironmentName(ctx *EnvironmentNameContext)
- func (s *BaseCobol85Listener) EnterEnvironmentSwitchNameClause(ctx *EnvironmentSwitchNameClauseContext)
- func (s *BaseCobol85Listener) EnterEnvironmentSwitchNameSpecialNamesStatusPhrase(ctx *EnvironmentSwitchNameSpecialNamesStatusPhraseContext)
- func (s *BaseCobol85Listener) EnterErrorKeyClause(ctx *ErrorKeyClauseContext)
- func (s *BaseCobol85Listener) EnterEvaluateAlsoCondition(ctx *EvaluateAlsoConditionContext)
- func (s *BaseCobol85Listener) EnterEvaluateAlsoSelect(ctx *EvaluateAlsoSelectContext)
- func (s *BaseCobol85Listener) EnterEvaluateCondition(ctx *EvaluateConditionContext)
- func (s *BaseCobol85Listener) EnterEvaluateSelect(ctx *EvaluateSelectContext)
- func (s *BaseCobol85Listener) EnterEvaluateStatement(ctx *EvaluateStatementContext)
- func (s *BaseCobol85Listener) EnterEvaluateThrough(ctx *EvaluateThroughContext)
- func (s *BaseCobol85Listener) EnterEvaluateValue(ctx *EvaluateValueContext)
- func (s *BaseCobol85Listener) EnterEvaluateWhen(ctx *EvaluateWhenContext)
- func (s *BaseCobol85Listener) EnterEvaluateWhenOther(ctx *EvaluateWhenOtherContext)
- func (s *BaseCobol85Listener) EnterEvaluateWhenPhrase(ctx *EvaluateWhenPhraseContext)
- func (s *BaseCobol85Listener) EnterEveryRule(ctx antlr.ParserRuleContext)
- func (s *BaseCobol85Listener) EnterExecCicsStatement(ctx *ExecCicsStatementContext)
- func (s *BaseCobol85Listener) EnterExecSqlImsStatement(ctx *ExecSqlImsStatementContext)
- func (s *BaseCobol85Listener) EnterExecSqlStatement(ctx *ExecSqlStatementContext)
- func (s *BaseCobol85Listener) EnterExhibitOperand(ctx *ExhibitOperandContext)
- func (s *BaseCobol85Listener) EnterExhibitStatement(ctx *ExhibitStatementContext)
- func (s *BaseCobol85Listener) EnterExitStatement(ctx *ExitStatementContext)
- func (s *BaseCobol85Listener) EnterExternalClause(ctx *ExternalClauseContext)
- func (s *BaseCobol85Listener) EnterFigurativeConstant(ctx *FigurativeConstantContext)
- func (s *BaseCobol85Listener) EnterFileControlClause(ctx *FileControlClauseContext)
- func (s *BaseCobol85Listener) EnterFileControlEntry(ctx *FileControlEntryContext)
- func (s *BaseCobol85Listener) EnterFileControlParagraph(ctx *FileControlParagraphContext)
- func (s *BaseCobol85Listener) EnterFileDescriptionEntry(ctx *FileDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterFileDescriptionEntryClause(ctx *FileDescriptionEntryClauseContext)
- func (s *BaseCobol85Listener) EnterFileName(ctx *FileNameContext)
- func (s *BaseCobol85Listener) EnterFileSection(ctx *FileSectionContext)
- func (s *BaseCobol85Listener) EnterFileStatusClause(ctx *FileStatusClauseContext)
- func (s *BaseCobol85Listener) EnterFunctionCall(ctx *FunctionCallContext)
- func (s *BaseCobol85Listener) EnterFunctionName(ctx *FunctionNameContext)
- func (s *BaseCobol85Listener) EnterGenerateStatement(ctx *GenerateStatementContext)
- func (s *BaseCobol85Listener) EnterGlobalClause(ctx *GlobalClauseContext)
- func (s *BaseCobol85Listener) EnterGoToDependingOnStatement(ctx *GoToDependingOnStatementContext)
- func (s *BaseCobol85Listener) EnterGoToStatement(ctx *GoToStatementContext)
- func (s *BaseCobol85Listener) EnterGoToStatementSimple(ctx *GoToStatementSimpleContext)
- func (s *BaseCobol85Listener) EnterGobackStatement(ctx *GobackStatementContext)
- func (s *BaseCobol85Listener) EnterIdentificationDivision(ctx *IdentificationDivisionContext)
- func (s *BaseCobol85Listener) EnterIdentificationDivisionBody(ctx *IdentificationDivisionBodyContext)
- func (s *BaseCobol85Listener) EnterIdentifier(ctx *IdentifierContext)
- func (s *BaseCobol85Listener) EnterIfElse(ctx *IfElseContext)
- func (s *BaseCobol85Listener) EnterIfStatement(ctx *IfStatementContext)
- func (s *BaseCobol85Listener) EnterIfThen(ctx *IfThenContext)
- func (s *BaseCobol85Listener) EnterInData(ctx *InDataContext)
- func (s *BaseCobol85Listener) EnterInFile(ctx *InFileContext)
- func (s *BaseCobol85Listener) EnterInLibrary(ctx *InLibraryContext)
- func (s *BaseCobol85Listener) EnterInMnemonic(ctx *InMnemonicContext)
- func (s *BaseCobol85Listener) EnterInSection(ctx *InSectionContext)
- func (s *BaseCobol85Listener) EnterInTable(ctx *InTableContext)
- func (s *BaseCobol85Listener) EnterIndexName(ctx *IndexNameContext)
- func (s *BaseCobol85Listener) EnterInitializeReplacingBy(ctx *InitializeReplacingByContext)
- func (s *BaseCobol85Listener) EnterInitializeReplacingPhrase(ctx *InitializeReplacingPhraseContext)
- func (s *BaseCobol85Listener) EnterInitializeStatement(ctx *InitializeStatementContext)
- func (s *BaseCobol85Listener) EnterInitiateStatement(ctx *InitiateStatementContext)
- func (s *BaseCobol85Listener) EnterInputOutputSection(ctx *InputOutputSectionContext)
- func (s *BaseCobol85Listener) EnterInputOutputSectionParagraph(ctx *InputOutputSectionParagraphContext)
- func (s *BaseCobol85Listener) EnterInspectAllLeading(ctx *InspectAllLeadingContext)
- func (s *BaseCobol85Listener) EnterInspectAllLeadings(ctx *InspectAllLeadingsContext)
- func (s *BaseCobol85Listener) EnterInspectBeforeAfter(ctx *InspectBeforeAfterContext)
- func (s *BaseCobol85Listener) EnterInspectBy(ctx *InspectByContext)
- func (s *BaseCobol85Listener) EnterInspectCharacters(ctx *InspectCharactersContext)
- func (s *BaseCobol85Listener) EnterInspectConvertingPhrase(ctx *InspectConvertingPhraseContext)
- func (s *BaseCobol85Listener) EnterInspectFor(ctx *InspectForContext)
- func (s *BaseCobol85Listener) EnterInspectReplacingAllLeading(ctx *InspectReplacingAllLeadingContext)
- func (s *BaseCobol85Listener) EnterInspectReplacingAllLeadings(ctx *InspectReplacingAllLeadingsContext)
- func (s *BaseCobol85Listener) EnterInspectReplacingCharacters(ctx *InspectReplacingCharactersContext)
- func (s *BaseCobol85Listener) EnterInspectReplacingPhrase(ctx *InspectReplacingPhraseContext)
- func (s *BaseCobol85Listener) EnterInspectStatement(ctx *InspectStatementContext)
- func (s *BaseCobol85Listener) EnterInspectTallyingPhrase(ctx *InspectTallyingPhraseContext)
- func (s *BaseCobol85Listener) EnterInspectTallyingReplacingPhrase(ctx *InspectTallyingReplacingPhraseContext)
- func (s *BaseCobol85Listener) EnterInspectTo(ctx *InspectToContext)
- func (s *BaseCobol85Listener) EnterInstallationParagraph(ctx *InstallationParagraphContext)
- func (s *BaseCobol85Listener) EnterIntegerLiteral(ctx *IntegerLiteralContext)
- func (s *BaseCobol85Listener) EnterInvalidKeyPhrase(ctx *InvalidKeyPhraseContext)
- func (s *BaseCobol85Listener) EnterIoControlClause(ctx *IoControlClauseContext)
- func (s *BaseCobol85Listener) EnterIoControlParagraph(ctx *IoControlParagraphContext)
- func (s *BaseCobol85Listener) EnterLabelRecordsClause(ctx *LabelRecordsClauseContext)
- func (s *BaseCobol85Listener) EnterLanguageName(ctx *LanguageNameContext)
- func (s *BaseCobol85Listener) EnterLength(ctx *LengthContext)
- func (s *BaseCobol85Listener) EnterLibraryAttributeClauseFormat1(ctx *LibraryAttributeClauseFormat1Context)
- func (s *BaseCobol85Listener) EnterLibraryAttributeClauseFormat2(ctx *LibraryAttributeClauseFormat2Context)
- func (s *BaseCobol85Listener) EnterLibraryAttributeFunction(ctx *LibraryAttributeFunctionContext)
- func (s *BaseCobol85Listener) EnterLibraryAttributeParameter(ctx *LibraryAttributeParameterContext)
- func (s *BaseCobol85Listener) EnterLibraryAttributeTitle(ctx *LibraryAttributeTitleContext)
- func (s *BaseCobol85Listener) EnterLibraryDescriptionEntry(ctx *LibraryDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterLibraryDescriptionEntryFormat1(ctx *LibraryDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) EnterLibraryDescriptionEntryFormat2(ctx *LibraryDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureClauseFormat1(ctx *LibraryEntryProcedureClauseFormat1Context)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureClauseFormat2(ctx *LibraryEntryProcedureClauseFormat2Context)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureForClause(ctx *LibraryEntryProcedureForClauseContext)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureGivingClause(ctx *LibraryEntryProcedureGivingClauseContext)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureUsingClause(ctx *LibraryEntryProcedureUsingClauseContext)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureUsingName(ctx *LibraryEntryProcedureUsingNameContext)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureWithClause(ctx *LibraryEntryProcedureWithClauseContext)
- func (s *BaseCobol85Listener) EnterLibraryEntryProcedureWithName(ctx *LibraryEntryProcedureWithNameContext)
- func (s *BaseCobol85Listener) EnterLibraryIsCommonClause(ctx *LibraryIsCommonClauseContext)
- func (s *BaseCobol85Listener) EnterLibraryIsGlobalClause(ctx *LibraryIsGlobalClauseContext)
- func (s *BaseCobol85Listener) EnterLibraryName(ctx *LibraryNameContext)
- func (s *BaseCobol85Listener) EnterLinageAt(ctx *LinageAtContext)
- func (s *BaseCobol85Listener) EnterLinageClause(ctx *LinageClauseContext)
- func (s *BaseCobol85Listener) EnterLinageFootingAt(ctx *LinageFootingAtContext)
- func (s *BaseCobol85Listener) EnterLinageLinesAtBottom(ctx *LinageLinesAtBottomContext)
- func (s *BaseCobol85Listener) EnterLinageLinesAtTop(ctx *LinageLinesAtTopContext)
- func (s *BaseCobol85Listener) EnterLinkageSection(ctx *LinkageSectionContext)
- func (s *BaseCobol85Listener) EnterLiteral(ctx *LiteralContext)
- func (s *BaseCobol85Listener) EnterLocalName(ctx *LocalNameContext)
- func (s *BaseCobol85Listener) EnterLocalStorageSection(ctx *LocalStorageSectionContext)
- func (s *BaseCobol85Listener) EnterMemorySizeClause(ctx *MemorySizeClauseContext)
- func (s *BaseCobol85Listener) EnterMergeCollatingAlphanumeric(ctx *MergeCollatingAlphanumericContext)
- func (s *BaseCobol85Listener) EnterMergeCollatingNational(ctx *MergeCollatingNationalContext)
- func (s *BaseCobol85Listener) EnterMergeCollatingSequencePhrase(ctx *MergeCollatingSequencePhraseContext)
- func (s *BaseCobol85Listener) EnterMergeGiving(ctx *MergeGivingContext)
- func (s *BaseCobol85Listener) EnterMergeGivingPhrase(ctx *MergeGivingPhraseContext)
- func (s *BaseCobol85Listener) EnterMergeOnKeyClause(ctx *MergeOnKeyClauseContext)
- func (s *BaseCobol85Listener) EnterMergeOutputProcedurePhrase(ctx *MergeOutputProcedurePhraseContext)
- func (s *BaseCobol85Listener) EnterMergeOutputThrough(ctx *MergeOutputThroughContext)
- func (s *BaseCobol85Listener) EnterMergeStatement(ctx *MergeStatementContext)
- func (s *BaseCobol85Listener) EnterMergeUsing(ctx *MergeUsingContext)
- func (s *BaseCobol85Listener) EnterMessageCountClause(ctx *MessageCountClauseContext)
- func (s *BaseCobol85Listener) EnterMessageDateClause(ctx *MessageDateClauseContext)
- func (s *BaseCobol85Listener) EnterMessageTimeClause(ctx *MessageTimeClauseContext)
- func (s *BaseCobol85Listener) EnterMnemonicName(ctx *MnemonicNameContext)
- func (s *BaseCobol85Listener) EnterModeStatement(ctx *ModeStatementContext)
- func (s *BaseCobol85Listener) EnterMoveCorrespondingToSendingArea(ctx *MoveCorrespondingToSendingAreaContext)
- func (s *BaseCobol85Listener) EnterMoveCorrespondingToStatement(ctx *MoveCorrespondingToStatementContext)
- func (s *BaseCobol85Listener) EnterMoveStatement(ctx *MoveStatementContext)
- func (s *BaseCobol85Listener) EnterMoveToSendingArea(ctx *MoveToSendingAreaContext)
- func (s *BaseCobol85Listener) EnterMoveToStatement(ctx *MoveToStatementContext)
- func (s *BaseCobol85Listener) EnterMultDiv(ctx *MultDivContext)
- func (s *BaseCobol85Listener) EnterMultDivs(ctx *MultDivsContext)
- func (s *BaseCobol85Listener) EnterMultipleFileClause(ctx *MultipleFileClauseContext)
- func (s *BaseCobol85Listener) EnterMultipleFilePosition(ctx *MultipleFilePositionContext)
- func (s *BaseCobol85Listener) EnterMultiplyGiving(ctx *MultiplyGivingContext)
- func (s *BaseCobol85Listener) EnterMultiplyGivingOperand(ctx *MultiplyGivingOperandContext)
- func (s *BaseCobol85Listener) EnterMultiplyGivingResult(ctx *MultiplyGivingResultContext)
- func (s *BaseCobol85Listener) EnterMultiplyRegular(ctx *MultiplyRegularContext)
- func (s *BaseCobol85Listener) EnterMultiplyRegularOperand(ctx *MultiplyRegularOperandContext)
- func (s *BaseCobol85Listener) EnterMultiplyStatement(ctx *MultiplyStatementContext)
- func (s *BaseCobol85Listener) EnterNotAtEndPhrase(ctx *NotAtEndPhraseContext)
- func (s *BaseCobol85Listener) EnterNotInvalidKeyPhrase(ctx *NotInvalidKeyPhraseContext)
- func (s *BaseCobol85Listener) EnterNotOnExceptionClause(ctx *NotOnExceptionClauseContext)
- func (s *BaseCobol85Listener) EnterNotOnOverflowPhrase(ctx *NotOnOverflowPhraseContext)
- func (s *BaseCobol85Listener) EnterNotOnSizeErrorPhrase(ctx *NotOnSizeErrorPhraseContext)
- func (s *BaseCobol85Listener) EnterNumericLiteral(ctx *NumericLiteralContext)
- func (s *BaseCobol85Listener) EnterObjectComputerClause(ctx *ObjectComputerClauseContext)
- func (s *BaseCobol85Listener) EnterObjectComputerParagraph(ctx *ObjectComputerParagraphContext)
- func (s *BaseCobol85Listener) EnterOdtClause(ctx *OdtClauseContext)
- func (s *BaseCobol85Listener) EnterOnExceptionClause(ctx *OnExceptionClauseContext)
- func (s *BaseCobol85Listener) EnterOnOverflowPhrase(ctx *OnOverflowPhraseContext)
- func (s *BaseCobol85Listener) EnterOnSizeErrorPhrase(ctx *OnSizeErrorPhraseContext)
- func (s *BaseCobol85Listener) EnterOpenExtendStatement(ctx *OpenExtendStatementContext)
- func (s *BaseCobol85Listener) EnterOpenIOStatement(ctx *OpenIOStatementContext)
- func (s *BaseCobol85Listener) EnterOpenInput(ctx *OpenInputContext)
- func (s *BaseCobol85Listener) EnterOpenInputStatement(ctx *OpenInputStatementContext)
- func (s *BaseCobol85Listener) EnterOpenOutput(ctx *OpenOutputContext)
- func (s *BaseCobol85Listener) EnterOpenOutputStatement(ctx *OpenOutputStatementContext)
- func (s *BaseCobol85Listener) EnterOpenStatement(ctx *OpenStatementContext)
- func (s *BaseCobol85Listener) EnterOrganizationClause(ctx *OrganizationClauseContext)
- func (s *BaseCobol85Listener) EnterPaddingCharacterClause(ctx *PaddingCharacterClauseContext)
- func (s *BaseCobol85Listener) EnterParagraph(ctx *ParagraphContext)
- func (s *BaseCobol85Listener) EnterParagraphName(ctx *ParagraphNameContext)
- func (s *BaseCobol85Listener) EnterParagraphs(ctx *ParagraphsContext)
- func (s *BaseCobol85Listener) EnterPasswordClause(ctx *PasswordClauseContext)
- func (s *BaseCobol85Listener) EnterPerformAfter(ctx *PerformAfterContext)
- func (s *BaseCobol85Listener) EnterPerformBy(ctx *PerformByContext)
- func (s *BaseCobol85Listener) EnterPerformFrom(ctx *PerformFromContext)
- func (s *BaseCobol85Listener) EnterPerformInlineStatement(ctx *PerformInlineStatementContext)
- func (s *BaseCobol85Listener) EnterPerformProcedureStatement(ctx *PerformProcedureStatementContext)
- func (s *BaseCobol85Listener) EnterPerformStatement(ctx *PerformStatementContext)
- func (s *BaseCobol85Listener) EnterPerformTestClause(ctx *PerformTestClauseContext)
- func (s *BaseCobol85Listener) EnterPerformTimes(ctx *PerformTimesContext)
- func (s *BaseCobol85Listener) EnterPerformType(ctx *PerformTypeContext)
- func (s *BaseCobol85Listener) EnterPerformUntil(ctx *PerformUntilContext)
- func (s *BaseCobol85Listener) EnterPerformVarying(ctx *PerformVaryingContext)
- func (s *BaseCobol85Listener) EnterPerformVaryingClause(ctx *PerformVaryingClauseContext)
- func (s *BaseCobol85Listener) EnterPerformVaryingPhrase(ctx *PerformVaryingPhraseContext)
- func (s *BaseCobol85Listener) EnterPictureCardinality(ctx *PictureCardinalityContext)
- func (s *BaseCobol85Listener) EnterPictureChars(ctx *PictureCharsContext)
- func (s *BaseCobol85Listener) EnterPictureString(ctx *PictureStringContext)
- func (s *BaseCobol85Listener) EnterPlusMinus(ctx *PlusMinusContext)
- func (s *BaseCobol85Listener) EnterPower(ctx *PowerContext)
- func (s *BaseCobol85Listener) EnterPowers(ctx *PowersContext)
- func (s *BaseCobol85Listener) EnterProcedureDeclarative(ctx *ProcedureDeclarativeContext)
- func (s *BaseCobol85Listener) EnterProcedureDeclaratives(ctx *ProcedureDeclarativesContext)
- func (s *BaseCobol85Listener) EnterProcedureDivision(ctx *ProcedureDivisionContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionBody(ctx *ProcedureDivisionBodyContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionByReference(ctx *ProcedureDivisionByReferenceContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionByReferencePhrase(ctx *ProcedureDivisionByReferencePhraseContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionByValue(ctx *ProcedureDivisionByValueContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionByValuePhrase(ctx *ProcedureDivisionByValuePhraseContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionGivingClause(ctx *ProcedureDivisionGivingClauseContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionUsingClause(ctx *ProcedureDivisionUsingClauseContext)
- func (s *BaseCobol85Listener) EnterProcedureDivisionUsingParameter(ctx *ProcedureDivisionUsingParameterContext)
- func (s *BaseCobol85Listener) EnterProcedureName(ctx *ProcedureNameContext)
- func (s *BaseCobol85Listener) EnterProcedureSection(ctx *ProcedureSectionContext)
- func (s *BaseCobol85Listener) EnterProcedureSectionHeader(ctx *ProcedureSectionHeaderContext)
- func (s *BaseCobol85Listener) EnterProgramIdParagraph(ctx *ProgramIdParagraphContext)
- func (s *BaseCobol85Listener) EnterProgramLibrarySection(ctx *ProgramLibrarySectionContext)
- func (s *BaseCobol85Listener) EnterProgramName(ctx *ProgramNameContext)
- func (s *BaseCobol85Listener) EnterProgramUnit(ctx *ProgramUnitContext)
- func (s *BaseCobol85Listener) EnterPurgeStatement(ctx *PurgeStatementContext)
- func (s *BaseCobol85Listener) EnterQualifiedDataName(ctx *QualifiedDataNameContext)
- func (s *BaseCobol85Listener) EnterQualifiedDataNameFormat1(ctx *QualifiedDataNameFormat1Context)
- func (s *BaseCobol85Listener) EnterQualifiedDataNameFormat2(ctx *QualifiedDataNameFormat2Context)
- func (s *BaseCobol85Listener) EnterQualifiedDataNameFormat3(ctx *QualifiedDataNameFormat3Context)
- func (s *BaseCobol85Listener) EnterQualifiedDataNameFormat4(ctx *QualifiedDataNameFormat4Context)
- func (s *BaseCobol85Listener) EnterQualifiedInData(ctx *QualifiedInDataContext)
- func (s *BaseCobol85Listener) EnterReadInto(ctx *ReadIntoContext)
- func (s *BaseCobol85Listener) EnterReadKey(ctx *ReadKeyContext)
- func (s *BaseCobol85Listener) EnterReadStatement(ctx *ReadStatementContext)
- func (s *BaseCobol85Listener) EnterReadWith(ctx *ReadWithContext)
- func (s *BaseCobol85Listener) EnterReceiveBefore(ctx *ReceiveBeforeContext)
- func (s *BaseCobol85Listener) EnterReceiveFrom(ctx *ReceiveFromContext)
- func (s *BaseCobol85Listener) EnterReceiveFromStatement(ctx *ReceiveFromStatementContext)
- func (s *BaseCobol85Listener) EnterReceiveIntoStatement(ctx *ReceiveIntoStatementContext)
- func (s *BaseCobol85Listener) EnterReceiveNoData(ctx *ReceiveNoDataContext)
- func (s *BaseCobol85Listener) EnterReceiveSize(ctx *ReceiveSizeContext)
- func (s *BaseCobol85Listener) EnterReceiveStatement(ctx *ReceiveStatementContext)
- func (s *BaseCobol85Listener) EnterReceiveStatus(ctx *ReceiveStatusContext)
- func (s *BaseCobol85Listener) EnterReceiveThread(ctx *ReceiveThreadContext)
- func (s *BaseCobol85Listener) EnterReceiveWith(ctx *ReceiveWithContext)
- func (s *BaseCobol85Listener) EnterReceiveWithData(ctx *ReceiveWithDataContext)
- func (s *BaseCobol85Listener) EnterRecordContainsClause(ctx *RecordContainsClauseContext)
- func (s *BaseCobol85Listener) EnterRecordContainsClauseFormat1(ctx *RecordContainsClauseFormat1Context)
- func (s *BaseCobol85Listener) EnterRecordContainsClauseFormat2(ctx *RecordContainsClauseFormat2Context)
- func (s *BaseCobol85Listener) EnterRecordContainsClauseFormat3(ctx *RecordContainsClauseFormat3Context)
- func (s *BaseCobol85Listener) EnterRecordContainsTo(ctx *RecordContainsToContext)
- func (s *BaseCobol85Listener) EnterRecordDelimiterClause(ctx *RecordDelimiterClauseContext)
- func (s *BaseCobol85Listener) EnterRecordKeyClause(ctx *RecordKeyClauseContext)
- func (s *BaseCobol85Listener) EnterRecordName(ctx *RecordNameContext)
- func (s *BaseCobol85Listener) EnterRecordingModeClause(ctx *RecordingModeClauseContext)
- func (s *BaseCobol85Listener) EnterReferenceModifier(ctx *ReferenceModifierContext)
- func (s *BaseCobol85Listener) EnterRelationArithmeticComparison(ctx *RelationArithmeticComparisonContext)
- func (s *BaseCobol85Listener) EnterRelationCombinedComparison(ctx *RelationCombinedComparisonContext)
- func (s *BaseCobol85Listener) EnterRelationCombinedCondition(ctx *RelationCombinedConditionContext)
- func (s *BaseCobol85Listener) EnterRelationCondition(ctx *RelationConditionContext)
- func (s *BaseCobol85Listener) EnterRelationSignCondition(ctx *RelationSignConditionContext)
- func (s *BaseCobol85Listener) EnterRelationalOperator(ctx *RelationalOperatorContext)
- func (s *BaseCobol85Listener) EnterRelativeKeyClause(ctx *RelativeKeyClauseContext)
- func (s *BaseCobol85Listener) EnterReleaseStatement(ctx *ReleaseStatementContext)
- func (s *BaseCobol85Listener) EnterRemarksParagraph(ctx *RemarksParagraphContext)
- func (s *BaseCobol85Listener) EnterReportClause(ctx *ReportClauseContext)
- func (s *BaseCobol85Listener) EnterReportDescription(ctx *ReportDescriptionContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionEntry(ctx *ReportDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionFirstDetailClause(ctx *ReportDescriptionFirstDetailClauseContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionFootingClause(ctx *ReportDescriptionFootingClauseContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionGlobalClause(ctx *ReportDescriptionGlobalClauseContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionHeadingClause(ctx *ReportDescriptionHeadingClauseContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionLastDetailClause(ctx *ReportDescriptionLastDetailClauseContext)
- func (s *BaseCobol85Listener) EnterReportDescriptionPageLimitClause(ctx *ReportDescriptionPageLimitClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupBlankWhenZeroClause(ctx *ReportGroupBlankWhenZeroClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupColumnNumberClause(ctx *ReportGroupColumnNumberClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupDescriptionEntry(ctx *ReportGroupDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterReportGroupDescriptionEntryFormat1(ctx *ReportGroupDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) EnterReportGroupDescriptionEntryFormat2(ctx *ReportGroupDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) EnterReportGroupDescriptionEntryFormat3(ctx *ReportGroupDescriptionEntryFormat3Context)
- func (s *BaseCobol85Listener) EnterReportGroupIndicateClause(ctx *ReportGroupIndicateClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupJustifiedClause(ctx *ReportGroupJustifiedClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupLineNumberClause(ctx *ReportGroupLineNumberClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupLineNumberNextPage(ctx *ReportGroupLineNumberNextPageContext)
- func (s *BaseCobol85Listener) EnterReportGroupLineNumberPlus(ctx *ReportGroupLineNumberPlusContext)
- func (s *BaseCobol85Listener) EnterReportGroupNextGroupClause(ctx *ReportGroupNextGroupClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupNextGroupNextPage(ctx *ReportGroupNextGroupNextPageContext)
- func (s *BaseCobol85Listener) EnterReportGroupNextGroupPlus(ctx *ReportGroupNextGroupPlusContext)
- func (s *BaseCobol85Listener) EnterReportGroupPictureClause(ctx *ReportGroupPictureClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupResetClause(ctx *ReportGroupResetClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupSignClause(ctx *ReportGroupSignClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupSourceClause(ctx *ReportGroupSourceClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupSumClause(ctx *ReportGroupSumClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypeClause(ctx *ReportGroupTypeClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypeControlFooting(ctx *ReportGroupTypeControlFootingContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypeControlHeading(ctx *ReportGroupTypeControlHeadingContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypeDetail(ctx *ReportGroupTypeDetailContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypePageFooting(ctx *ReportGroupTypePageFootingContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypePageHeading(ctx *ReportGroupTypePageHeadingContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypeReportFooting(ctx *ReportGroupTypeReportFootingContext)
- func (s *BaseCobol85Listener) EnterReportGroupTypeReportHeading(ctx *ReportGroupTypeReportHeadingContext)
- func (s *BaseCobol85Listener) EnterReportGroupUsageClause(ctx *ReportGroupUsageClauseContext)
- func (s *BaseCobol85Listener) EnterReportGroupValueClause(ctx *ReportGroupValueClauseContext)
- func (s *BaseCobol85Listener) EnterReportName(ctx *ReportNameContext)
- func (s *BaseCobol85Listener) EnterReportSection(ctx *ReportSectionContext)
- func (s *BaseCobol85Listener) EnterRerunClause(ctx *RerunClauseContext)
- func (s *BaseCobol85Listener) EnterRerunEveryClock(ctx *RerunEveryClockContext)
- func (s *BaseCobol85Listener) EnterRerunEveryOf(ctx *RerunEveryOfContext)
- func (s *BaseCobol85Listener) EnterRerunEveryRecords(ctx *RerunEveryRecordsContext)
- func (s *BaseCobol85Listener) EnterReserveClause(ctx *ReserveClauseContext)
- func (s *BaseCobol85Listener) EnterReserveNetworkClause(ctx *ReserveNetworkClauseContext)
- func (s *BaseCobol85Listener) EnterReturnInto(ctx *ReturnIntoContext)
- func (s *BaseCobol85Listener) EnterReturnStatement(ctx *ReturnStatementContext)
- func (s *BaseCobol85Listener) EnterRewriteFrom(ctx *RewriteFromContext)
- func (s *BaseCobol85Listener) EnterRewriteStatement(ctx *RewriteStatementContext)
- func (s *BaseCobol85Listener) EnterRoutineName(ctx *RoutineNameContext)
- func (s *BaseCobol85Listener) EnterSameClause(ctx *SameClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionAutoClause(ctx *ScreenDescriptionAutoClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionBackgroundColorClause(ctx *ScreenDescriptionBackgroundColorClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionBellClause(ctx *ScreenDescriptionBellClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionBlankClause(ctx *ScreenDescriptionBlankClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionBlankWhenZeroClause(ctx *ScreenDescriptionBlankWhenZeroClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionBlinkClause(ctx *ScreenDescriptionBlinkClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionColumnClause(ctx *ScreenDescriptionColumnClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionControlClause(ctx *ScreenDescriptionControlClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionEntry(ctx *ScreenDescriptionEntryContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionEraseClause(ctx *ScreenDescriptionEraseClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionForegroundColorClause(ctx *ScreenDescriptionForegroundColorClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionFromClause(ctx *ScreenDescriptionFromClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionFullClause(ctx *ScreenDescriptionFullClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionGridClause(ctx *ScreenDescriptionGridClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionJustifiedClause(ctx *ScreenDescriptionJustifiedClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionLightClause(ctx *ScreenDescriptionLightClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionLineClause(ctx *ScreenDescriptionLineClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionPictureClause(ctx *ScreenDescriptionPictureClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionPromptClause(ctx *ScreenDescriptionPromptClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionPromptOccursClause(ctx *ScreenDescriptionPromptOccursClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionRequiredClause(ctx *ScreenDescriptionRequiredClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionReverseVideoClause(ctx *ScreenDescriptionReverseVideoClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionSecureClause(ctx *ScreenDescriptionSecureClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionSignClause(ctx *ScreenDescriptionSignClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionSizeClause(ctx *ScreenDescriptionSizeClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionToClause(ctx *ScreenDescriptionToClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionUnderlineClause(ctx *ScreenDescriptionUnderlineClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionUsageClause(ctx *ScreenDescriptionUsageClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionUsingClause(ctx *ScreenDescriptionUsingClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionValueClause(ctx *ScreenDescriptionValueClauseContext)
- func (s *BaseCobol85Listener) EnterScreenDescriptionZeroFillClause(ctx *ScreenDescriptionZeroFillClauseContext)
- func (s *BaseCobol85Listener) EnterScreenName(ctx *ScreenNameContext)
- func (s *BaseCobol85Listener) EnterScreenSection(ctx *ScreenSectionContext)
- func (s *BaseCobol85Listener) EnterSearchStatement(ctx *SearchStatementContext)
- func (s *BaseCobol85Listener) EnterSearchVarying(ctx *SearchVaryingContext)
- func (s *BaseCobol85Listener) EnterSearchWhen(ctx *SearchWhenContext)
- func (s *BaseCobol85Listener) EnterSectionName(ctx *SectionNameContext)
- func (s *BaseCobol85Listener) EnterSecurityParagraph(ctx *SecurityParagraphContext)
- func (s *BaseCobol85Listener) EnterSegmentLimitClause(ctx *SegmentLimitClauseContext)
- func (s *BaseCobol85Listener) EnterSelectClause(ctx *SelectClauseContext)
- func (s *BaseCobol85Listener) EnterSendAdvancingLines(ctx *SendAdvancingLinesContext)
- func (s *BaseCobol85Listener) EnterSendAdvancingMnemonic(ctx *SendAdvancingMnemonicContext)
- func (s *BaseCobol85Listener) EnterSendAdvancingPage(ctx *SendAdvancingPageContext)
- func (s *BaseCobol85Listener) EnterSendAdvancingPhrase(ctx *SendAdvancingPhraseContext)
- func (s *BaseCobol85Listener) EnterSendFromPhrase(ctx *SendFromPhraseContext)
- func (s *BaseCobol85Listener) EnterSendReplacingPhrase(ctx *SendReplacingPhraseContext)
- func (s *BaseCobol85Listener) EnterSendStatement(ctx *SendStatementContext)
- func (s *BaseCobol85Listener) EnterSendStatementAsync(ctx *SendStatementAsyncContext)
- func (s *BaseCobol85Listener) EnterSendStatementSync(ctx *SendStatementSyncContext)
- func (s *BaseCobol85Listener) EnterSendWithPhrase(ctx *SendWithPhraseContext)
- func (s *BaseCobol85Listener) EnterSentence(ctx *SentenceContext)
- func (s *BaseCobol85Listener) EnterSetByValue(ctx *SetByValueContext)
- func (s *BaseCobol85Listener) EnterSetStatement(ctx *SetStatementContext)
- func (s *BaseCobol85Listener) EnterSetTo(ctx *SetToContext)
- func (s *BaseCobol85Listener) EnterSetToStatement(ctx *SetToStatementContext)
- func (s *BaseCobol85Listener) EnterSetToValue(ctx *SetToValueContext)
- func (s *BaseCobol85Listener) EnterSetUpDownByStatement(ctx *SetUpDownByStatementContext)
- func (s *BaseCobol85Listener) EnterSimpleCondition(ctx *SimpleConditionContext)
- func (s *BaseCobol85Listener) EnterSortCollatingAlphanumeric(ctx *SortCollatingAlphanumericContext)
- func (s *BaseCobol85Listener) EnterSortCollatingNational(ctx *SortCollatingNationalContext)
- func (s *BaseCobol85Listener) EnterSortCollatingSequencePhrase(ctx *SortCollatingSequencePhraseContext)
- func (s *BaseCobol85Listener) EnterSortDuplicatesPhrase(ctx *SortDuplicatesPhraseContext)
- func (s *BaseCobol85Listener) EnterSortGiving(ctx *SortGivingContext)
- func (s *BaseCobol85Listener) EnterSortGivingPhrase(ctx *SortGivingPhraseContext)
- func (s *BaseCobol85Listener) EnterSortInputProcedurePhrase(ctx *SortInputProcedurePhraseContext)
- func (s *BaseCobol85Listener) EnterSortInputThrough(ctx *SortInputThroughContext)
- func (s *BaseCobol85Listener) EnterSortOnKeyClause(ctx *SortOnKeyClauseContext)
- func (s *BaseCobol85Listener) EnterSortOutputProcedurePhrase(ctx *SortOutputProcedurePhraseContext)
- func (s *BaseCobol85Listener) EnterSortOutputThrough(ctx *SortOutputThroughContext)
- func (s *BaseCobol85Listener) EnterSortStatement(ctx *SortStatementContext)
- func (s *BaseCobol85Listener) EnterSortUsing(ctx *SortUsingContext)
- func (s *BaseCobol85Listener) EnterSourceComputerParagraph(ctx *SourceComputerParagraphContext)
- func (s *BaseCobol85Listener) EnterSpecialNameClause(ctx *SpecialNameClauseContext)
- func (s *BaseCobol85Listener) EnterSpecialNamesParagraph(ctx *SpecialNamesParagraphContext)
- func (s *BaseCobol85Listener) EnterSpecialRegister(ctx *SpecialRegisterContext)
- func (s *BaseCobol85Listener) EnterStartKey(ctx *StartKeyContext)
- func (s *BaseCobol85Listener) EnterStartRule(ctx *StartRuleContext)
- func (s *BaseCobol85Listener) EnterStartStatement(ctx *StartStatementContext)
- func (s *BaseCobol85Listener) EnterStatement(ctx *StatementContext)
- func (s *BaseCobol85Listener) EnterStatusKeyClause(ctx *StatusKeyClauseContext)
- func (s *BaseCobol85Listener) EnterStopStatement(ctx *StopStatementContext)
- func (s *BaseCobol85Listener) EnterStringDelimitedByPhrase(ctx *StringDelimitedByPhraseContext)
- func (s *BaseCobol85Listener) EnterStringForPhrase(ctx *StringForPhraseContext)
- func (s *BaseCobol85Listener) EnterStringIntoPhrase(ctx *StringIntoPhraseContext)
- func (s *BaseCobol85Listener) EnterStringSending(ctx *StringSendingContext)
- func (s *BaseCobol85Listener) EnterStringSendingPhrase(ctx *StringSendingPhraseContext)
- func (s *BaseCobol85Listener) EnterStringStatement(ctx *StringStatementContext)
- func (s *BaseCobol85Listener) EnterStringWithPointerPhrase(ctx *StringWithPointerPhraseContext)
- func (s *BaseCobol85Listener) EnterSubscript(ctx *SubscriptContext)
- func (s *BaseCobol85Listener) EnterSubtractCorrespondingStatement(ctx *SubtractCorrespondingStatementContext)
- func (s *BaseCobol85Listener) EnterSubtractFromGivingStatement(ctx *SubtractFromGivingStatementContext)
- func (s *BaseCobol85Listener) EnterSubtractFromStatement(ctx *SubtractFromStatementContext)
- func (s *BaseCobol85Listener) EnterSubtractGiving(ctx *SubtractGivingContext)
- func (s *BaseCobol85Listener) EnterSubtractMinuend(ctx *SubtractMinuendContext)
- func (s *BaseCobol85Listener) EnterSubtractMinuendCorresponding(ctx *SubtractMinuendCorrespondingContext)
- func (s *BaseCobol85Listener) EnterSubtractMinuendGiving(ctx *SubtractMinuendGivingContext)
- func (s *BaseCobol85Listener) EnterSubtractStatement(ctx *SubtractStatementContext)
- func (s *BaseCobol85Listener) EnterSubtractSubtrahend(ctx *SubtractSubtrahendContext)
- func (s *BaseCobol85Listener) EnterSymbolicCharacter(ctx *SymbolicCharacterContext)
- func (s *BaseCobol85Listener) EnterSymbolicCharacters(ctx *SymbolicCharactersContext)
- func (s *BaseCobol85Listener) EnterSymbolicCharactersClause(ctx *SymbolicCharactersClauseContext)
- func (s *BaseCobol85Listener) EnterSymbolicDestinationClause(ctx *SymbolicDestinationClauseContext)
- func (s *BaseCobol85Listener) EnterSymbolicQueueClause(ctx *SymbolicQueueClauseContext)
- func (s *BaseCobol85Listener) EnterSymbolicSourceClause(ctx *SymbolicSourceClauseContext)
- func (s *BaseCobol85Listener) EnterSymbolicSubQueueClause(ctx *SymbolicSubQueueClauseContext)
- func (s *BaseCobol85Listener) EnterSymbolicTerminalClause(ctx *SymbolicTerminalClauseContext)
- func (s *BaseCobol85Listener) EnterSystemName(ctx *SystemNameContext)
- func (s *BaseCobol85Listener) EnterTableCall(ctx *TableCallContext)
- func (s *BaseCobol85Listener) EnterTerminateStatement(ctx *TerminateStatementContext)
- func (s *BaseCobol85Listener) EnterTextLengthClause(ctx *TextLengthClauseContext)
- func (s *BaseCobol85Listener) EnterTextName(ctx *TextNameContext)
- func (s *BaseCobol85Listener) EnterUnstringCountIn(ctx *UnstringCountInContext)
- func (s *BaseCobol85Listener) EnterUnstringDelimitedByPhrase(ctx *UnstringDelimitedByPhraseContext)
- func (s *BaseCobol85Listener) EnterUnstringDelimiterIn(ctx *UnstringDelimiterInContext)
- func (s *BaseCobol85Listener) EnterUnstringInto(ctx *UnstringIntoContext)
- func (s *BaseCobol85Listener) EnterUnstringIntoPhrase(ctx *UnstringIntoPhraseContext)
- func (s *BaseCobol85Listener) EnterUnstringOrAllPhrase(ctx *UnstringOrAllPhraseContext)
- func (s *BaseCobol85Listener) EnterUnstringSendingPhrase(ctx *UnstringSendingPhraseContext)
- func (s *BaseCobol85Listener) EnterUnstringStatement(ctx *UnstringStatementContext)
- func (s *BaseCobol85Listener) EnterUnstringTallyingPhrase(ctx *UnstringTallyingPhraseContext)
- func (s *BaseCobol85Listener) EnterUnstringWithPointerPhrase(ctx *UnstringWithPointerPhraseContext)
- func (s *BaseCobol85Listener) EnterUseAfterClause(ctx *UseAfterClauseContext)
- func (s *BaseCobol85Listener) EnterUseAfterOn(ctx *UseAfterOnContext)
- func (s *BaseCobol85Listener) EnterUseDebugClause(ctx *UseDebugClauseContext)
- func (s *BaseCobol85Listener) EnterUseDebugOn(ctx *UseDebugOnContext)
- func (s *BaseCobol85Listener) EnterUseStatement(ctx *UseStatementContext)
- func (s *BaseCobol85Listener) EnterValueOfClause(ctx *ValueOfClauseContext)
- func (s *BaseCobol85Listener) EnterValuePair(ctx *ValuePairContext)
- func (s *BaseCobol85Listener) EnterWorkingStorageSection(ctx *WorkingStorageSectionContext)
- func (s *BaseCobol85Listener) EnterWriteAdvancingLines(ctx *WriteAdvancingLinesContext)
- func (s *BaseCobol85Listener) EnterWriteAdvancingMnemonic(ctx *WriteAdvancingMnemonicContext)
- func (s *BaseCobol85Listener) EnterWriteAdvancingPage(ctx *WriteAdvancingPageContext)
- func (s *BaseCobol85Listener) EnterWriteAdvancingPhrase(ctx *WriteAdvancingPhraseContext)
- func (s *BaseCobol85Listener) EnterWriteAtEndOfPagePhrase(ctx *WriteAtEndOfPagePhraseContext)
- func (s *BaseCobol85Listener) EnterWriteFromPhrase(ctx *WriteFromPhraseContext)
- func (s *BaseCobol85Listener) EnterWriteNotAtEndOfPagePhrase(ctx *WriteNotAtEndOfPagePhraseContext)
- func (s *BaseCobol85Listener) EnterWriteStatement(ctx *WriteStatementContext)
- func (s *BaseCobol85Listener) ExitAbbreviation(ctx *AbbreviationContext)
- func (s *BaseCobol85Listener) ExitAcceptFromDateStatement(ctx *AcceptFromDateStatementContext)
- func (s *BaseCobol85Listener) ExitAcceptFromEscapeKeyStatement(ctx *AcceptFromEscapeKeyStatementContext)
- func (s *BaseCobol85Listener) ExitAcceptFromMnemonicStatement(ctx *AcceptFromMnemonicStatementContext)
- func (s *BaseCobol85Listener) ExitAcceptMessageCountStatement(ctx *AcceptMessageCountStatementContext)
- func (s *BaseCobol85Listener) ExitAcceptStatement(ctx *AcceptStatementContext)
- func (s *BaseCobol85Listener) ExitAccessModeClause(ctx *AccessModeClauseContext)
- func (s *BaseCobol85Listener) ExitAddCorrespondingStatement(ctx *AddCorrespondingStatementContext)
- func (s *BaseCobol85Listener) ExitAddFrom(ctx *AddFromContext)
- func (s *BaseCobol85Listener) ExitAddGiving(ctx *AddGivingContext)
- func (s *BaseCobol85Listener) ExitAddStatement(ctx *AddStatementContext)
- func (s *BaseCobol85Listener) ExitAddTo(ctx *AddToContext)
- func (s *BaseCobol85Listener) ExitAddToGiving(ctx *AddToGivingContext)
- func (s *BaseCobol85Listener) ExitAddToGivingStatement(ctx *AddToGivingStatementContext)
- func (s *BaseCobol85Listener) ExitAddToStatement(ctx *AddToStatementContext)
- func (s *BaseCobol85Listener) ExitAlphabetAlso(ctx *AlphabetAlsoContext)
- func (s *BaseCobol85Listener) ExitAlphabetClause(ctx *AlphabetClauseContext)
- func (s *BaseCobol85Listener) ExitAlphabetClauseFormat1(ctx *AlphabetClauseFormat1Context)
- func (s *BaseCobol85Listener) ExitAlphabetClauseFormat2(ctx *AlphabetClauseFormat2Context)
- func (s *BaseCobol85Listener) ExitAlphabetLiterals(ctx *AlphabetLiteralsContext)
- func (s *BaseCobol85Listener) ExitAlphabetName(ctx *AlphabetNameContext)
- func (s *BaseCobol85Listener) ExitAlphabetThrough(ctx *AlphabetThroughContext)
- func (s *BaseCobol85Listener) ExitAlterProceedTo(ctx *AlterProceedToContext)
- func (s *BaseCobol85Listener) ExitAlterStatement(ctx *AlterStatementContext)
- func (s *BaseCobol85Listener) ExitAlteredGoTo(ctx *AlteredGoToContext)
- func (s *BaseCobol85Listener) ExitAlternateRecordKeyClause(ctx *AlternateRecordKeyClauseContext)
- func (s *BaseCobol85Listener) ExitAndOrCondition(ctx *AndOrConditionContext)
- func (s *BaseCobol85Listener) ExitArgument(ctx *ArgumentContext)
- func (s *BaseCobol85Listener) ExitArithmeticExpression(ctx *ArithmeticExpressionContext)
- func (s *BaseCobol85Listener) ExitAssignClause(ctx *AssignClauseContext)
- func (s *BaseCobol85Listener) ExitAssignmentName(ctx *AssignmentNameContext)
- func (s *BaseCobol85Listener) ExitAtEndPhrase(ctx *AtEndPhraseContext)
- func (s *BaseCobol85Listener) ExitAuthorParagraph(ctx *AuthorParagraphContext)
- func (s *BaseCobol85Listener) ExitBasis(ctx *BasisContext)
- func (s *BaseCobol85Listener) ExitBasisName(ctx *BasisNameContext)
- func (s *BaseCobol85Listener) ExitBlockContainsClause(ctx *BlockContainsClauseContext)
- func (s *BaseCobol85Listener) ExitBlockContainsTo(ctx *BlockContainsToContext)
- func (s *BaseCobol85Listener) ExitBooleanLiteral(ctx *BooleanLiteralContext)
- func (s *BaseCobol85Listener) ExitCallByContent(ctx *CallByContentContext)
- func (s *BaseCobol85Listener) ExitCallByContentPhrase(ctx *CallByContentPhraseContext)
- func (s *BaseCobol85Listener) ExitCallByReference(ctx *CallByReferenceContext)
- func (s *BaseCobol85Listener) ExitCallByReferencePhrase(ctx *CallByReferencePhraseContext)
- func (s *BaseCobol85Listener) ExitCallByValue(ctx *CallByValueContext)
- func (s *BaseCobol85Listener) ExitCallByValuePhrase(ctx *CallByValuePhraseContext)
- func (s *BaseCobol85Listener) ExitCallGivingPhrase(ctx *CallGivingPhraseContext)
- func (s *BaseCobol85Listener) ExitCallStatement(ctx *CallStatementContext)
- func (s *BaseCobol85Listener) ExitCallUsingParameter(ctx *CallUsingParameterContext)
- func (s *BaseCobol85Listener) ExitCallUsingPhrase(ctx *CallUsingPhraseContext)
- func (s *BaseCobol85Listener) ExitCancelCall(ctx *CancelCallContext)
- func (s *BaseCobol85Listener) ExitCancelStatement(ctx *CancelStatementContext)
- func (s *BaseCobol85Listener) ExitCdName(ctx *CdNameContext)
- func (s *BaseCobol85Listener) ExitChannelClause(ctx *ChannelClauseContext)
- func (s *BaseCobol85Listener) ExitCharacterPosition(ctx *CharacterPositionContext)
- func (s *BaseCobol85Listener) ExitCharacterSetClause(ctx *CharacterSetClauseContext)
- func (s *BaseCobol85Listener) ExitCicsDfhRespLiteral(ctx *CicsDfhRespLiteralContext)
- func (s *BaseCobol85Listener) ExitCicsDfhValueLiteral(ctx *CicsDfhValueLiteralContext)
- func (s *BaseCobol85Listener) ExitClassClause(ctx *ClassClauseContext)
- func (s *BaseCobol85Listener) ExitClassClauseFrom(ctx *ClassClauseFromContext)
- func (s *BaseCobol85Listener) ExitClassClauseThrough(ctx *ClassClauseThroughContext)
- func (s *BaseCobol85Listener) ExitClassClauseTo(ctx *ClassClauseToContext)
- func (s *BaseCobol85Listener) ExitClassCondition(ctx *ClassConditionContext)
- func (s *BaseCobol85Listener) ExitClassName(ctx *ClassNameContext)
- func (s *BaseCobol85Listener) ExitCloseFile(ctx *CloseFileContext)
- func (s *BaseCobol85Listener) ExitClosePortFileIOStatement(ctx *ClosePortFileIOStatementContext)
- func (s *BaseCobol85Listener) ExitClosePortFileIOUsing(ctx *ClosePortFileIOUsingContext)
- func (s *BaseCobol85Listener) ExitClosePortFileIOUsingAssociatedData(ctx *ClosePortFileIOUsingAssociatedDataContext)
- func (s *BaseCobol85Listener) ExitClosePortFileIOUsingAssociatedDataLength(ctx *ClosePortFileIOUsingAssociatedDataLengthContext)
- func (s *BaseCobol85Listener) ExitClosePortFileIOUsingCloseDisposition(ctx *ClosePortFileIOUsingCloseDispositionContext)
- func (s *BaseCobol85Listener) ExitCloseReelUnitStatement(ctx *CloseReelUnitStatementContext)
- func (s *BaseCobol85Listener) ExitCloseRelativeStatement(ctx *CloseRelativeStatementContext)
- func (s *BaseCobol85Listener) ExitCloseStatement(ctx *CloseStatementContext)
- func (s *BaseCobol85Listener) ExitCobolWord(ctx *CobolWordContext)
- func (s *BaseCobol85Listener) ExitCodeSetClause(ctx *CodeSetClauseContext)
- func (s *BaseCobol85Listener) ExitCollatingSequenceClause(ctx *CollatingSequenceClauseContext)
- func (s *BaseCobol85Listener) ExitCollatingSequenceClauseAlphanumeric(ctx *CollatingSequenceClauseAlphanumericContext)
- func (s *BaseCobol85Listener) ExitCollatingSequenceClauseNational(ctx *CollatingSequenceClauseNationalContext)
- func (s *BaseCobol85Listener) ExitCombinableCondition(ctx *CombinableConditionContext)
- func (s *BaseCobol85Listener) ExitCommentEntry(ctx *CommentEntryContext)
- func (s *BaseCobol85Listener) ExitCommitmentControlClause(ctx *CommitmentControlClauseContext)
- func (s *BaseCobol85Listener) ExitCommunicationDescriptionEntry(ctx *CommunicationDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitCommunicationDescriptionEntryFormat1(ctx *CommunicationDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) ExitCommunicationDescriptionEntryFormat2(ctx *CommunicationDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) ExitCommunicationDescriptionEntryFormat3(ctx *CommunicationDescriptionEntryFormat3Context)
- func (s *BaseCobol85Listener) ExitCommunicationSection(ctx *CommunicationSectionContext)
- func (s *BaseCobol85Listener) ExitCompilationUnit(ctx *CompilationUnitContext)
- func (s *BaseCobol85Listener) ExitComputeStatement(ctx *ComputeStatementContext)
- func (s *BaseCobol85Listener) ExitComputeStore(ctx *ComputeStoreContext)
- func (s *BaseCobol85Listener) ExitComputerName(ctx *ComputerNameContext)
- func (s *BaseCobol85Listener) ExitCondition(ctx *ConditionContext)
- func (s *BaseCobol85Listener) ExitConditionName(ctx *ConditionNameContext)
- func (s *BaseCobol85Listener) ExitConditionNameReference(ctx *ConditionNameReferenceContext)
- func (s *BaseCobol85Listener) ExitConditionNameSubscriptReference(ctx *ConditionNameSubscriptReferenceContext)
- func (s *BaseCobol85Listener) ExitConfigurationSection(ctx *ConfigurationSectionContext)
- func (s *BaseCobol85Listener) ExitConfigurationSectionParagraph(ctx *ConfigurationSectionParagraphContext)
- func (s *BaseCobol85Listener) ExitContinueStatement(ctx *ContinueStatementContext)
- func (s *BaseCobol85Listener) ExitCurrencySignClause(ctx *CurrencySignClauseContext)
- func (s *BaseCobol85Listener) ExitDataAlignedClause(ctx *DataAlignedClauseContext)
- func (s *BaseCobol85Listener) ExitDataBaseSection(ctx *DataBaseSectionContext)
- func (s *BaseCobol85Listener) ExitDataBaseSectionEntry(ctx *DataBaseSectionEntryContext)
- func (s *BaseCobol85Listener) ExitDataBlankWhenZeroClause(ctx *DataBlankWhenZeroClauseContext)
- func (s *BaseCobol85Listener) ExitDataCommonOwnLocalClause(ctx *DataCommonOwnLocalClauseContext)
- func (s *BaseCobol85Listener) ExitDataDescName(ctx *DataDescNameContext)
- func (s *BaseCobol85Listener) ExitDataDescriptionEntry(ctx *DataDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitDataDescriptionEntryExecSql(ctx *DataDescriptionEntryExecSqlContext)
- func (s *BaseCobol85Listener) ExitDataDescriptionEntryFormat1(ctx *DataDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) ExitDataDescriptionEntryFormat2(ctx *DataDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) ExitDataDescriptionEntryFormat3(ctx *DataDescriptionEntryFormat3Context)
- func (s *BaseCobol85Listener) ExitDataDivision(ctx *DataDivisionContext)
- func (s *BaseCobol85Listener) ExitDataDivisionSection(ctx *DataDivisionSectionContext)
- func (s *BaseCobol85Listener) ExitDataExternalClause(ctx *DataExternalClauseContext)
- func (s *BaseCobol85Listener) ExitDataGlobalClause(ctx *DataGlobalClauseContext)
- func (s *BaseCobol85Listener) ExitDataIntegerStringClause(ctx *DataIntegerStringClauseContext)
- func (s *BaseCobol85Listener) ExitDataJustifiedClause(ctx *DataJustifiedClauseContext)
- func (s *BaseCobol85Listener) ExitDataName(ctx *DataNameContext)
- func (s *BaseCobol85Listener) ExitDataOccursClause(ctx *DataOccursClauseContext)
- func (s *BaseCobol85Listener) ExitDataOccursSort(ctx *DataOccursSortContext)
- func (s *BaseCobol85Listener) ExitDataOccursTo(ctx *DataOccursToContext)
- func (s *BaseCobol85Listener) ExitDataPictureClause(ctx *DataPictureClauseContext)
- func (s *BaseCobol85Listener) ExitDataReceivedByClause(ctx *DataReceivedByClauseContext)
- func (s *BaseCobol85Listener) ExitDataRecordAreaClause(ctx *DataRecordAreaClauseContext)
- func (s *BaseCobol85Listener) ExitDataRecordsClause(ctx *DataRecordsClauseContext)
- func (s *BaseCobol85Listener) ExitDataRedefinesClause(ctx *DataRedefinesClauseContext)
- func (s *BaseCobol85Listener) ExitDataRenamesClause(ctx *DataRenamesClauseContext)
- func (s *BaseCobol85Listener) ExitDataSignClause(ctx *DataSignClauseContext)
- func (s *BaseCobol85Listener) ExitDataSynchronizedClause(ctx *DataSynchronizedClauseContext)
- func (s *BaseCobol85Listener) ExitDataThreadLocalClause(ctx *DataThreadLocalClauseContext)
- func (s *BaseCobol85Listener) ExitDataTypeClause(ctx *DataTypeClauseContext)
- func (s *BaseCobol85Listener) ExitDataTypeDefClause(ctx *DataTypeDefClauseContext)
- func (s *BaseCobol85Listener) ExitDataUsageClause(ctx *DataUsageClauseContext)
- func (s *BaseCobol85Listener) ExitDataUsingClause(ctx *DataUsingClauseContext)
- func (s *BaseCobol85Listener) ExitDataValueClause(ctx *DataValueClauseContext)
- func (s *BaseCobol85Listener) ExitDataValueInterval(ctx *DataValueIntervalContext)
- func (s *BaseCobol85Listener) ExitDataValueIntervalFrom(ctx *DataValueIntervalFromContext)
- func (s *BaseCobol85Listener) ExitDataValueIntervalTo(ctx *DataValueIntervalToContext)
- func (s *BaseCobol85Listener) ExitDataWithLowerBoundsClause(ctx *DataWithLowerBoundsClauseContext)
- func (s *BaseCobol85Listener) ExitDateCompiledParagraph(ctx *DateCompiledParagraphContext)
- func (s *BaseCobol85Listener) ExitDateWrittenParagraph(ctx *DateWrittenParagraphContext)
- func (s *BaseCobol85Listener) ExitDecimalPointClause(ctx *DecimalPointClauseContext)
- func (s *BaseCobol85Listener) ExitDefaultComputationalSignClause(ctx *DefaultComputationalSignClauseContext)
- func (s *BaseCobol85Listener) ExitDefaultDisplaySignClause(ctx *DefaultDisplaySignClauseContext)
- func (s *BaseCobol85Listener) ExitDeleteStatement(ctx *DeleteStatementContext)
- func (s *BaseCobol85Listener) ExitDestinationCountClause(ctx *DestinationCountClauseContext)
- func (s *BaseCobol85Listener) ExitDestinationTableClause(ctx *DestinationTableClauseContext)
- func (s *BaseCobol85Listener) ExitDisableStatement(ctx *DisableStatementContext)
- func (s *BaseCobol85Listener) ExitDiskSizeClause(ctx *DiskSizeClauseContext)
- func (s *BaseCobol85Listener) ExitDisplayAt(ctx *DisplayAtContext)
- func (s *BaseCobol85Listener) ExitDisplayOperand(ctx *DisplayOperandContext)
- func (s *BaseCobol85Listener) ExitDisplayStatement(ctx *DisplayStatementContext)
- func (s *BaseCobol85Listener) ExitDisplayUpon(ctx *DisplayUponContext)
- func (s *BaseCobol85Listener) ExitDisplayWith(ctx *DisplayWithContext)
- func (s *BaseCobol85Listener) ExitDivideByGivingStatement(ctx *DivideByGivingStatementContext)
- func (s *BaseCobol85Listener) ExitDivideGiving(ctx *DivideGivingContext)
- func (s *BaseCobol85Listener) ExitDivideGivingPhrase(ctx *DivideGivingPhraseContext)
- func (s *BaseCobol85Listener) ExitDivideInto(ctx *DivideIntoContext)
- func (s *BaseCobol85Listener) ExitDivideIntoGivingStatement(ctx *DivideIntoGivingStatementContext)
- func (s *BaseCobol85Listener) ExitDivideIntoStatement(ctx *DivideIntoStatementContext)
- func (s *BaseCobol85Listener) ExitDivideRemainder(ctx *DivideRemainderContext)
- func (s *BaseCobol85Listener) ExitDivideStatement(ctx *DivideStatementContext)
- func (s *BaseCobol85Listener) ExitEnableStatement(ctx *EnableStatementContext)
- func (s *BaseCobol85Listener) ExitEndKeyClause(ctx *EndKeyClauseContext)
- func (s *BaseCobol85Listener) ExitEndProgramStatement(ctx *EndProgramStatementContext)
- func (s *BaseCobol85Listener) ExitEntryStatement(ctx *EntryStatementContext)
- func (s *BaseCobol85Listener) ExitEnvironmentDivision(ctx *EnvironmentDivisionContext)
- func (s *BaseCobol85Listener) ExitEnvironmentDivisionBody(ctx *EnvironmentDivisionBodyContext)
- func (s *BaseCobol85Listener) ExitEnvironmentName(ctx *EnvironmentNameContext)
- func (s *BaseCobol85Listener) ExitEnvironmentSwitchNameClause(ctx *EnvironmentSwitchNameClauseContext)
- func (s *BaseCobol85Listener) ExitEnvironmentSwitchNameSpecialNamesStatusPhrase(ctx *EnvironmentSwitchNameSpecialNamesStatusPhraseContext)
- func (s *BaseCobol85Listener) ExitErrorKeyClause(ctx *ErrorKeyClauseContext)
- func (s *BaseCobol85Listener) ExitEvaluateAlsoCondition(ctx *EvaluateAlsoConditionContext)
- func (s *BaseCobol85Listener) ExitEvaluateAlsoSelect(ctx *EvaluateAlsoSelectContext)
- func (s *BaseCobol85Listener) ExitEvaluateCondition(ctx *EvaluateConditionContext)
- func (s *BaseCobol85Listener) ExitEvaluateSelect(ctx *EvaluateSelectContext)
- func (s *BaseCobol85Listener) ExitEvaluateStatement(ctx *EvaluateStatementContext)
- func (s *BaseCobol85Listener) ExitEvaluateThrough(ctx *EvaluateThroughContext)
- func (s *BaseCobol85Listener) ExitEvaluateValue(ctx *EvaluateValueContext)
- func (s *BaseCobol85Listener) ExitEvaluateWhen(ctx *EvaluateWhenContext)
- func (s *BaseCobol85Listener) ExitEvaluateWhenOther(ctx *EvaluateWhenOtherContext)
- func (s *BaseCobol85Listener) ExitEvaluateWhenPhrase(ctx *EvaluateWhenPhraseContext)
- func (s *BaseCobol85Listener) ExitEveryRule(ctx antlr.ParserRuleContext)
- func (s *BaseCobol85Listener) ExitExecCicsStatement(ctx *ExecCicsStatementContext)
- func (s *BaseCobol85Listener) ExitExecSqlImsStatement(ctx *ExecSqlImsStatementContext)
- func (s *BaseCobol85Listener) ExitExecSqlStatement(ctx *ExecSqlStatementContext)
- func (s *BaseCobol85Listener) ExitExhibitOperand(ctx *ExhibitOperandContext)
- func (s *BaseCobol85Listener) ExitExhibitStatement(ctx *ExhibitStatementContext)
- func (s *BaseCobol85Listener) ExitExitStatement(ctx *ExitStatementContext)
- func (s *BaseCobol85Listener) ExitExternalClause(ctx *ExternalClauseContext)
- func (s *BaseCobol85Listener) ExitFigurativeConstant(ctx *FigurativeConstantContext)
- func (s *BaseCobol85Listener) ExitFileControlClause(ctx *FileControlClauseContext)
- func (s *BaseCobol85Listener) ExitFileControlEntry(ctx *FileControlEntryContext)
- func (s *BaseCobol85Listener) ExitFileControlParagraph(ctx *FileControlParagraphContext)
- func (s *BaseCobol85Listener) ExitFileDescriptionEntry(ctx *FileDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitFileDescriptionEntryClause(ctx *FileDescriptionEntryClauseContext)
- func (s *BaseCobol85Listener) ExitFileName(ctx *FileNameContext)
- func (s *BaseCobol85Listener) ExitFileSection(ctx *FileSectionContext)
- func (s *BaseCobol85Listener) ExitFileStatusClause(ctx *FileStatusClauseContext)
- func (s *BaseCobol85Listener) ExitFunctionCall(ctx *FunctionCallContext)
- func (s *BaseCobol85Listener) ExitFunctionName(ctx *FunctionNameContext)
- func (s *BaseCobol85Listener) ExitGenerateStatement(ctx *GenerateStatementContext)
- func (s *BaseCobol85Listener) ExitGlobalClause(ctx *GlobalClauseContext)
- func (s *BaseCobol85Listener) ExitGoToDependingOnStatement(ctx *GoToDependingOnStatementContext)
- func (s *BaseCobol85Listener) ExitGoToStatement(ctx *GoToStatementContext)
- func (s *BaseCobol85Listener) ExitGoToStatementSimple(ctx *GoToStatementSimpleContext)
- func (s *BaseCobol85Listener) ExitGobackStatement(ctx *GobackStatementContext)
- func (s *BaseCobol85Listener) ExitIdentificationDivision(ctx *IdentificationDivisionContext)
- func (s *BaseCobol85Listener) ExitIdentificationDivisionBody(ctx *IdentificationDivisionBodyContext)
- func (s *BaseCobol85Listener) ExitIdentifier(ctx *IdentifierContext)
- func (s *BaseCobol85Listener) ExitIfElse(ctx *IfElseContext)
- func (s *BaseCobol85Listener) ExitIfStatement(ctx *IfStatementContext)
- func (s *BaseCobol85Listener) ExitIfThen(ctx *IfThenContext)
- func (s *BaseCobol85Listener) ExitInData(ctx *InDataContext)
- func (s *BaseCobol85Listener) ExitInFile(ctx *InFileContext)
- func (s *BaseCobol85Listener) ExitInLibrary(ctx *InLibraryContext)
- func (s *BaseCobol85Listener) ExitInMnemonic(ctx *InMnemonicContext)
- func (s *BaseCobol85Listener) ExitInSection(ctx *InSectionContext)
- func (s *BaseCobol85Listener) ExitInTable(ctx *InTableContext)
- func (s *BaseCobol85Listener) ExitIndexName(ctx *IndexNameContext)
- func (s *BaseCobol85Listener) ExitInitializeReplacingBy(ctx *InitializeReplacingByContext)
- func (s *BaseCobol85Listener) ExitInitializeReplacingPhrase(ctx *InitializeReplacingPhraseContext)
- func (s *BaseCobol85Listener) ExitInitializeStatement(ctx *InitializeStatementContext)
- func (s *BaseCobol85Listener) ExitInitiateStatement(ctx *InitiateStatementContext)
- func (s *BaseCobol85Listener) ExitInputOutputSection(ctx *InputOutputSectionContext)
- func (s *BaseCobol85Listener) ExitInputOutputSectionParagraph(ctx *InputOutputSectionParagraphContext)
- func (s *BaseCobol85Listener) ExitInspectAllLeading(ctx *InspectAllLeadingContext)
- func (s *BaseCobol85Listener) ExitInspectAllLeadings(ctx *InspectAllLeadingsContext)
- func (s *BaseCobol85Listener) ExitInspectBeforeAfter(ctx *InspectBeforeAfterContext)
- func (s *BaseCobol85Listener) ExitInspectBy(ctx *InspectByContext)
- func (s *BaseCobol85Listener) ExitInspectCharacters(ctx *InspectCharactersContext)
- func (s *BaseCobol85Listener) ExitInspectConvertingPhrase(ctx *InspectConvertingPhraseContext)
- func (s *BaseCobol85Listener) ExitInspectFor(ctx *InspectForContext)
- func (s *BaseCobol85Listener) ExitInspectReplacingAllLeading(ctx *InspectReplacingAllLeadingContext)
- func (s *BaseCobol85Listener) ExitInspectReplacingAllLeadings(ctx *InspectReplacingAllLeadingsContext)
- func (s *BaseCobol85Listener) ExitInspectReplacingCharacters(ctx *InspectReplacingCharactersContext)
- func (s *BaseCobol85Listener) ExitInspectReplacingPhrase(ctx *InspectReplacingPhraseContext)
- func (s *BaseCobol85Listener) ExitInspectStatement(ctx *InspectStatementContext)
- func (s *BaseCobol85Listener) ExitInspectTallyingPhrase(ctx *InspectTallyingPhraseContext)
- func (s *BaseCobol85Listener) ExitInspectTallyingReplacingPhrase(ctx *InspectTallyingReplacingPhraseContext)
- func (s *BaseCobol85Listener) ExitInspectTo(ctx *InspectToContext)
- func (s *BaseCobol85Listener) ExitInstallationParagraph(ctx *InstallationParagraphContext)
- func (s *BaseCobol85Listener) ExitIntegerLiteral(ctx *IntegerLiteralContext)
- func (s *BaseCobol85Listener) ExitInvalidKeyPhrase(ctx *InvalidKeyPhraseContext)
- func (s *BaseCobol85Listener) ExitIoControlClause(ctx *IoControlClauseContext)
- func (s *BaseCobol85Listener) ExitIoControlParagraph(ctx *IoControlParagraphContext)
- func (s *BaseCobol85Listener) ExitLabelRecordsClause(ctx *LabelRecordsClauseContext)
- func (s *BaseCobol85Listener) ExitLanguageName(ctx *LanguageNameContext)
- func (s *BaseCobol85Listener) ExitLength(ctx *LengthContext)
- func (s *BaseCobol85Listener) ExitLibraryAttributeClauseFormat1(ctx *LibraryAttributeClauseFormat1Context)
- func (s *BaseCobol85Listener) ExitLibraryAttributeClauseFormat2(ctx *LibraryAttributeClauseFormat2Context)
- func (s *BaseCobol85Listener) ExitLibraryAttributeFunction(ctx *LibraryAttributeFunctionContext)
- func (s *BaseCobol85Listener) ExitLibraryAttributeParameter(ctx *LibraryAttributeParameterContext)
- func (s *BaseCobol85Listener) ExitLibraryAttributeTitle(ctx *LibraryAttributeTitleContext)
- func (s *BaseCobol85Listener) ExitLibraryDescriptionEntry(ctx *LibraryDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitLibraryDescriptionEntryFormat1(ctx *LibraryDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) ExitLibraryDescriptionEntryFormat2(ctx *LibraryDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureClauseFormat1(ctx *LibraryEntryProcedureClauseFormat1Context)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureClauseFormat2(ctx *LibraryEntryProcedureClauseFormat2Context)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureForClause(ctx *LibraryEntryProcedureForClauseContext)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureGivingClause(ctx *LibraryEntryProcedureGivingClauseContext)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureUsingClause(ctx *LibraryEntryProcedureUsingClauseContext)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureUsingName(ctx *LibraryEntryProcedureUsingNameContext)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureWithClause(ctx *LibraryEntryProcedureWithClauseContext)
- func (s *BaseCobol85Listener) ExitLibraryEntryProcedureWithName(ctx *LibraryEntryProcedureWithNameContext)
- func (s *BaseCobol85Listener) ExitLibraryIsCommonClause(ctx *LibraryIsCommonClauseContext)
- func (s *BaseCobol85Listener) ExitLibraryIsGlobalClause(ctx *LibraryIsGlobalClauseContext)
- func (s *BaseCobol85Listener) ExitLibraryName(ctx *LibraryNameContext)
- func (s *BaseCobol85Listener) ExitLinageAt(ctx *LinageAtContext)
- func (s *BaseCobol85Listener) ExitLinageClause(ctx *LinageClauseContext)
- func (s *BaseCobol85Listener) ExitLinageFootingAt(ctx *LinageFootingAtContext)
- func (s *BaseCobol85Listener) ExitLinageLinesAtBottom(ctx *LinageLinesAtBottomContext)
- func (s *BaseCobol85Listener) ExitLinageLinesAtTop(ctx *LinageLinesAtTopContext)
- func (s *BaseCobol85Listener) ExitLinkageSection(ctx *LinkageSectionContext)
- func (s *BaseCobol85Listener) ExitLiteral(ctx *LiteralContext)
- func (s *BaseCobol85Listener) ExitLocalName(ctx *LocalNameContext)
- func (s *BaseCobol85Listener) ExitLocalStorageSection(ctx *LocalStorageSectionContext)
- func (s *BaseCobol85Listener) ExitMemorySizeClause(ctx *MemorySizeClauseContext)
- func (s *BaseCobol85Listener) ExitMergeCollatingAlphanumeric(ctx *MergeCollatingAlphanumericContext)
- func (s *BaseCobol85Listener) ExitMergeCollatingNational(ctx *MergeCollatingNationalContext)
- func (s *BaseCobol85Listener) ExitMergeCollatingSequencePhrase(ctx *MergeCollatingSequencePhraseContext)
- func (s *BaseCobol85Listener) ExitMergeGiving(ctx *MergeGivingContext)
- func (s *BaseCobol85Listener) ExitMergeGivingPhrase(ctx *MergeGivingPhraseContext)
- func (s *BaseCobol85Listener) ExitMergeOnKeyClause(ctx *MergeOnKeyClauseContext)
- func (s *BaseCobol85Listener) ExitMergeOutputProcedurePhrase(ctx *MergeOutputProcedurePhraseContext)
- func (s *BaseCobol85Listener) ExitMergeOutputThrough(ctx *MergeOutputThroughContext)
- func (s *BaseCobol85Listener) ExitMergeStatement(ctx *MergeStatementContext)
- func (s *BaseCobol85Listener) ExitMergeUsing(ctx *MergeUsingContext)
- func (s *BaseCobol85Listener) ExitMessageCountClause(ctx *MessageCountClauseContext)
- func (s *BaseCobol85Listener) ExitMessageDateClause(ctx *MessageDateClauseContext)
- func (s *BaseCobol85Listener) ExitMessageTimeClause(ctx *MessageTimeClauseContext)
- func (s *BaseCobol85Listener) ExitMnemonicName(ctx *MnemonicNameContext)
- func (s *BaseCobol85Listener) ExitModeStatement(ctx *ModeStatementContext)
- func (s *BaseCobol85Listener) ExitMoveCorrespondingToSendingArea(ctx *MoveCorrespondingToSendingAreaContext)
- func (s *BaseCobol85Listener) ExitMoveCorrespondingToStatement(ctx *MoveCorrespondingToStatementContext)
- func (s *BaseCobol85Listener) ExitMoveStatement(ctx *MoveStatementContext)
- func (s *BaseCobol85Listener) ExitMoveToSendingArea(ctx *MoveToSendingAreaContext)
- func (s *BaseCobol85Listener) ExitMoveToStatement(ctx *MoveToStatementContext)
- func (s *BaseCobol85Listener) ExitMultDiv(ctx *MultDivContext)
- func (s *BaseCobol85Listener) ExitMultDivs(ctx *MultDivsContext)
- func (s *BaseCobol85Listener) ExitMultipleFileClause(ctx *MultipleFileClauseContext)
- func (s *BaseCobol85Listener) ExitMultipleFilePosition(ctx *MultipleFilePositionContext)
- func (s *BaseCobol85Listener) ExitMultiplyGiving(ctx *MultiplyGivingContext)
- func (s *BaseCobol85Listener) ExitMultiplyGivingOperand(ctx *MultiplyGivingOperandContext)
- func (s *BaseCobol85Listener) ExitMultiplyGivingResult(ctx *MultiplyGivingResultContext)
- func (s *BaseCobol85Listener) ExitMultiplyRegular(ctx *MultiplyRegularContext)
- func (s *BaseCobol85Listener) ExitMultiplyRegularOperand(ctx *MultiplyRegularOperandContext)
- func (s *BaseCobol85Listener) ExitMultiplyStatement(ctx *MultiplyStatementContext)
- func (s *BaseCobol85Listener) ExitNotAtEndPhrase(ctx *NotAtEndPhraseContext)
- func (s *BaseCobol85Listener) ExitNotInvalidKeyPhrase(ctx *NotInvalidKeyPhraseContext)
- func (s *BaseCobol85Listener) ExitNotOnExceptionClause(ctx *NotOnExceptionClauseContext)
- func (s *BaseCobol85Listener) ExitNotOnOverflowPhrase(ctx *NotOnOverflowPhraseContext)
- func (s *BaseCobol85Listener) ExitNotOnSizeErrorPhrase(ctx *NotOnSizeErrorPhraseContext)
- func (s *BaseCobol85Listener) ExitNumericLiteral(ctx *NumericLiteralContext)
- func (s *BaseCobol85Listener) ExitObjectComputerClause(ctx *ObjectComputerClauseContext)
- func (s *BaseCobol85Listener) ExitObjectComputerParagraph(ctx *ObjectComputerParagraphContext)
- func (s *BaseCobol85Listener) ExitOdtClause(ctx *OdtClauseContext)
- func (s *BaseCobol85Listener) ExitOnExceptionClause(ctx *OnExceptionClauseContext)
- func (s *BaseCobol85Listener) ExitOnOverflowPhrase(ctx *OnOverflowPhraseContext)
- func (s *BaseCobol85Listener) ExitOnSizeErrorPhrase(ctx *OnSizeErrorPhraseContext)
- func (s *BaseCobol85Listener) ExitOpenExtendStatement(ctx *OpenExtendStatementContext)
- func (s *BaseCobol85Listener) ExitOpenIOStatement(ctx *OpenIOStatementContext)
- func (s *BaseCobol85Listener) ExitOpenInput(ctx *OpenInputContext)
- func (s *BaseCobol85Listener) ExitOpenInputStatement(ctx *OpenInputStatementContext)
- func (s *BaseCobol85Listener) ExitOpenOutput(ctx *OpenOutputContext)
- func (s *BaseCobol85Listener) ExitOpenOutputStatement(ctx *OpenOutputStatementContext)
- func (s *BaseCobol85Listener) ExitOpenStatement(ctx *OpenStatementContext)
- func (s *BaseCobol85Listener) ExitOrganizationClause(ctx *OrganizationClauseContext)
- func (s *BaseCobol85Listener) ExitPaddingCharacterClause(ctx *PaddingCharacterClauseContext)
- func (s *BaseCobol85Listener) ExitParagraph(ctx *ParagraphContext)
- func (s *BaseCobol85Listener) ExitParagraphName(ctx *ParagraphNameContext)
- func (s *BaseCobol85Listener) ExitParagraphs(ctx *ParagraphsContext)
- func (s *BaseCobol85Listener) ExitPasswordClause(ctx *PasswordClauseContext)
- func (s *BaseCobol85Listener) ExitPerformAfter(ctx *PerformAfterContext)
- func (s *BaseCobol85Listener) ExitPerformBy(ctx *PerformByContext)
- func (s *BaseCobol85Listener) ExitPerformFrom(ctx *PerformFromContext)
- func (s *BaseCobol85Listener) ExitPerformInlineStatement(ctx *PerformInlineStatementContext)
- func (s *BaseCobol85Listener) ExitPerformProcedureStatement(ctx *PerformProcedureStatementContext)
- func (s *BaseCobol85Listener) ExitPerformStatement(ctx *PerformStatementContext)
- func (s *BaseCobol85Listener) ExitPerformTestClause(ctx *PerformTestClauseContext)
- func (s *BaseCobol85Listener) ExitPerformTimes(ctx *PerformTimesContext)
- func (s *BaseCobol85Listener) ExitPerformType(ctx *PerformTypeContext)
- func (s *BaseCobol85Listener) ExitPerformUntil(ctx *PerformUntilContext)
- func (s *BaseCobol85Listener) ExitPerformVarying(ctx *PerformVaryingContext)
- func (s *BaseCobol85Listener) ExitPerformVaryingClause(ctx *PerformVaryingClauseContext)
- func (s *BaseCobol85Listener) ExitPerformVaryingPhrase(ctx *PerformVaryingPhraseContext)
- func (s *BaseCobol85Listener) ExitPictureCardinality(ctx *PictureCardinalityContext)
- func (s *BaseCobol85Listener) ExitPictureChars(ctx *PictureCharsContext)
- func (s *BaseCobol85Listener) ExitPictureString(ctx *PictureStringContext)
- func (s *BaseCobol85Listener) ExitPlusMinus(ctx *PlusMinusContext)
- func (s *BaseCobol85Listener) ExitPower(ctx *PowerContext)
- func (s *BaseCobol85Listener) ExitPowers(ctx *PowersContext)
- func (s *BaseCobol85Listener) ExitProcedureDeclarative(ctx *ProcedureDeclarativeContext)
- func (s *BaseCobol85Listener) ExitProcedureDeclaratives(ctx *ProcedureDeclarativesContext)
- func (s *BaseCobol85Listener) ExitProcedureDivision(ctx *ProcedureDivisionContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionBody(ctx *ProcedureDivisionBodyContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionByReference(ctx *ProcedureDivisionByReferenceContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionByReferencePhrase(ctx *ProcedureDivisionByReferencePhraseContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionByValue(ctx *ProcedureDivisionByValueContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionByValuePhrase(ctx *ProcedureDivisionByValuePhraseContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionGivingClause(ctx *ProcedureDivisionGivingClauseContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionUsingClause(ctx *ProcedureDivisionUsingClauseContext)
- func (s *BaseCobol85Listener) ExitProcedureDivisionUsingParameter(ctx *ProcedureDivisionUsingParameterContext)
- func (s *BaseCobol85Listener) ExitProcedureName(ctx *ProcedureNameContext)
- func (s *BaseCobol85Listener) ExitProcedureSection(ctx *ProcedureSectionContext)
- func (s *BaseCobol85Listener) ExitProcedureSectionHeader(ctx *ProcedureSectionHeaderContext)
- func (s *BaseCobol85Listener) ExitProgramIdParagraph(ctx *ProgramIdParagraphContext)
- func (s *BaseCobol85Listener) ExitProgramLibrarySection(ctx *ProgramLibrarySectionContext)
- func (s *BaseCobol85Listener) ExitProgramName(ctx *ProgramNameContext)
- func (s *BaseCobol85Listener) ExitProgramUnit(ctx *ProgramUnitContext)
- func (s *BaseCobol85Listener) ExitPurgeStatement(ctx *PurgeStatementContext)
- func (s *BaseCobol85Listener) ExitQualifiedDataName(ctx *QualifiedDataNameContext)
- func (s *BaseCobol85Listener) ExitQualifiedDataNameFormat1(ctx *QualifiedDataNameFormat1Context)
- func (s *BaseCobol85Listener) ExitQualifiedDataNameFormat2(ctx *QualifiedDataNameFormat2Context)
- func (s *BaseCobol85Listener) ExitQualifiedDataNameFormat3(ctx *QualifiedDataNameFormat3Context)
- func (s *BaseCobol85Listener) ExitQualifiedDataNameFormat4(ctx *QualifiedDataNameFormat4Context)
- func (s *BaseCobol85Listener) ExitQualifiedInData(ctx *QualifiedInDataContext)
- func (s *BaseCobol85Listener) ExitReadInto(ctx *ReadIntoContext)
- func (s *BaseCobol85Listener) ExitReadKey(ctx *ReadKeyContext)
- func (s *BaseCobol85Listener) ExitReadStatement(ctx *ReadStatementContext)
- func (s *BaseCobol85Listener) ExitReadWith(ctx *ReadWithContext)
- func (s *BaseCobol85Listener) ExitReceiveBefore(ctx *ReceiveBeforeContext)
- func (s *BaseCobol85Listener) ExitReceiveFrom(ctx *ReceiveFromContext)
- func (s *BaseCobol85Listener) ExitReceiveFromStatement(ctx *ReceiveFromStatementContext)
- func (s *BaseCobol85Listener) ExitReceiveIntoStatement(ctx *ReceiveIntoStatementContext)
- func (s *BaseCobol85Listener) ExitReceiveNoData(ctx *ReceiveNoDataContext)
- func (s *BaseCobol85Listener) ExitReceiveSize(ctx *ReceiveSizeContext)
- func (s *BaseCobol85Listener) ExitReceiveStatement(ctx *ReceiveStatementContext)
- func (s *BaseCobol85Listener) ExitReceiveStatus(ctx *ReceiveStatusContext)
- func (s *BaseCobol85Listener) ExitReceiveThread(ctx *ReceiveThreadContext)
- func (s *BaseCobol85Listener) ExitReceiveWith(ctx *ReceiveWithContext)
- func (s *BaseCobol85Listener) ExitReceiveWithData(ctx *ReceiveWithDataContext)
- func (s *BaseCobol85Listener) ExitRecordContainsClause(ctx *RecordContainsClauseContext)
- func (s *BaseCobol85Listener) ExitRecordContainsClauseFormat1(ctx *RecordContainsClauseFormat1Context)
- func (s *BaseCobol85Listener) ExitRecordContainsClauseFormat2(ctx *RecordContainsClauseFormat2Context)
- func (s *BaseCobol85Listener) ExitRecordContainsClauseFormat3(ctx *RecordContainsClauseFormat3Context)
- func (s *BaseCobol85Listener) ExitRecordContainsTo(ctx *RecordContainsToContext)
- func (s *BaseCobol85Listener) ExitRecordDelimiterClause(ctx *RecordDelimiterClauseContext)
- func (s *BaseCobol85Listener) ExitRecordKeyClause(ctx *RecordKeyClauseContext)
- func (s *BaseCobol85Listener) ExitRecordName(ctx *RecordNameContext)
- func (s *BaseCobol85Listener) ExitRecordingModeClause(ctx *RecordingModeClauseContext)
- func (s *BaseCobol85Listener) ExitReferenceModifier(ctx *ReferenceModifierContext)
- func (s *BaseCobol85Listener) ExitRelationArithmeticComparison(ctx *RelationArithmeticComparisonContext)
- func (s *BaseCobol85Listener) ExitRelationCombinedComparison(ctx *RelationCombinedComparisonContext)
- func (s *BaseCobol85Listener) ExitRelationCombinedCondition(ctx *RelationCombinedConditionContext)
- func (s *BaseCobol85Listener) ExitRelationCondition(ctx *RelationConditionContext)
- func (s *BaseCobol85Listener) ExitRelationSignCondition(ctx *RelationSignConditionContext)
- func (s *BaseCobol85Listener) ExitRelationalOperator(ctx *RelationalOperatorContext)
- func (s *BaseCobol85Listener) ExitRelativeKeyClause(ctx *RelativeKeyClauseContext)
- func (s *BaseCobol85Listener) ExitReleaseStatement(ctx *ReleaseStatementContext)
- func (s *BaseCobol85Listener) ExitRemarksParagraph(ctx *RemarksParagraphContext)
- func (s *BaseCobol85Listener) ExitReportClause(ctx *ReportClauseContext)
- func (s *BaseCobol85Listener) ExitReportDescription(ctx *ReportDescriptionContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionEntry(ctx *ReportDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionFirstDetailClause(ctx *ReportDescriptionFirstDetailClauseContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionFootingClause(ctx *ReportDescriptionFootingClauseContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionGlobalClause(ctx *ReportDescriptionGlobalClauseContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionHeadingClause(ctx *ReportDescriptionHeadingClauseContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionLastDetailClause(ctx *ReportDescriptionLastDetailClauseContext)
- func (s *BaseCobol85Listener) ExitReportDescriptionPageLimitClause(ctx *ReportDescriptionPageLimitClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupBlankWhenZeroClause(ctx *ReportGroupBlankWhenZeroClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupColumnNumberClause(ctx *ReportGroupColumnNumberClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupDescriptionEntry(ctx *ReportGroupDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitReportGroupDescriptionEntryFormat1(ctx *ReportGroupDescriptionEntryFormat1Context)
- func (s *BaseCobol85Listener) ExitReportGroupDescriptionEntryFormat2(ctx *ReportGroupDescriptionEntryFormat2Context)
- func (s *BaseCobol85Listener) ExitReportGroupDescriptionEntryFormat3(ctx *ReportGroupDescriptionEntryFormat3Context)
- func (s *BaseCobol85Listener) ExitReportGroupIndicateClause(ctx *ReportGroupIndicateClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupJustifiedClause(ctx *ReportGroupJustifiedClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupLineNumberClause(ctx *ReportGroupLineNumberClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupLineNumberNextPage(ctx *ReportGroupLineNumberNextPageContext)
- func (s *BaseCobol85Listener) ExitReportGroupLineNumberPlus(ctx *ReportGroupLineNumberPlusContext)
- func (s *BaseCobol85Listener) ExitReportGroupNextGroupClause(ctx *ReportGroupNextGroupClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupNextGroupNextPage(ctx *ReportGroupNextGroupNextPageContext)
- func (s *BaseCobol85Listener) ExitReportGroupNextGroupPlus(ctx *ReportGroupNextGroupPlusContext)
- func (s *BaseCobol85Listener) ExitReportGroupPictureClause(ctx *ReportGroupPictureClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupResetClause(ctx *ReportGroupResetClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupSignClause(ctx *ReportGroupSignClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupSourceClause(ctx *ReportGroupSourceClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupSumClause(ctx *ReportGroupSumClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypeClause(ctx *ReportGroupTypeClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypeControlFooting(ctx *ReportGroupTypeControlFootingContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypeControlHeading(ctx *ReportGroupTypeControlHeadingContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypeDetail(ctx *ReportGroupTypeDetailContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypePageFooting(ctx *ReportGroupTypePageFootingContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypePageHeading(ctx *ReportGroupTypePageHeadingContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypeReportFooting(ctx *ReportGroupTypeReportFootingContext)
- func (s *BaseCobol85Listener) ExitReportGroupTypeReportHeading(ctx *ReportGroupTypeReportHeadingContext)
- func (s *BaseCobol85Listener) ExitReportGroupUsageClause(ctx *ReportGroupUsageClauseContext)
- func (s *BaseCobol85Listener) ExitReportGroupValueClause(ctx *ReportGroupValueClauseContext)
- func (s *BaseCobol85Listener) ExitReportName(ctx *ReportNameContext)
- func (s *BaseCobol85Listener) ExitReportSection(ctx *ReportSectionContext)
- func (s *BaseCobol85Listener) ExitRerunClause(ctx *RerunClauseContext)
- func (s *BaseCobol85Listener) ExitRerunEveryClock(ctx *RerunEveryClockContext)
- func (s *BaseCobol85Listener) ExitRerunEveryOf(ctx *RerunEveryOfContext)
- func (s *BaseCobol85Listener) ExitRerunEveryRecords(ctx *RerunEveryRecordsContext)
- func (s *BaseCobol85Listener) ExitReserveClause(ctx *ReserveClauseContext)
- func (s *BaseCobol85Listener) ExitReserveNetworkClause(ctx *ReserveNetworkClauseContext)
- func (s *BaseCobol85Listener) ExitReturnInto(ctx *ReturnIntoContext)
- func (s *BaseCobol85Listener) ExitReturnStatement(ctx *ReturnStatementContext)
- func (s *BaseCobol85Listener) ExitRewriteFrom(ctx *RewriteFromContext)
- func (s *BaseCobol85Listener) ExitRewriteStatement(ctx *RewriteStatementContext)
- func (s *BaseCobol85Listener) ExitRoutineName(ctx *RoutineNameContext)
- func (s *BaseCobol85Listener) ExitSameClause(ctx *SameClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionAutoClause(ctx *ScreenDescriptionAutoClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionBackgroundColorClause(ctx *ScreenDescriptionBackgroundColorClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionBellClause(ctx *ScreenDescriptionBellClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionBlankClause(ctx *ScreenDescriptionBlankClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionBlankWhenZeroClause(ctx *ScreenDescriptionBlankWhenZeroClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionBlinkClause(ctx *ScreenDescriptionBlinkClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionColumnClause(ctx *ScreenDescriptionColumnClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionControlClause(ctx *ScreenDescriptionControlClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionEntry(ctx *ScreenDescriptionEntryContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionEraseClause(ctx *ScreenDescriptionEraseClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionForegroundColorClause(ctx *ScreenDescriptionForegroundColorClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionFromClause(ctx *ScreenDescriptionFromClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionFullClause(ctx *ScreenDescriptionFullClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionGridClause(ctx *ScreenDescriptionGridClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionJustifiedClause(ctx *ScreenDescriptionJustifiedClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionLightClause(ctx *ScreenDescriptionLightClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionLineClause(ctx *ScreenDescriptionLineClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionPictureClause(ctx *ScreenDescriptionPictureClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionPromptClause(ctx *ScreenDescriptionPromptClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionPromptOccursClause(ctx *ScreenDescriptionPromptOccursClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionRequiredClause(ctx *ScreenDescriptionRequiredClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionReverseVideoClause(ctx *ScreenDescriptionReverseVideoClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionSecureClause(ctx *ScreenDescriptionSecureClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionSignClause(ctx *ScreenDescriptionSignClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionSizeClause(ctx *ScreenDescriptionSizeClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionToClause(ctx *ScreenDescriptionToClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionUnderlineClause(ctx *ScreenDescriptionUnderlineClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionUsageClause(ctx *ScreenDescriptionUsageClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionUsingClause(ctx *ScreenDescriptionUsingClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionValueClause(ctx *ScreenDescriptionValueClauseContext)
- func (s *BaseCobol85Listener) ExitScreenDescriptionZeroFillClause(ctx *ScreenDescriptionZeroFillClauseContext)
- func (s *BaseCobol85Listener) ExitScreenName(ctx *ScreenNameContext)
- func (s *BaseCobol85Listener) ExitScreenSection(ctx *ScreenSectionContext)
- func (s *BaseCobol85Listener) ExitSearchStatement(ctx *SearchStatementContext)
- func (s *BaseCobol85Listener) ExitSearchVarying(ctx *SearchVaryingContext)
- func (s *BaseCobol85Listener) ExitSearchWhen(ctx *SearchWhenContext)
- func (s *BaseCobol85Listener) ExitSectionName(ctx *SectionNameContext)
- func (s *BaseCobol85Listener) ExitSecurityParagraph(ctx *SecurityParagraphContext)
- func (s *BaseCobol85Listener) ExitSegmentLimitClause(ctx *SegmentLimitClauseContext)
- func (s *BaseCobol85Listener) ExitSelectClause(ctx *SelectClauseContext)
- func (s *BaseCobol85Listener) ExitSendAdvancingLines(ctx *SendAdvancingLinesContext)
- func (s *BaseCobol85Listener) ExitSendAdvancingMnemonic(ctx *SendAdvancingMnemonicContext)
- func (s *BaseCobol85Listener) ExitSendAdvancingPage(ctx *SendAdvancingPageContext)
- func (s *BaseCobol85Listener) ExitSendAdvancingPhrase(ctx *SendAdvancingPhraseContext)
- func (s *BaseCobol85Listener) ExitSendFromPhrase(ctx *SendFromPhraseContext)
- func (s *BaseCobol85Listener) ExitSendReplacingPhrase(ctx *SendReplacingPhraseContext)
- func (s *BaseCobol85Listener) ExitSendStatement(ctx *SendStatementContext)
- func (s *BaseCobol85Listener) ExitSendStatementAsync(ctx *SendStatementAsyncContext)
- func (s *BaseCobol85Listener) ExitSendStatementSync(ctx *SendStatementSyncContext)
- func (s *BaseCobol85Listener) ExitSendWithPhrase(ctx *SendWithPhraseContext)
- func (s *BaseCobol85Listener) ExitSentence(ctx *SentenceContext)
- func (s *BaseCobol85Listener) ExitSetByValue(ctx *SetByValueContext)
- func (s *BaseCobol85Listener) ExitSetStatement(ctx *SetStatementContext)
- func (s *BaseCobol85Listener) ExitSetTo(ctx *SetToContext)
- func (s *BaseCobol85Listener) ExitSetToStatement(ctx *SetToStatementContext)
- func (s *BaseCobol85Listener) ExitSetToValue(ctx *SetToValueContext)
- func (s *BaseCobol85Listener) ExitSetUpDownByStatement(ctx *SetUpDownByStatementContext)
- func (s *BaseCobol85Listener) ExitSimpleCondition(ctx *SimpleConditionContext)
- func (s *BaseCobol85Listener) ExitSortCollatingAlphanumeric(ctx *SortCollatingAlphanumericContext)
- func (s *BaseCobol85Listener) ExitSortCollatingNational(ctx *SortCollatingNationalContext)
- func (s *BaseCobol85Listener) ExitSortCollatingSequencePhrase(ctx *SortCollatingSequencePhraseContext)
- func (s *BaseCobol85Listener) ExitSortDuplicatesPhrase(ctx *SortDuplicatesPhraseContext)
- func (s *BaseCobol85Listener) ExitSortGiving(ctx *SortGivingContext)
- func (s *BaseCobol85Listener) ExitSortGivingPhrase(ctx *SortGivingPhraseContext)
- func (s *BaseCobol85Listener) ExitSortInputProcedurePhrase(ctx *SortInputProcedurePhraseContext)
- func (s *BaseCobol85Listener) ExitSortInputThrough(ctx *SortInputThroughContext)
- func (s *BaseCobol85Listener) ExitSortOnKeyClause(ctx *SortOnKeyClauseContext)
- func (s *BaseCobol85Listener) ExitSortOutputProcedurePhrase(ctx *SortOutputProcedurePhraseContext)
- func (s *BaseCobol85Listener) ExitSortOutputThrough(ctx *SortOutputThroughContext)
- func (s *BaseCobol85Listener) ExitSortStatement(ctx *SortStatementContext)
- func (s *BaseCobol85Listener) ExitSortUsing(ctx *SortUsingContext)
- func (s *BaseCobol85Listener) ExitSourceComputerParagraph(ctx *SourceComputerParagraphContext)
- func (s *BaseCobol85Listener) ExitSpecialNameClause(ctx *SpecialNameClauseContext)
- func (s *BaseCobol85Listener) ExitSpecialNamesParagraph(ctx *SpecialNamesParagraphContext)
- func (s *BaseCobol85Listener) ExitSpecialRegister(ctx *SpecialRegisterContext)
- func (s *BaseCobol85Listener) ExitStartKey(ctx *StartKeyContext)
- func (s *BaseCobol85Listener) ExitStartRule(ctx *StartRuleContext)
- func (s *BaseCobol85Listener) ExitStartStatement(ctx *StartStatementContext)
- func (s *BaseCobol85Listener) ExitStatement(ctx *StatementContext)
- func (s *BaseCobol85Listener) ExitStatusKeyClause(ctx *StatusKeyClauseContext)
- func (s *BaseCobol85Listener) ExitStopStatement(ctx *StopStatementContext)
- func (s *BaseCobol85Listener) ExitStringDelimitedByPhrase(ctx *StringDelimitedByPhraseContext)
- func (s *BaseCobol85Listener) ExitStringForPhrase(ctx *StringForPhraseContext)
- func (s *BaseCobol85Listener) ExitStringIntoPhrase(ctx *StringIntoPhraseContext)
- func (s *BaseCobol85Listener) ExitStringSending(ctx *StringSendingContext)
- func (s *BaseCobol85Listener) ExitStringSendingPhrase(ctx *StringSendingPhraseContext)
- func (s *BaseCobol85Listener) ExitStringStatement(ctx *StringStatementContext)
- func (s *BaseCobol85Listener) ExitStringWithPointerPhrase(ctx *StringWithPointerPhraseContext)
- func (s *BaseCobol85Listener) ExitSubscript(ctx *SubscriptContext)
- func (s *BaseCobol85Listener) ExitSubtractCorrespondingStatement(ctx *SubtractCorrespondingStatementContext)
- func (s *BaseCobol85Listener) ExitSubtractFromGivingStatement(ctx *SubtractFromGivingStatementContext)
- func (s *BaseCobol85Listener) ExitSubtractFromStatement(ctx *SubtractFromStatementContext)
- func (s *BaseCobol85Listener) ExitSubtractGiving(ctx *SubtractGivingContext)
- func (s *BaseCobol85Listener) ExitSubtractMinuend(ctx *SubtractMinuendContext)
- func (s *BaseCobol85Listener) ExitSubtractMinuendCorresponding(ctx *SubtractMinuendCorrespondingContext)
- func (s *BaseCobol85Listener) ExitSubtractMinuendGiving(ctx *SubtractMinuendGivingContext)
- func (s *BaseCobol85Listener) ExitSubtractStatement(ctx *SubtractStatementContext)
- func (s *BaseCobol85Listener) ExitSubtractSubtrahend(ctx *SubtractSubtrahendContext)
- func (s *BaseCobol85Listener) ExitSymbolicCharacter(ctx *SymbolicCharacterContext)
- func (s *BaseCobol85Listener) ExitSymbolicCharacters(ctx *SymbolicCharactersContext)
- func (s *BaseCobol85Listener) ExitSymbolicCharactersClause(ctx *SymbolicCharactersClauseContext)
- func (s *BaseCobol85Listener) ExitSymbolicDestinationClause(ctx *SymbolicDestinationClauseContext)
- func (s *BaseCobol85Listener) ExitSymbolicQueueClause(ctx *SymbolicQueueClauseContext)
- func (s *BaseCobol85Listener) ExitSymbolicSourceClause(ctx *SymbolicSourceClauseContext)
- func (s *BaseCobol85Listener) ExitSymbolicSubQueueClause(ctx *SymbolicSubQueueClauseContext)
- func (s *BaseCobol85Listener) ExitSymbolicTerminalClause(ctx *SymbolicTerminalClauseContext)
- func (s *BaseCobol85Listener) ExitSystemName(ctx *SystemNameContext)
- func (s *BaseCobol85Listener) ExitTableCall(ctx *TableCallContext)
- func (s *BaseCobol85Listener) ExitTerminateStatement(ctx *TerminateStatementContext)
- func (s *BaseCobol85Listener) ExitTextLengthClause(ctx *TextLengthClauseContext)
- func (s *BaseCobol85Listener) ExitTextName(ctx *TextNameContext)
- func (s *BaseCobol85Listener) ExitUnstringCountIn(ctx *UnstringCountInContext)
- func (s *BaseCobol85Listener) ExitUnstringDelimitedByPhrase(ctx *UnstringDelimitedByPhraseContext)
- func (s *BaseCobol85Listener) ExitUnstringDelimiterIn(ctx *UnstringDelimiterInContext)
- func (s *BaseCobol85Listener) ExitUnstringInto(ctx *UnstringIntoContext)
- func (s *BaseCobol85Listener) ExitUnstringIntoPhrase(ctx *UnstringIntoPhraseContext)
- func (s *BaseCobol85Listener) ExitUnstringOrAllPhrase(ctx *UnstringOrAllPhraseContext)
- func (s *BaseCobol85Listener) ExitUnstringSendingPhrase(ctx *UnstringSendingPhraseContext)
- func (s *BaseCobol85Listener) ExitUnstringStatement(ctx *UnstringStatementContext)
- func (s *BaseCobol85Listener) ExitUnstringTallyingPhrase(ctx *UnstringTallyingPhraseContext)
- func (s *BaseCobol85Listener) ExitUnstringWithPointerPhrase(ctx *UnstringWithPointerPhraseContext)
- func (s *BaseCobol85Listener) ExitUseAfterClause(ctx *UseAfterClauseContext)
- func (s *BaseCobol85Listener) ExitUseAfterOn(ctx *UseAfterOnContext)
- func (s *BaseCobol85Listener) ExitUseDebugClause(ctx *UseDebugClauseContext)
- func (s *BaseCobol85Listener) ExitUseDebugOn(ctx *UseDebugOnContext)
- func (s *BaseCobol85Listener) ExitUseStatement(ctx *UseStatementContext)
- func (s *BaseCobol85Listener) ExitValueOfClause(ctx *ValueOfClauseContext)
- func (s *BaseCobol85Listener) ExitValuePair(ctx *ValuePairContext)
- func (s *BaseCobol85Listener) ExitWorkingStorageSection(ctx *WorkingStorageSectionContext)
- func (s *BaseCobol85Listener) ExitWriteAdvancingLines(ctx *WriteAdvancingLinesContext)
- func (s *BaseCobol85Listener) ExitWriteAdvancingMnemonic(ctx *WriteAdvancingMnemonicContext)
- func (s *BaseCobol85Listener) ExitWriteAdvancingPage(ctx *WriteAdvancingPageContext)
- func (s *BaseCobol85Listener) ExitWriteAdvancingPhrase(ctx *WriteAdvancingPhraseContext)
- func (s *BaseCobol85Listener) ExitWriteAtEndOfPagePhrase(ctx *WriteAtEndOfPagePhraseContext)
- func (s *BaseCobol85Listener) ExitWriteFromPhrase(ctx *WriteFromPhraseContext)
- func (s *BaseCobol85Listener) ExitWriteNotAtEndOfPagePhrase(ctx *WriteNotAtEndOfPagePhraseContext)
- func (s *BaseCobol85Listener) ExitWriteStatement(ctx *WriteStatementContext)
- func (s *BaseCobol85Listener) VisitErrorNode(node antlr.ErrorNode)
- func (s *BaseCobol85Listener) VisitTerminal(node antlr.TerminalNode)
- type BasisContext
- func (s *BasisContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *BasisContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *BasisContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *BasisContext) GetParser() antlr.Parser
- func (s *BasisContext) GetRuleContext() antlr.RuleContext
- func (s *BasisContext) Identifier() IIdentifierContext
- func (*BasisContext) IsBasisContext()
- func (s *BasisContext) LPARENCHAR() antlr.TerminalNode
- func (s *BasisContext) Literal() ILiteralContext
- func (s *BasisContext) RPARENCHAR() antlr.TerminalNode
- func (s *BasisContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type BasisNameContext
- func (s *BasisNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *BasisNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *BasisNameContext) GetParser() antlr.Parser
- func (s *BasisNameContext) GetRuleContext() antlr.RuleContext
- func (*BasisNameContext) IsBasisNameContext()
- func (s *BasisNameContext) ProgramName() IProgramNameContext
- func (s *BasisNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type BlockContainsClauseContext
- func (s *BlockContainsClauseContext) BLOCK() antlr.TerminalNode
- func (s *BlockContainsClauseContext) BlockContainsTo() IBlockContainsToContext
- func (s *BlockContainsClauseContext) CHARACTERS() antlr.TerminalNode
- func (s *BlockContainsClauseContext) CONTAINS() antlr.TerminalNode
- func (s *BlockContainsClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *BlockContainsClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *BlockContainsClauseContext) GetParser() antlr.Parser
- func (s *BlockContainsClauseContext) GetRuleContext() antlr.RuleContext
- func (s *BlockContainsClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*BlockContainsClauseContext) IsBlockContainsClauseContext()
- func (s *BlockContainsClauseContext) RECORDS() antlr.TerminalNode
- func (s *BlockContainsClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type BlockContainsToContext
- func (s *BlockContainsToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *BlockContainsToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *BlockContainsToContext) GetParser() antlr.Parser
- func (s *BlockContainsToContext) GetRuleContext() antlr.RuleContext
- func (s *BlockContainsToContext) IntegerLiteral() IIntegerLiteralContext
- func (*BlockContainsToContext) IsBlockContainsToContext()
- func (s *BlockContainsToContext) TO() antlr.TerminalNode
- func (s *BlockContainsToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type BooleanLiteralContext
- func (s *BooleanLiteralContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *BooleanLiteralContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *BooleanLiteralContext) FALSE() antlr.TerminalNode
- func (s *BooleanLiteralContext) GetParser() antlr.Parser
- func (s *BooleanLiteralContext) GetRuleContext() antlr.RuleContext
- func (*BooleanLiteralContext) IsBooleanLiteralContext()
- func (s *BooleanLiteralContext) TRUE() antlr.TerminalNode
- func (s *BooleanLiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallByContentContext
- func (s *CallByContentContext) ADDRESS() antlr.TerminalNode
- func (s *CallByContentContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallByContentContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallByContentContext) GetParser() antlr.Parser
- func (s *CallByContentContext) GetRuleContext() antlr.RuleContext
- func (s *CallByContentContext) Identifier() IIdentifierContext
- func (*CallByContentContext) IsCallByContentContext()
- func (s *CallByContentContext) LENGTH() antlr.TerminalNode
- func (s *CallByContentContext) Literal() ILiteralContext
- func (s *CallByContentContext) OF() antlr.TerminalNode
- func (s *CallByContentContext) OMITTED() antlr.TerminalNode
- func (s *CallByContentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallByContentPhraseContext
- func (s *CallByContentPhraseContext) AllCallByContent() []ICallByContentContext
- func (s *CallByContentPhraseContext) BY() antlr.TerminalNode
- func (s *CallByContentPhraseContext) CONTENT() antlr.TerminalNode
- func (s *CallByContentPhraseContext) CallByContent(i int) ICallByContentContext
- func (s *CallByContentPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallByContentPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallByContentPhraseContext) GetParser() antlr.Parser
- func (s *CallByContentPhraseContext) GetRuleContext() antlr.RuleContext
- func (*CallByContentPhraseContext) IsCallByContentPhraseContext()
- func (s *CallByContentPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallByReferenceContext
- func (s *CallByReferenceContext) ADDRESS() antlr.TerminalNode
- func (s *CallByReferenceContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallByReferenceContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallByReferenceContext) FileName() IFileNameContext
- func (s *CallByReferenceContext) GetParser() antlr.Parser
- func (s *CallByReferenceContext) GetRuleContext() antlr.RuleContext
- func (s *CallByReferenceContext) INTEGER() antlr.TerminalNode
- func (s *CallByReferenceContext) Identifier() IIdentifierContext
- func (*CallByReferenceContext) IsCallByReferenceContext()
- func (s *CallByReferenceContext) Literal() ILiteralContext
- func (s *CallByReferenceContext) OF() antlr.TerminalNode
- func (s *CallByReferenceContext) OMITTED() antlr.TerminalNode
- func (s *CallByReferenceContext) STRING() antlr.TerminalNode
- func (s *CallByReferenceContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallByReferencePhraseContext
- func (s *CallByReferencePhraseContext) AllCallByReference() []ICallByReferenceContext
- func (s *CallByReferencePhraseContext) BY() antlr.TerminalNode
- func (s *CallByReferencePhraseContext) CallByReference(i int) ICallByReferenceContext
- func (s *CallByReferencePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallByReferencePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallByReferencePhraseContext) GetParser() antlr.Parser
- func (s *CallByReferencePhraseContext) GetRuleContext() antlr.RuleContext
- func (*CallByReferencePhraseContext) IsCallByReferencePhraseContext()
- func (s *CallByReferencePhraseContext) REFERENCE() antlr.TerminalNode
- func (s *CallByReferencePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallByValueContext
- func (s *CallByValueContext) ADDRESS() antlr.TerminalNode
- func (s *CallByValueContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallByValueContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallByValueContext) GetParser() antlr.Parser
- func (s *CallByValueContext) GetRuleContext() antlr.RuleContext
- func (s *CallByValueContext) Identifier() IIdentifierContext
- func (*CallByValueContext) IsCallByValueContext()
- func (s *CallByValueContext) LENGTH() antlr.TerminalNode
- func (s *CallByValueContext) Literal() ILiteralContext
- func (s *CallByValueContext) OF() antlr.TerminalNode
- func (s *CallByValueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallByValuePhraseContext
- func (s *CallByValuePhraseContext) AllCallByValue() []ICallByValueContext
- func (s *CallByValuePhraseContext) BY() antlr.TerminalNode
- func (s *CallByValuePhraseContext) CallByValue(i int) ICallByValueContext
- func (s *CallByValuePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallByValuePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallByValuePhraseContext) GetParser() antlr.Parser
- func (s *CallByValuePhraseContext) GetRuleContext() antlr.RuleContext
- func (*CallByValuePhraseContext) IsCallByValuePhraseContext()
- func (s *CallByValuePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *CallByValuePhraseContext) VALUE() antlr.TerminalNode
- type CallGivingPhraseContext
- func (s *CallGivingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallGivingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallGivingPhraseContext) GIVING() antlr.TerminalNode
- func (s *CallGivingPhraseContext) GetParser() antlr.Parser
- func (s *CallGivingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *CallGivingPhraseContext) Identifier() IIdentifierContext
- func (*CallGivingPhraseContext) IsCallGivingPhraseContext()
- func (s *CallGivingPhraseContext) RETURNING() antlr.TerminalNode
- func (s *CallGivingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallStatementContext
- func (s *CallStatementContext) CALL() antlr.TerminalNode
- func (s *CallStatementContext) CallGivingPhrase() ICallGivingPhraseContext
- func (s *CallStatementContext) CallUsingPhrase() ICallUsingPhraseContext
- func (s *CallStatementContext) END_CALL() antlr.TerminalNode
- func (s *CallStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallStatementContext) GetParser() antlr.Parser
- func (s *CallStatementContext) GetRuleContext() antlr.RuleContext
- func (s *CallStatementContext) Identifier() IIdentifierContext
- func (*CallStatementContext) IsCallStatementContext()
- func (s *CallStatementContext) Literal() ILiteralContext
- func (s *CallStatementContext) NotOnExceptionClause() INotOnExceptionClauseContext
- func (s *CallStatementContext) OnExceptionClause() IOnExceptionClauseContext
- func (s *CallStatementContext) OnOverflowPhrase() IOnOverflowPhraseContext
- func (s *CallStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallUsingParameterContext
- func (s *CallUsingParameterContext) CallByContentPhrase() ICallByContentPhraseContext
- func (s *CallUsingParameterContext) CallByReferencePhrase() ICallByReferencePhraseContext
- func (s *CallUsingParameterContext) CallByValuePhrase() ICallByValuePhraseContext
- func (s *CallUsingParameterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallUsingParameterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallUsingParameterContext) GetParser() antlr.Parser
- func (s *CallUsingParameterContext) GetRuleContext() antlr.RuleContext
- func (*CallUsingParameterContext) IsCallUsingParameterContext()
- func (s *CallUsingParameterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CallUsingPhraseContext
- func (s *CallUsingPhraseContext) AllCallUsingParameter() []ICallUsingParameterContext
- func (s *CallUsingPhraseContext) CallUsingParameter(i int) ICallUsingParameterContext
- func (s *CallUsingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CallUsingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CallUsingPhraseContext) GetParser() antlr.Parser
- func (s *CallUsingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*CallUsingPhraseContext) IsCallUsingPhraseContext()
- func (s *CallUsingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *CallUsingPhraseContext) USING() antlr.TerminalNode
- type CancelCallContext
- func (s *CancelCallContext) BYFUNCTION() antlr.TerminalNode
- func (s *CancelCallContext) BYTITLE() antlr.TerminalNode
- func (s *CancelCallContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CancelCallContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CancelCallContext) GetParser() antlr.Parser
- func (s *CancelCallContext) GetRuleContext() antlr.RuleContext
- func (s *CancelCallContext) Identifier() IIdentifierContext
- func (*CancelCallContext) IsCancelCallContext()
- func (s *CancelCallContext) LibraryName() ILibraryNameContext
- func (s *CancelCallContext) Literal() ILiteralContext
- func (s *CancelCallContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CancelStatementContext
- func (s *CancelStatementContext) AllCancelCall() []ICancelCallContext
- func (s *CancelStatementContext) CANCEL() antlr.TerminalNode
- func (s *CancelStatementContext) CancelCall(i int) ICancelCallContext
- func (s *CancelStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CancelStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CancelStatementContext) GetParser() antlr.Parser
- func (s *CancelStatementContext) GetRuleContext() antlr.RuleContext
- func (*CancelStatementContext) IsCancelStatementContext()
- func (s *CancelStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CdNameContext
- func (s *CdNameContext) CobolWord() ICobolWordContext
- func (s *CdNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CdNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CdNameContext) GetParser() antlr.Parser
- func (s *CdNameContext) GetRuleContext() antlr.RuleContext
- func (*CdNameContext) IsCdNameContext()
- func (s *CdNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ChannelClauseContext
- func (s *ChannelClauseContext) CHANNEL() antlr.TerminalNode
- func (s *ChannelClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ChannelClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ChannelClauseContext) GetParser() antlr.Parser
- func (s *ChannelClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ChannelClauseContext) IS() antlr.TerminalNode
- func (s *ChannelClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ChannelClauseContext) IsChannelClauseContext()
- func (s *ChannelClauseContext) MnemonicName() IMnemonicNameContext
- func (s *ChannelClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CharacterPositionContext
- func (s *CharacterPositionContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *CharacterPositionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CharacterPositionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CharacterPositionContext) GetParser() antlr.Parser
- func (s *CharacterPositionContext) GetRuleContext() antlr.RuleContext
- func (*CharacterPositionContext) IsCharacterPositionContext()
- func (s *CharacterPositionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CharacterSetClauseContext
- func (s *CharacterSetClauseContext) CHARACTER() antlr.TerminalNode
- func (s *CharacterSetClauseContext) DOT_FS() antlr.TerminalNode
- func (s *CharacterSetClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CharacterSetClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CharacterSetClauseContext) GetParser() antlr.Parser
- func (s *CharacterSetClauseContext) GetRuleContext() antlr.RuleContext
- func (*CharacterSetClauseContext) IsCharacterSetClauseContext()
- func (s *CharacterSetClauseContext) SET() antlr.TerminalNode
- func (s *CharacterSetClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CicsDfhRespLiteralContext
- func (s *CicsDfhRespLiteralContext) CobolWord() ICobolWordContext
- func (s *CicsDfhRespLiteralContext) DFHRESP() antlr.TerminalNode
- func (s *CicsDfhRespLiteralContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CicsDfhRespLiteralContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CicsDfhRespLiteralContext) GetParser() antlr.Parser
- func (s *CicsDfhRespLiteralContext) GetRuleContext() antlr.RuleContext
- func (*CicsDfhRespLiteralContext) IsCicsDfhRespLiteralContext()
- func (s *CicsDfhRespLiteralContext) LPARENCHAR() antlr.TerminalNode
- func (s *CicsDfhRespLiteralContext) Literal() ILiteralContext
- func (s *CicsDfhRespLiteralContext) RPARENCHAR() antlr.TerminalNode
- func (s *CicsDfhRespLiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CicsDfhValueLiteralContext
- func (s *CicsDfhValueLiteralContext) CobolWord() ICobolWordContext
- func (s *CicsDfhValueLiteralContext) DFHVALUE() antlr.TerminalNode
- func (s *CicsDfhValueLiteralContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CicsDfhValueLiteralContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CicsDfhValueLiteralContext) GetParser() antlr.Parser
- func (s *CicsDfhValueLiteralContext) GetRuleContext() antlr.RuleContext
- func (*CicsDfhValueLiteralContext) IsCicsDfhValueLiteralContext()
- func (s *CicsDfhValueLiteralContext) LPARENCHAR() antlr.TerminalNode
- func (s *CicsDfhValueLiteralContext) Literal() ILiteralContext
- func (s *CicsDfhValueLiteralContext) RPARENCHAR() antlr.TerminalNode
- func (s *CicsDfhValueLiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClassClauseContext
- func (s *ClassClauseContext) ALPHANUMERIC() antlr.TerminalNode
- func (s *ClassClauseContext) AllClassClauseThrough() []IClassClauseThroughContext
- func (s *ClassClauseContext) CLASS() antlr.TerminalNode
- func (s *ClassClauseContext) ClassClauseThrough(i int) IClassClauseThroughContext
- func (s *ClassClauseContext) ClassName() IClassNameContext
- func (s *ClassClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseContext) FOR() antlr.TerminalNode
- func (s *ClassClauseContext) GetParser() antlr.Parser
- func (s *ClassClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ClassClauseContext) IS() antlr.TerminalNode
- func (*ClassClauseContext) IsClassClauseContext()
- func (s *ClassClauseContext) NATIONAL() antlr.TerminalNode
- func (s *ClassClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClassClauseFromContext
- func (s *ClassClauseFromContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseFromContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseFromContext) GetParser() antlr.Parser
- func (s *ClassClauseFromContext) GetRuleContext() antlr.RuleContext
- func (s *ClassClauseFromContext) Identifier() IIdentifierContext
- func (*ClassClauseFromContext) IsClassClauseFromContext()
- func (s *ClassClauseFromContext) Literal() ILiteralContext
- func (s *ClassClauseFromContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClassClauseThroughContext
- func (s *ClassClauseThroughContext) ClassClauseFrom() IClassClauseFromContext
- func (s *ClassClauseThroughContext) ClassClauseTo() IClassClauseToContext
- func (s *ClassClauseThroughContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseThroughContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseThroughContext) GetParser() antlr.Parser
- func (s *ClassClauseThroughContext) GetRuleContext() antlr.RuleContext
- func (*ClassClauseThroughContext) IsClassClauseThroughContext()
- func (s *ClassClauseThroughContext) THROUGH() antlr.TerminalNode
- func (s *ClassClauseThroughContext) THRU() antlr.TerminalNode
- func (s *ClassClauseThroughContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClassClauseToContext
- func (s *ClassClauseToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClassClauseToContext) GetParser() antlr.Parser
- func (s *ClassClauseToContext) GetRuleContext() antlr.RuleContext
- func (s *ClassClauseToContext) Identifier() IIdentifierContext
- func (*ClassClauseToContext) IsClassClauseToContext()
- func (s *ClassClauseToContext) Literal() ILiteralContext
- func (s *ClassClauseToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClassConditionContext
- func (s *ClassConditionContext) ALPHABETIC() antlr.TerminalNode
- func (s *ClassConditionContext) ALPHABETIC_LOWER() antlr.TerminalNode
- func (s *ClassConditionContext) ALPHABETIC_UPPER() antlr.TerminalNode
- func (s *ClassConditionContext) ClassName() IClassNameContext
- func (s *ClassConditionContext) DBCS() antlr.TerminalNode
- func (s *ClassConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClassConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClassConditionContext) GetParser() antlr.Parser
- func (s *ClassConditionContext) GetRuleContext() antlr.RuleContext
- func (s *ClassConditionContext) IS() antlr.TerminalNode
- func (s *ClassConditionContext) Identifier() IIdentifierContext
- func (*ClassConditionContext) IsClassConditionContext()
- func (s *ClassConditionContext) KANJI() antlr.TerminalNode
- func (s *ClassConditionContext) NOT() antlr.TerminalNode
- func (s *ClassConditionContext) NUMERIC() antlr.TerminalNode
- func (s *ClassConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClassNameContext
- func (s *ClassNameContext) CobolWord() ICobolWordContext
- func (s *ClassNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClassNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClassNameContext) GetParser() antlr.Parser
- func (s *ClassNameContext) GetRuleContext() antlr.RuleContext
- func (*ClassNameContext) IsClassNameContext()
- func (s *ClassNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CloseFileContext
- func (s *CloseFileContext) ClosePortFileIOStatement() IClosePortFileIOStatementContext
- func (s *CloseFileContext) CloseReelUnitStatement() ICloseReelUnitStatementContext
- func (s *CloseFileContext) CloseRelativeStatement() ICloseRelativeStatementContext
- func (s *CloseFileContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CloseFileContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CloseFileContext) FileName() IFileNameContext
- func (s *CloseFileContext) GetParser() antlr.Parser
- func (s *CloseFileContext) GetRuleContext() antlr.RuleContext
- func (*CloseFileContext) IsCloseFileContext()
- func (s *CloseFileContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClosePortFileIOStatementContext
- func (s *ClosePortFileIOStatementContext) AllClosePortFileIOUsing() []IClosePortFileIOUsingContext
- func (s *ClosePortFileIOStatementContext) ClosePortFileIOUsing(i int) IClosePortFileIOUsingContext
- func (s *ClosePortFileIOStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOStatementContext) GetParser() antlr.Parser
- func (s *ClosePortFileIOStatementContext) GetRuleContext() antlr.RuleContext
- func (*ClosePortFileIOStatementContext) IsClosePortFileIOStatementContext()
- func (s *ClosePortFileIOStatementContext) NO() antlr.TerminalNode
- func (s *ClosePortFileIOStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ClosePortFileIOStatementContext) USING() antlr.TerminalNode
- func (s *ClosePortFileIOStatementContext) WAIT() antlr.TerminalNode
- func (s *ClosePortFileIOStatementContext) WITH() antlr.TerminalNode
- type ClosePortFileIOUsingAssociatedDataContext
- func (s *ClosePortFileIOUsingAssociatedDataContext) ASSOCIATED_DATA() antlr.TerminalNode
- func (s *ClosePortFileIOUsingAssociatedDataContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingAssociatedDataContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingAssociatedDataContext) GetParser() antlr.Parser
- func (s *ClosePortFileIOUsingAssociatedDataContext) GetRuleContext() antlr.RuleContext
- func (s *ClosePortFileIOUsingAssociatedDataContext) Identifier() IIdentifierContext
- func (s *ClosePortFileIOUsingAssociatedDataContext) IntegerLiteral() IIntegerLiteralContext
- func (*ClosePortFileIOUsingAssociatedDataContext) IsClosePortFileIOUsingAssociatedDataContext()
- func (s *ClosePortFileIOUsingAssociatedDataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClosePortFileIOUsingAssociatedDataLengthContext
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) ASSOCIATED_DATA_LENGTH() antlr.TerminalNode
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) GetParser() antlr.Parser
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) GetRuleContext() antlr.RuleContext
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) Identifier() IIdentifierContext
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) IntegerLiteral() IIntegerLiteralContext
- func (*ClosePortFileIOUsingAssociatedDataLengthContext) IsClosePortFileIOUsingAssociatedDataLengthContext()
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) OF() antlr.TerminalNode
- func (s *ClosePortFileIOUsingAssociatedDataLengthContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClosePortFileIOUsingCloseDispositionContext
- func (s *ClosePortFileIOUsingCloseDispositionContext) ABORT() antlr.TerminalNode
- func (s *ClosePortFileIOUsingCloseDispositionContext) CLOSE_DISPOSITION() antlr.TerminalNode
- func (s *ClosePortFileIOUsingCloseDispositionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingCloseDispositionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingCloseDispositionContext) GetParser() antlr.Parser
- func (s *ClosePortFileIOUsingCloseDispositionContext) GetRuleContext() antlr.RuleContext
- func (*ClosePortFileIOUsingCloseDispositionContext) IsClosePortFileIOUsingCloseDispositionContext()
- func (s *ClosePortFileIOUsingCloseDispositionContext) OF() antlr.TerminalNode
- func (s *ClosePortFileIOUsingCloseDispositionContext) ORDERLY() antlr.TerminalNode
- func (s *ClosePortFileIOUsingCloseDispositionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ClosePortFileIOUsingContext
- func (s *ClosePortFileIOUsingContext) ClosePortFileIOUsingAssociatedData() IClosePortFileIOUsingAssociatedDataContext
- func (s *ClosePortFileIOUsingContext) ClosePortFileIOUsingAssociatedDataLength() IClosePortFileIOUsingAssociatedDataLengthContext
- func (s *ClosePortFileIOUsingContext) ClosePortFileIOUsingCloseDisposition() IClosePortFileIOUsingCloseDispositionContext
- func (s *ClosePortFileIOUsingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ClosePortFileIOUsingContext) GetParser() antlr.Parser
- func (s *ClosePortFileIOUsingContext) GetRuleContext() antlr.RuleContext
- func (*ClosePortFileIOUsingContext) IsClosePortFileIOUsingContext()
- func (s *ClosePortFileIOUsingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CloseReelUnitStatementContext
- func (s *CloseReelUnitStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CloseReelUnitStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CloseReelUnitStatementContext) FOR() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) GetParser() antlr.Parser
- func (s *CloseReelUnitStatementContext) GetRuleContext() antlr.RuleContext
- func (*CloseReelUnitStatementContext) IsCloseReelUnitStatementContext()
- func (s *CloseReelUnitStatementContext) LOCK() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) NO() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) REEL() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) REMOVAL() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) REWIND() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *CloseReelUnitStatementContext) UNIT() antlr.TerminalNode
- func (s *CloseReelUnitStatementContext) WITH() antlr.TerminalNode
- type CloseRelativeStatementContext
- func (s *CloseRelativeStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CloseRelativeStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CloseRelativeStatementContext) GetParser() antlr.Parser
- func (s *CloseRelativeStatementContext) GetRuleContext() antlr.RuleContext
- func (*CloseRelativeStatementContext) IsCloseRelativeStatementContext()
- func (s *CloseRelativeStatementContext) LOCK() antlr.TerminalNode
- func (s *CloseRelativeStatementContext) NO() antlr.TerminalNode
- func (s *CloseRelativeStatementContext) REWIND() antlr.TerminalNode
- func (s *CloseRelativeStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *CloseRelativeStatementContext) WITH() antlr.TerminalNode
- type CloseStatementContext
- func (s *CloseStatementContext) AllCloseFile() []ICloseFileContext
- func (s *CloseStatementContext) CLOSE() antlr.TerminalNode
- func (s *CloseStatementContext) CloseFile(i int) ICloseFileContext
- func (s *CloseStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CloseStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CloseStatementContext) GetParser() antlr.Parser
- func (s *CloseStatementContext) GetRuleContext() antlr.RuleContext
- func (*CloseStatementContext) IsCloseStatementContext()
- func (s *CloseStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type Cobol85Lexer
- type Cobol85Listener
- type Cobol85Parser
- func (p *Cobol85Parser) Abbreviation() (localctx IAbbreviationContext)
- func (p *Cobol85Parser) AcceptFromDateStatement() (localctx IAcceptFromDateStatementContext)
- func (p *Cobol85Parser) AcceptFromEscapeKeyStatement() (localctx IAcceptFromEscapeKeyStatementContext)
- func (p *Cobol85Parser) AcceptFromMnemonicStatement() (localctx IAcceptFromMnemonicStatementContext)
- func (p *Cobol85Parser) AcceptMessageCountStatement() (localctx IAcceptMessageCountStatementContext)
- func (p *Cobol85Parser) AcceptStatement() (localctx IAcceptStatementContext)
- func (p *Cobol85Parser) AccessModeClause() (localctx IAccessModeClauseContext)
- func (p *Cobol85Parser) AddCorrespondingStatement() (localctx IAddCorrespondingStatementContext)
- func (p *Cobol85Parser) AddFrom() (localctx IAddFromContext)
- func (p *Cobol85Parser) AddGiving() (localctx IAddGivingContext)
- func (p *Cobol85Parser) AddStatement() (localctx IAddStatementContext)
- func (p *Cobol85Parser) AddTo() (localctx IAddToContext)
- func (p *Cobol85Parser) AddToGiving() (localctx IAddToGivingContext)
- func (p *Cobol85Parser) AddToGivingStatement() (localctx IAddToGivingStatementContext)
- func (p *Cobol85Parser) AddToStatement() (localctx IAddToStatementContext)
- func (p *Cobol85Parser) AlphabetAlso() (localctx IAlphabetAlsoContext)
- func (p *Cobol85Parser) AlphabetClause() (localctx IAlphabetClauseContext)
- func (p *Cobol85Parser) AlphabetClauseFormat1() (localctx IAlphabetClauseFormat1Context)
- func (p *Cobol85Parser) AlphabetClauseFormat2() (localctx IAlphabetClauseFormat2Context)
- func (p *Cobol85Parser) AlphabetLiterals() (localctx IAlphabetLiteralsContext)
- func (p *Cobol85Parser) AlphabetName() (localctx IAlphabetNameContext)
- func (p *Cobol85Parser) AlphabetThrough() (localctx IAlphabetThroughContext)
- func (p *Cobol85Parser) AlterProceedTo() (localctx IAlterProceedToContext)
- func (p *Cobol85Parser) AlterStatement() (localctx IAlterStatementContext)
- func (p *Cobol85Parser) AlteredGoTo() (localctx IAlteredGoToContext)
- func (p *Cobol85Parser) AlternateRecordKeyClause() (localctx IAlternateRecordKeyClauseContext)
- func (p *Cobol85Parser) AndOrCondition() (localctx IAndOrConditionContext)
- func (p *Cobol85Parser) Argument() (localctx IArgumentContext)
- func (p *Cobol85Parser) ArithmeticExpression() (localctx IArithmeticExpressionContext)
- func (p *Cobol85Parser) AssignClause() (localctx IAssignClauseContext)
- func (p *Cobol85Parser) AssignmentName() (localctx IAssignmentNameContext)
- func (p *Cobol85Parser) AtEndPhrase() (localctx IAtEndPhraseContext)
- func (p *Cobol85Parser) AuthorParagraph() (localctx IAuthorParagraphContext)
- func (p *Cobol85Parser) Basis() (localctx IBasisContext)
- func (p *Cobol85Parser) BasisName() (localctx IBasisNameContext)
- func (p *Cobol85Parser) BlockContainsClause() (localctx IBlockContainsClauseContext)
- func (p *Cobol85Parser) BlockContainsTo() (localctx IBlockContainsToContext)
- func (p *Cobol85Parser) BooleanLiteral() (localctx IBooleanLiteralContext)
- func (p *Cobol85Parser) CallByContent() (localctx ICallByContentContext)
- func (p *Cobol85Parser) CallByContentPhrase() (localctx ICallByContentPhraseContext)
- func (p *Cobol85Parser) CallByReference() (localctx ICallByReferenceContext)
- func (p *Cobol85Parser) CallByReferencePhrase() (localctx ICallByReferencePhraseContext)
- func (p *Cobol85Parser) CallByValue() (localctx ICallByValueContext)
- func (p *Cobol85Parser) CallByValuePhrase() (localctx ICallByValuePhraseContext)
- func (p *Cobol85Parser) CallGivingPhrase() (localctx ICallGivingPhraseContext)
- func (p *Cobol85Parser) CallStatement() (localctx ICallStatementContext)
- func (p *Cobol85Parser) CallUsingParameter() (localctx ICallUsingParameterContext)
- func (p *Cobol85Parser) CallUsingPhrase() (localctx ICallUsingPhraseContext)
- func (p *Cobol85Parser) CancelCall() (localctx ICancelCallContext)
- func (p *Cobol85Parser) CancelStatement() (localctx ICancelStatementContext)
- func (p *Cobol85Parser) CdName() (localctx ICdNameContext)
- func (p *Cobol85Parser) ChannelClause() (localctx IChannelClauseContext)
- func (p *Cobol85Parser) CharacterPosition() (localctx ICharacterPositionContext)
- func (p *Cobol85Parser) CharacterSetClause() (localctx ICharacterSetClauseContext)
- func (p *Cobol85Parser) CicsDfhRespLiteral() (localctx ICicsDfhRespLiteralContext)
- func (p *Cobol85Parser) CicsDfhValueLiteral() (localctx ICicsDfhValueLiteralContext)
- func (p *Cobol85Parser) ClassClause() (localctx IClassClauseContext)
- func (p *Cobol85Parser) ClassClauseFrom() (localctx IClassClauseFromContext)
- func (p *Cobol85Parser) ClassClauseThrough() (localctx IClassClauseThroughContext)
- func (p *Cobol85Parser) ClassClauseTo() (localctx IClassClauseToContext)
- func (p *Cobol85Parser) ClassCondition() (localctx IClassConditionContext)
- func (p *Cobol85Parser) ClassName() (localctx IClassNameContext)
- func (p *Cobol85Parser) CloseFile() (localctx ICloseFileContext)
- func (p *Cobol85Parser) ClosePortFileIOStatement() (localctx IClosePortFileIOStatementContext)
- func (p *Cobol85Parser) ClosePortFileIOUsing() (localctx IClosePortFileIOUsingContext)
- func (p *Cobol85Parser) ClosePortFileIOUsingAssociatedData() (localctx IClosePortFileIOUsingAssociatedDataContext)
- func (p *Cobol85Parser) ClosePortFileIOUsingAssociatedDataLength() (localctx IClosePortFileIOUsingAssociatedDataLengthContext)
- func (p *Cobol85Parser) ClosePortFileIOUsingCloseDisposition() (localctx IClosePortFileIOUsingCloseDispositionContext)
- func (p *Cobol85Parser) CloseReelUnitStatement() (localctx ICloseReelUnitStatementContext)
- func (p *Cobol85Parser) CloseRelativeStatement() (localctx ICloseRelativeStatementContext)
- func (p *Cobol85Parser) CloseStatement() (localctx ICloseStatementContext)
- func (p *Cobol85Parser) CobolWord() (localctx ICobolWordContext)
- func (p *Cobol85Parser) CodeSetClause() (localctx ICodeSetClauseContext)
- func (p *Cobol85Parser) CollatingSequenceClause() (localctx ICollatingSequenceClauseContext)
- func (p *Cobol85Parser) CollatingSequenceClauseAlphanumeric() (localctx ICollatingSequenceClauseAlphanumericContext)
- func (p *Cobol85Parser) CollatingSequenceClauseNational() (localctx ICollatingSequenceClauseNationalContext)
- func (p *Cobol85Parser) CombinableCondition() (localctx ICombinableConditionContext)
- func (p *Cobol85Parser) CommentEntry() (localctx ICommentEntryContext)
- func (p *Cobol85Parser) CommitmentControlClause() (localctx ICommitmentControlClauseContext)
- func (p *Cobol85Parser) CommunicationDescriptionEntry() (localctx ICommunicationDescriptionEntryContext)
- func (p *Cobol85Parser) CommunicationDescriptionEntryFormat1() (localctx ICommunicationDescriptionEntryFormat1Context)
- func (p *Cobol85Parser) CommunicationDescriptionEntryFormat2() (localctx ICommunicationDescriptionEntryFormat2Context)
- func (p *Cobol85Parser) CommunicationDescriptionEntryFormat3() (localctx ICommunicationDescriptionEntryFormat3Context)
- func (p *Cobol85Parser) CommunicationSection() (localctx ICommunicationSectionContext)
- func (p *Cobol85Parser) CompilationUnit() (localctx ICompilationUnitContext)
- func (p *Cobol85Parser) ComputeStatement() (localctx IComputeStatementContext)
- func (p *Cobol85Parser) ComputeStore() (localctx IComputeStoreContext)
- func (p *Cobol85Parser) ComputerName() (localctx IComputerNameContext)
- func (p *Cobol85Parser) Condition() (localctx IConditionContext)
- func (p *Cobol85Parser) ConditionName() (localctx IConditionNameContext)
- func (p *Cobol85Parser) ConditionNameReference() (localctx IConditionNameReferenceContext)
- func (p *Cobol85Parser) ConditionNameSubscriptReference() (localctx IConditionNameSubscriptReferenceContext)
- func (p *Cobol85Parser) ConfigurationSection() (localctx IConfigurationSectionContext)
- func (p *Cobol85Parser) ConfigurationSectionParagraph() (localctx IConfigurationSectionParagraphContext)
- func (p *Cobol85Parser) ContinueStatement() (localctx IContinueStatementContext)
- func (p *Cobol85Parser) CurrencySignClause() (localctx ICurrencySignClauseContext)
- func (p *Cobol85Parser) DataAlignedClause() (localctx IDataAlignedClauseContext)
- func (p *Cobol85Parser) DataBaseSection() (localctx IDataBaseSectionContext)
- func (p *Cobol85Parser) DataBaseSectionEntry() (localctx IDataBaseSectionEntryContext)
- func (p *Cobol85Parser) DataBlankWhenZeroClause() (localctx IDataBlankWhenZeroClauseContext)
- func (p *Cobol85Parser) DataCommonOwnLocalClause() (localctx IDataCommonOwnLocalClauseContext)
- func (p *Cobol85Parser) DataDescName() (localctx IDataDescNameContext)
- func (p *Cobol85Parser) DataDescriptionEntry() (localctx IDataDescriptionEntryContext)
- func (p *Cobol85Parser) DataDescriptionEntryExecSql() (localctx IDataDescriptionEntryExecSqlContext)
- func (p *Cobol85Parser) DataDescriptionEntryFormat1() (localctx IDataDescriptionEntryFormat1Context)
- func (p *Cobol85Parser) DataDescriptionEntryFormat2() (localctx IDataDescriptionEntryFormat2Context)
- func (p *Cobol85Parser) DataDescriptionEntryFormat3() (localctx IDataDescriptionEntryFormat3Context)
- func (p *Cobol85Parser) DataDivision() (localctx IDataDivisionContext)
- func (p *Cobol85Parser) DataDivisionSection() (localctx IDataDivisionSectionContext)
- func (p *Cobol85Parser) DataExternalClause() (localctx IDataExternalClauseContext)
- func (p *Cobol85Parser) DataGlobalClause() (localctx IDataGlobalClauseContext)
- func (p *Cobol85Parser) DataIntegerStringClause() (localctx IDataIntegerStringClauseContext)
- func (p *Cobol85Parser) DataJustifiedClause() (localctx IDataJustifiedClauseContext)
- func (p *Cobol85Parser) DataName() (localctx IDataNameContext)
- func (p *Cobol85Parser) DataOccursClause() (localctx IDataOccursClauseContext)
- func (p *Cobol85Parser) DataOccursSort() (localctx IDataOccursSortContext)
- func (p *Cobol85Parser) DataOccursTo() (localctx IDataOccursToContext)
- func (p *Cobol85Parser) DataPictureClause() (localctx IDataPictureClauseContext)
- func (p *Cobol85Parser) DataReceivedByClause() (localctx IDataReceivedByClauseContext)
- func (p *Cobol85Parser) DataRecordAreaClause() (localctx IDataRecordAreaClauseContext)
- func (p *Cobol85Parser) DataRecordsClause() (localctx IDataRecordsClauseContext)
- func (p *Cobol85Parser) DataRedefinesClause() (localctx IDataRedefinesClauseContext)
- func (p *Cobol85Parser) DataRenamesClause() (localctx IDataRenamesClauseContext)
- func (p *Cobol85Parser) DataSignClause() (localctx IDataSignClauseContext)
- func (p *Cobol85Parser) DataSynchronizedClause() (localctx IDataSynchronizedClauseContext)
- func (p *Cobol85Parser) DataThreadLocalClause() (localctx IDataThreadLocalClauseContext)
- func (p *Cobol85Parser) DataTypeClause() (localctx IDataTypeClauseContext)
- func (p *Cobol85Parser) DataTypeDefClause() (localctx IDataTypeDefClauseContext)
- func (p *Cobol85Parser) DataUsageClause() (localctx IDataUsageClauseContext)
- func (p *Cobol85Parser) DataUsingClause() (localctx IDataUsingClauseContext)
- func (p *Cobol85Parser) DataValueClause() (localctx IDataValueClauseContext)
- func (p *Cobol85Parser) DataValueInterval() (localctx IDataValueIntervalContext)
- func (p *Cobol85Parser) DataValueIntervalFrom() (localctx IDataValueIntervalFromContext)
- func (p *Cobol85Parser) DataValueIntervalTo() (localctx IDataValueIntervalToContext)
- func (p *Cobol85Parser) DataWithLowerBoundsClause() (localctx IDataWithLowerBoundsClauseContext)
- func (p *Cobol85Parser) DateCompiledParagraph() (localctx IDateCompiledParagraphContext)
- func (p *Cobol85Parser) DateWrittenParagraph() (localctx IDateWrittenParagraphContext)
- func (p *Cobol85Parser) DecimalPointClause() (localctx IDecimalPointClauseContext)
- func (p *Cobol85Parser) DefaultComputationalSignClause() (localctx IDefaultComputationalSignClauseContext)
- func (p *Cobol85Parser) DefaultDisplaySignClause() (localctx IDefaultDisplaySignClauseContext)
- func (p *Cobol85Parser) DeleteStatement() (localctx IDeleteStatementContext)
- func (p *Cobol85Parser) DestinationCountClause() (localctx IDestinationCountClauseContext)
- func (p *Cobol85Parser) DestinationTableClause() (localctx IDestinationTableClauseContext)
- func (p *Cobol85Parser) DisableStatement() (localctx IDisableStatementContext)
- func (p *Cobol85Parser) DiskSizeClause() (localctx IDiskSizeClauseContext)
- func (p *Cobol85Parser) DisplayAt() (localctx IDisplayAtContext)
- func (p *Cobol85Parser) DisplayOperand() (localctx IDisplayOperandContext)
- func (p *Cobol85Parser) DisplayStatement() (localctx IDisplayStatementContext)
- func (p *Cobol85Parser) DisplayUpon() (localctx IDisplayUponContext)
- func (p *Cobol85Parser) DisplayWith() (localctx IDisplayWithContext)
- func (p *Cobol85Parser) DivideByGivingStatement() (localctx IDivideByGivingStatementContext)
- func (p *Cobol85Parser) DivideGiving() (localctx IDivideGivingContext)
- func (p *Cobol85Parser) DivideGivingPhrase() (localctx IDivideGivingPhraseContext)
- func (p *Cobol85Parser) DivideInto() (localctx IDivideIntoContext)
- func (p *Cobol85Parser) DivideIntoGivingStatement() (localctx IDivideIntoGivingStatementContext)
- func (p *Cobol85Parser) DivideIntoStatement() (localctx IDivideIntoStatementContext)
- func (p *Cobol85Parser) DivideRemainder() (localctx IDivideRemainderContext)
- func (p *Cobol85Parser) DivideStatement() (localctx IDivideStatementContext)
- func (p *Cobol85Parser) EnableStatement() (localctx IEnableStatementContext)
- func (p *Cobol85Parser) EndKeyClause() (localctx IEndKeyClauseContext)
- func (p *Cobol85Parser) EndProgramStatement() (localctx IEndProgramStatementContext)
- func (p *Cobol85Parser) EntryStatement() (localctx IEntryStatementContext)
- func (p *Cobol85Parser) EnvironmentDivision() (localctx IEnvironmentDivisionContext)
- func (p *Cobol85Parser) EnvironmentDivisionBody() (localctx IEnvironmentDivisionBodyContext)
- func (p *Cobol85Parser) EnvironmentName() (localctx IEnvironmentNameContext)
- func (p *Cobol85Parser) EnvironmentSwitchNameClause() (localctx IEnvironmentSwitchNameClauseContext)
- func (p *Cobol85Parser) EnvironmentSwitchNameSpecialNamesStatusPhrase() (localctx IEnvironmentSwitchNameSpecialNamesStatusPhraseContext)
- func (p *Cobol85Parser) ErrorKeyClause() (localctx IErrorKeyClauseContext)
- func (p *Cobol85Parser) EvaluateAlsoCondition() (localctx IEvaluateAlsoConditionContext)
- func (p *Cobol85Parser) EvaluateAlsoSelect() (localctx IEvaluateAlsoSelectContext)
- func (p *Cobol85Parser) EvaluateCondition() (localctx IEvaluateConditionContext)
- func (p *Cobol85Parser) EvaluateSelect() (localctx IEvaluateSelectContext)
- func (p *Cobol85Parser) EvaluateStatement() (localctx IEvaluateStatementContext)
- func (p *Cobol85Parser) EvaluateThrough() (localctx IEvaluateThroughContext)
- func (p *Cobol85Parser) EvaluateValue() (localctx IEvaluateValueContext)
- func (p *Cobol85Parser) EvaluateWhen() (localctx IEvaluateWhenContext)
- func (p *Cobol85Parser) EvaluateWhenOther() (localctx IEvaluateWhenOtherContext)
- func (p *Cobol85Parser) EvaluateWhenPhrase() (localctx IEvaluateWhenPhraseContext)
- func (p *Cobol85Parser) ExecCicsStatement() (localctx IExecCicsStatementContext)
- func (p *Cobol85Parser) ExecSqlImsStatement() (localctx IExecSqlImsStatementContext)
- func (p *Cobol85Parser) ExecSqlStatement() (localctx IExecSqlStatementContext)
- func (p *Cobol85Parser) ExhibitOperand() (localctx IExhibitOperandContext)
- func (p *Cobol85Parser) ExhibitStatement() (localctx IExhibitStatementContext)
- func (p *Cobol85Parser) ExitStatement() (localctx IExitStatementContext)
- func (p *Cobol85Parser) ExternalClause() (localctx IExternalClauseContext)
- func (p *Cobol85Parser) FigurativeConstant() (localctx IFigurativeConstantContext)
- func (p *Cobol85Parser) FileControlClause() (localctx IFileControlClauseContext)
- func (p *Cobol85Parser) FileControlEntry() (localctx IFileControlEntryContext)
- func (p *Cobol85Parser) FileControlParagraph() (localctx IFileControlParagraphContext)
- func (p *Cobol85Parser) FileDescriptionEntry() (localctx IFileDescriptionEntryContext)
- func (p *Cobol85Parser) FileDescriptionEntryClause() (localctx IFileDescriptionEntryClauseContext)
- func (p *Cobol85Parser) FileName() (localctx IFileNameContext)
- func (p *Cobol85Parser) FileSection() (localctx IFileSectionContext)
- func (p *Cobol85Parser) FileStatusClause() (localctx IFileStatusClauseContext)
- func (p *Cobol85Parser) FunctionCall() (localctx IFunctionCallContext)
- func (p *Cobol85Parser) FunctionName() (localctx IFunctionNameContext)
- func (p *Cobol85Parser) GenerateStatement() (localctx IGenerateStatementContext)
- func (p *Cobol85Parser) GlobalClause() (localctx IGlobalClauseContext)
- func (p *Cobol85Parser) GoToDependingOnStatement() (localctx IGoToDependingOnStatementContext)
- func (p *Cobol85Parser) GoToStatement() (localctx IGoToStatementContext)
- func (p *Cobol85Parser) GoToStatementSimple() (localctx IGoToStatementSimpleContext)
- func (p *Cobol85Parser) GobackStatement() (localctx IGobackStatementContext)
- func (p *Cobol85Parser) IdentificationDivision() (localctx IIdentificationDivisionContext)
- func (p *Cobol85Parser) IdentificationDivisionBody() (localctx IIdentificationDivisionBodyContext)
- func (p *Cobol85Parser) Identifier() (localctx IIdentifierContext)
- func (p *Cobol85Parser) IfElse() (localctx IIfElseContext)
- func (p *Cobol85Parser) IfStatement() (localctx IIfStatementContext)
- func (p *Cobol85Parser) IfThen() (localctx IIfThenContext)
- func (p *Cobol85Parser) InData() (localctx IInDataContext)
- func (p *Cobol85Parser) InFile() (localctx IInFileContext)
- func (p *Cobol85Parser) InLibrary() (localctx IInLibraryContext)
- func (p *Cobol85Parser) InMnemonic() (localctx IInMnemonicContext)
- func (p *Cobol85Parser) InSection() (localctx IInSectionContext)
- func (p *Cobol85Parser) InTable() (localctx IInTableContext)
- func (p *Cobol85Parser) IndexName() (localctx IIndexNameContext)
- func (p *Cobol85Parser) InitializeReplacingBy() (localctx IInitializeReplacingByContext)
- func (p *Cobol85Parser) InitializeReplacingPhrase() (localctx IInitializeReplacingPhraseContext)
- func (p *Cobol85Parser) InitializeStatement() (localctx IInitializeStatementContext)
- func (p *Cobol85Parser) InitiateStatement() (localctx IInitiateStatementContext)
- func (p *Cobol85Parser) InputOutputSection() (localctx IInputOutputSectionContext)
- func (p *Cobol85Parser) InputOutputSectionParagraph() (localctx IInputOutputSectionParagraphContext)
- func (p *Cobol85Parser) InspectAllLeading() (localctx IInspectAllLeadingContext)
- func (p *Cobol85Parser) InspectAllLeadings() (localctx IInspectAllLeadingsContext)
- func (p *Cobol85Parser) InspectBeforeAfter() (localctx IInspectBeforeAfterContext)
- func (p *Cobol85Parser) InspectBy() (localctx IInspectByContext)
- func (p *Cobol85Parser) InspectCharacters() (localctx IInspectCharactersContext)
- func (p *Cobol85Parser) InspectConvertingPhrase() (localctx IInspectConvertingPhraseContext)
- func (p *Cobol85Parser) InspectFor() (localctx IInspectForContext)
- func (p *Cobol85Parser) InspectReplacingAllLeading() (localctx IInspectReplacingAllLeadingContext)
- func (p *Cobol85Parser) InspectReplacingAllLeadings() (localctx IInspectReplacingAllLeadingsContext)
- func (p *Cobol85Parser) InspectReplacingCharacters() (localctx IInspectReplacingCharactersContext)
- func (p *Cobol85Parser) InspectReplacingPhrase() (localctx IInspectReplacingPhraseContext)
- func (p *Cobol85Parser) InspectStatement() (localctx IInspectStatementContext)
- func (p *Cobol85Parser) InspectTallyingPhrase() (localctx IInspectTallyingPhraseContext)
- func (p *Cobol85Parser) InspectTallyingReplacingPhrase() (localctx IInspectTallyingReplacingPhraseContext)
- func (p *Cobol85Parser) InspectTo() (localctx IInspectToContext)
- func (p *Cobol85Parser) InstallationParagraph() (localctx IInstallationParagraphContext)
- func (p *Cobol85Parser) IntegerLiteral() (localctx IIntegerLiteralContext)
- func (p *Cobol85Parser) InvalidKeyPhrase() (localctx IInvalidKeyPhraseContext)
- func (p *Cobol85Parser) IoControlClause() (localctx IIoControlClauseContext)
- func (p *Cobol85Parser) IoControlParagraph() (localctx IIoControlParagraphContext)
- func (p *Cobol85Parser) LabelRecordsClause() (localctx ILabelRecordsClauseContext)
- func (p *Cobol85Parser) LanguageName() (localctx ILanguageNameContext)
- func (p *Cobol85Parser) Length() (localctx ILengthContext)
- func (p *Cobol85Parser) LibraryAttributeClauseFormat1() (localctx ILibraryAttributeClauseFormat1Context)
- func (p *Cobol85Parser) LibraryAttributeClauseFormat2() (localctx ILibraryAttributeClauseFormat2Context)
- func (p *Cobol85Parser) LibraryAttributeFunction() (localctx ILibraryAttributeFunctionContext)
- func (p *Cobol85Parser) LibraryAttributeParameter() (localctx ILibraryAttributeParameterContext)
- func (p *Cobol85Parser) LibraryAttributeTitle() (localctx ILibraryAttributeTitleContext)
- func (p *Cobol85Parser) LibraryDescriptionEntry() (localctx ILibraryDescriptionEntryContext)
- func (p *Cobol85Parser) LibraryDescriptionEntryFormat1() (localctx ILibraryDescriptionEntryFormat1Context)
- func (p *Cobol85Parser) LibraryDescriptionEntryFormat2() (localctx ILibraryDescriptionEntryFormat2Context)
- func (p *Cobol85Parser) LibraryEntryProcedureClauseFormat1() (localctx ILibraryEntryProcedureClauseFormat1Context)
- func (p *Cobol85Parser) LibraryEntryProcedureClauseFormat2() (localctx ILibraryEntryProcedureClauseFormat2Context)
- func (p *Cobol85Parser) LibraryEntryProcedureForClause() (localctx ILibraryEntryProcedureForClauseContext)
- func (p *Cobol85Parser) LibraryEntryProcedureGivingClause() (localctx ILibraryEntryProcedureGivingClauseContext)
- func (p *Cobol85Parser) LibraryEntryProcedureUsingClause() (localctx ILibraryEntryProcedureUsingClauseContext)
- func (p *Cobol85Parser) LibraryEntryProcedureUsingName() (localctx ILibraryEntryProcedureUsingNameContext)
- func (p *Cobol85Parser) LibraryEntryProcedureWithClause() (localctx ILibraryEntryProcedureWithClauseContext)
- func (p *Cobol85Parser) LibraryEntryProcedureWithName() (localctx ILibraryEntryProcedureWithNameContext)
- func (p *Cobol85Parser) LibraryIsCommonClause() (localctx ILibraryIsCommonClauseContext)
- func (p *Cobol85Parser) LibraryIsGlobalClause() (localctx ILibraryIsGlobalClauseContext)
- func (p *Cobol85Parser) LibraryName() (localctx ILibraryNameContext)
- func (p *Cobol85Parser) LinageAt() (localctx ILinageAtContext)
- func (p *Cobol85Parser) LinageClause() (localctx ILinageClauseContext)
- func (p *Cobol85Parser) LinageFootingAt() (localctx ILinageFootingAtContext)
- func (p *Cobol85Parser) LinageLinesAtBottom() (localctx ILinageLinesAtBottomContext)
- func (p *Cobol85Parser) LinageLinesAtTop() (localctx ILinageLinesAtTopContext)
- func (p *Cobol85Parser) LinkageSection() (localctx ILinkageSectionContext)
- func (p *Cobol85Parser) Literal() (localctx ILiteralContext)
- func (p *Cobol85Parser) LocalName() (localctx ILocalNameContext)
- func (p *Cobol85Parser) LocalStorageSection() (localctx ILocalStorageSectionContext)
- func (p *Cobol85Parser) MemorySizeClause() (localctx IMemorySizeClauseContext)
- func (p *Cobol85Parser) MergeCollatingAlphanumeric() (localctx IMergeCollatingAlphanumericContext)
- func (p *Cobol85Parser) MergeCollatingNational() (localctx IMergeCollatingNationalContext)
- func (p *Cobol85Parser) MergeCollatingSequencePhrase() (localctx IMergeCollatingSequencePhraseContext)
- func (p *Cobol85Parser) MergeGiving() (localctx IMergeGivingContext)
- func (p *Cobol85Parser) MergeGivingPhrase() (localctx IMergeGivingPhraseContext)
- func (p *Cobol85Parser) MergeOnKeyClause() (localctx IMergeOnKeyClauseContext)
- func (p *Cobol85Parser) MergeOutputProcedurePhrase() (localctx IMergeOutputProcedurePhraseContext)
- func (p *Cobol85Parser) MergeOutputThrough() (localctx IMergeOutputThroughContext)
- func (p *Cobol85Parser) MergeStatement() (localctx IMergeStatementContext)
- func (p *Cobol85Parser) MergeUsing() (localctx IMergeUsingContext)
- func (p *Cobol85Parser) MessageCountClause() (localctx IMessageCountClauseContext)
- func (p *Cobol85Parser) MessageDateClause() (localctx IMessageDateClauseContext)
- func (p *Cobol85Parser) MessageTimeClause() (localctx IMessageTimeClauseContext)
- func (p *Cobol85Parser) MnemonicName() (localctx IMnemonicNameContext)
- func (p *Cobol85Parser) ModeStatement() (localctx IModeStatementContext)
- func (p *Cobol85Parser) MoveCorrespondingToSendingArea() (localctx IMoveCorrespondingToSendingAreaContext)
- func (p *Cobol85Parser) MoveCorrespondingToStatement() (localctx IMoveCorrespondingToStatementContext)
- func (p *Cobol85Parser) MoveStatement() (localctx IMoveStatementContext)
- func (p *Cobol85Parser) MoveToSendingArea() (localctx IMoveToSendingAreaContext)
- func (p *Cobol85Parser) MoveToStatement() (localctx IMoveToStatementContext)
- func (p *Cobol85Parser) MultDiv() (localctx IMultDivContext)
- func (p *Cobol85Parser) MultDivs() (localctx IMultDivsContext)
- func (p *Cobol85Parser) MultipleFileClause() (localctx IMultipleFileClauseContext)
- func (p *Cobol85Parser) MultipleFilePosition() (localctx IMultipleFilePositionContext)
- func (p *Cobol85Parser) MultiplyGiving() (localctx IMultiplyGivingContext)
- func (p *Cobol85Parser) MultiplyGivingOperand() (localctx IMultiplyGivingOperandContext)
- func (p *Cobol85Parser) MultiplyGivingResult() (localctx IMultiplyGivingResultContext)
- func (p *Cobol85Parser) MultiplyRegular() (localctx IMultiplyRegularContext)
- func (p *Cobol85Parser) MultiplyRegularOperand() (localctx IMultiplyRegularOperandContext)
- func (p *Cobol85Parser) MultiplyStatement() (localctx IMultiplyStatementContext)
- func (p *Cobol85Parser) NotAtEndPhrase() (localctx INotAtEndPhraseContext)
- func (p *Cobol85Parser) NotInvalidKeyPhrase() (localctx INotInvalidKeyPhraseContext)
- func (p *Cobol85Parser) NotOnExceptionClause() (localctx INotOnExceptionClauseContext)
- func (p *Cobol85Parser) NotOnOverflowPhrase() (localctx INotOnOverflowPhraseContext)
- func (p *Cobol85Parser) NotOnSizeErrorPhrase() (localctx INotOnSizeErrorPhraseContext)
- func (p *Cobol85Parser) NumericLiteral() (localctx INumericLiteralContext)
- func (p *Cobol85Parser) ObjectComputerClause() (localctx IObjectComputerClauseContext)
- func (p *Cobol85Parser) ObjectComputerParagraph() (localctx IObjectComputerParagraphContext)
- func (p *Cobol85Parser) OdtClause() (localctx IOdtClauseContext)
- func (p *Cobol85Parser) OnExceptionClause() (localctx IOnExceptionClauseContext)
- func (p *Cobol85Parser) OnOverflowPhrase() (localctx IOnOverflowPhraseContext)
- func (p *Cobol85Parser) OnSizeErrorPhrase() (localctx IOnSizeErrorPhraseContext)
- func (p *Cobol85Parser) OpenExtendStatement() (localctx IOpenExtendStatementContext)
- func (p *Cobol85Parser) OpenIOStatement() (localctx IOpenIOStatementContext)
- func (p *Cobol85Parser) OpenInput() (localctx IOpenInputContext)
- func (p *Cobol85Parser) OpenInputStatement() (localctx IOpenInputStatementContext)
- func (p *Cobol85Parser) OpenOutput() (localctx IOpenOutputContext)
- func (p *Cobol85Parser) OpenOutputStatement() (localctx IOpenOutputStatementContext)
- func (p *Cobol85Parser) OpenStatement() (localctx IOpenStatementContext)
- func (p *Cobol85Parser) OrganizationClause() (localctx IOrganizationClauseContext)
- func (p *Cobol85Parser) PaddingCharacterClause() (localctx IPaddingCharacterClauseContext)
- func (p *Cobol85Parser) Paragraph() (localctx IParagraphContext)
- func (p *Cobol85Parser) ParagraphName() (localctx IParagraphNameContext)
- func (p *Cobol85Parser) Paragraphs() (localctx IParagraphsContext)
- func (p *Cobol85Parser) PasswordClause() (localctx IPasswordClauseContext)
- func (p *Cobol85Parser) PerformAfter() (localctx IPerformAfterContext)
- func (p *Cobol85Parser) PerformBy() (localctx IPerformByContext)
- func (p *Cobol85Parser) PerformFrom() (localctx IPerformFromContext)
- func (p *Cobol85Parser) PerformInlineStatement() (localctx IPerformInlineStatementContext)
- func (p *Cobol85Parser) PerformProcedureStatement() (localctx IPerformProcedureStatementContext)
- func (p *Cobol85Parser) PerformStatement() (localctx IPerformStatementContext)
- func (p *Cobol85Parser) PerformTestClause() (localctx IPerformTestClauseContext)
- func (p *Cobol85Parser) PerformTimes() (localctx IPerformTimesContext)
- func (p *Cobol85Parser) PerformType() (localctx IPerformTypeContext)
- func (p *Cobol85Parser) PerformUntil() (localctx IPerformUntilContext)
- func (p *Cobol85Parser) PerformVarying() (localctx IPerformVaryingContext)
- func (p *Cobol85Parser) PerformVaryingClause() (localctx IPerformVaryingClauseContext)
- func (p *Cobol85Parser) PerformVaryingPhrase() (localctx IPerformVaryingPhraseContext)
- func (p *Cobol85Parser) PictureCardinality() (localctx IPictureCardinalityContext)
- func (p *Cobol85Parser) PictureChars() (localctx IPictureCharsContext)
- func (p *Cobol85Parser) PictureString() (localctx IPictureStringContext)
- func (p *Cobol85Parser) PlusMinus() (localctx IPlusMinusContext)
- func (p *Cobol85Parser) Power() (localctx IPowerContext)
- func (p *Cobol85Parser) Powers() (localctx IPowersContext)
- func (p *Cobol85Parser) ProcedureDeclarative() (localctx IProcedureDeclarativeContext)
- func (p *Cobol85Parser) ProcedureDeclaratives() (localctx IProcedureDeclarativesContext)
- func (p *Cobol85Parser) ProcedureDivision() (localctx IProcedureDivisionContext)
- func (p *Cobol85Parser) ProcedureDivisionBody() (localctx IProcedureDivisionBodyContext)
- func (p *Cobol85Parser) ProcedureDivisionByReference() (localctx IProcedureDivisionByReferenceContext)
- func (p *Cobol85Parser) ProcedureDivisionByReferencePhrase() (localctx IProcedureDivisionByReferencePhraseContext)
- func (p *Cobol85Parser) ProcedureDivisionByValue() (localctx IProcedureDivisionByValueContext)
- func (p *Cobol85Parser) ProcedureDivisionByValuePhrase() (localctx IProcedureDivisionByValuePhraseContext)
- func (p *Cobol85Parser) ProcedureDivisionGivingClause() (localctx IProcedureDivisionGivingClauseContext)
- func (p *Cobol85Parser) ProcedureDivisionUsingClause() (localctx IProcedureDivisionUsingClauseContext)
- func (p *Cobol85Parser) ProcedureDivisionUsingParameter() (localctx IProcedureDivisionUsingParameterContext)
- func (p *Cobol85Parser) ProcedureName() (localctx IProcedureNameContext)
- func (p *Cobol85Parser) ProcedureSection() (localctx IProcedureSectionContext)
- func (p *Cobol85Parser) ProcedureSectionHeader() (localctx IProcedureSectionHeaderContext)
- func (p *Cobol85Parser) ProgramIdParagraph() (localctx IProgramIdParagraphContext)
- func (p *Cobol85Parser) ProgramLibrarySection() (localctx IProgramLibrarySectionContext)
- func (p *Cobol85Parser) ProgramName() (localctx IProgramNameContext)
- func (p *Cobol85Parser) ProgramUnit() (localctx IProgramUnitContext)
- func (p *Cobol85Parser) PurgeStatement() (localctx IPurgeStatementContext)
- func (p *Cobol85Parser) QualifiedDataName() (localctx IQualifiedDataNameContext)
- func (p *Cobol85Parser) QualifiedDataNameFormat1() (localctx IQualifiedDataNameFormat1Context)
- func (p *Cobol85Parser) QualifiedDataNameFormat2() (localctx IQualifiedDataNameFormat2Context)
- func (p *Cobol85Parser) QualifiedDataNameFormat3() (localctx IQualifiedDataNameFormat3Context)
- func (p *Cobol85Parser) QualifiedDataNameFormat4() (localctx IQualifiedDataNameFormat4Context)
- func (p *Cobol85Parser) QualifiedInData() (localctx IQualifiedInDataContext)
- func (p *Cobol85Parser) ReadInto() (localctx IReadIntoContext)
- func (p *Cobol85Parser) ReadKey() (localctx IReadKeyContext)
- func (p *Cobol85Parser) ReadStatement() (localctx IReadStatementContext)
- func (p *Cobol85Parser) ReadWith() (localctx IReadWithContext)
- func (p *Cobol85Parser) ReceiveBefore() (localctx IReceiveBeforeContext)
- func (p *Cobol85Parser) ReceiveFrom() (localctx IReceiveFromContext)
- func (p *Cobol85Parser) ReceiveFromStatement() (localctx IReceiveFromStatementContext)
- func (p *Cobol85Parser) ReceiveIntoStatement() (localctx IReceiveIntoStatementContext)
- func (p *Cobol85Parser) ReceiveNoData() (localctx IReceiveNoDataContext)
- func (p *Cobol85Parser) ReceiveSize() (localctx IReceiveSizeContext)
- func (p *Cobol85Parser) ReceiveStatement() (localctx IReceiveStatementContext)
- func (p *Cobol85Parser) ReceiveStatus() (localctx IReceiveStatusContext)
- func (p *Cobol85Parser) ReceiveThread() (localctx IReceiveThreadContext)
- func (p *Cobol85Parser) ReceiveWith() (localctx IReceiveWithContext)
- func (p *Cobol85Parser) ReceiveWithData() (localctx IReceiveWithDataContext)
- func (p *Cobol85Parser) RecordContainsClause() (localctx IRecordContainsClauseContext)
- func (p *Cobol85Parser) RecordContainsClauseFormat1() (localctx IRecordContainsClauseFormat1Context)
- func (p *Cobol85Parser) RecordContainsClauseFormat2() (localctx IRecordContainsClauseFormat2Context)
- func (p *Cobol85Parser) RecordContainsClauseFormat3() (localctx IRecordContainsClauseFormat3Context)
- func (p *Cobol85Parser) RecordContainsTo() (localctx IRecordContainsToContext)
- func (p *Cobol85Parser) RecordDelimiterClause() (localctx IRecordDelimiterClauseContext)
- func (p *Cobol85Parser) RecordKeyClause() (localctx IRecordKeyClauseContext)
- func (p *Cobol85Parser) RecordName() (localctx IRecordNameContext)
- func (p *Cobol85Parser) RecordingModeClause() (localctx IRecordingModeClauseContext)
- func (p *Cobol85Parser) ReferenceModifier() (localctx IReferenceModifierContext)
- func (p *Cobol85Parser) RelationArithmeticComparison() (localctx IRelationArithmeticComparisonContext)
- func (p *Cobol85Parser) RelationCombinedComparison() (localctx IRelationCombinedComparisonContext)
- func (p *Cobol85Parser) RelationCombinedCondition() (localctx IRelationCombinedConditionContext)
- func (p *Cobol85Parser) RelationCondition() (localctx IRelationConditionContext)
- func (p *Cobol85Parser) RelationSignCondition() (localctx IRelationSignConditionContext)
- func (p *Cobol85Parser) RelationalOperator() (localctx IRelationalOperatorContext)
- func (p *Cobol85Parser) RelativeKeyClause() (localctx IRelativeKeyClauseContext)
- func (p *Cobol85Parser) ReleaseStatement() (localctx IReleaseStatementContext)
- func (p *Cobol85Parser) RemarksParagraph() (localctx IRemarksParagraphContext)
- func (p *Cobol85Parser) ReportClause() (localctx IReportClauseContext)
- func (p *Cobol85Parser) ReportDescription() (localctx IReportDescriptionContext)
- func (p *Cobol85Parser) ReportDescriptionEntry() (localctx IReportDescriptionEntryContext)
- func (p *Cobol85Parser) ReportDescriptionFirstDetailClause() (localctx IReportDescriptionFirstDetailClauseContext)
- func (p *Cobol85Parser) ReportDescriptionFootingClause() (localctx IReportDescriptionFootingClauseContext)
- func (p *Cobol85Parser) ReportDescriptionGlobalClause() (localctx IReportDescriptionGlobalClauseContext)
- func (p *Cobol85Parser) ReportDescriptionHeadingClause() (localctx IReportDescriptionHeadingClauseContext)
- func (p *Cobol85Parser) ReportDescriptionLastDetailClause() (localctx IReportDescriptionLastDetailClauseContext)
- func (p *Cobol85Parser) ReportDescriptionPageLimitClause() (localctx IReportDescriptionPageLimitClauseContext)
- func (p *Cobol85Parser) ReportGroupBlankWhenZeroClause() (localctx IReportGroupBlankWhenZeroClauseContext)
- func (p *Cobol85Parser) ReportGroupColumnNumberClause() (localctx IReportGroupColumnNumberClauseContext)
- func (p *Cobol85Parser) ReportGroupDescriptionEntry() (localctx IReportGroupDescriptionEntryContext)
- func (p *Cobol85Parser) ReportGroupDescriptionEntryFormat1() (localctx IReportGroupDescriptionEntryFormat1Context)
- func (p *Cobol85Parser) ReportGroupDescriptionEntryFormat2() (localctx IReportGroupDescriptionEntryFormat2Context)
- func (p *Cobol85Parser) ReportGroupDescriptionEntryFormat3() (localctx IReportGroupDescriptionEntryFormat3Context)
- func (p *Cobol85Parser) ReportGroupIndicateClause() (localctx IReportGroupIndicateClauseContext)
- func (p *Cobol85Parser) ReportGroupJustifiedClause() (localctx IReportGroupJustifiedClauseContext)
- func (p *Cobol85Parser) ReportGroupLineNumberClause() (localctx IReportGroupLineNumberClauseContext)
- func (p *Cobol85Parser) ReportGroupLineNumberNextPage() (localctx IReportGroupLineNumberNextPageContext)
- func (p *Cobol85Parser) ReportGroupLineNumberPlus() (localctx IReportGroupLineNumberPlusContext)
- func (p *Cobol85Parser) ReportGroupNextGroupClause() (localctx IReportGroupNextGroupClauseContext)
- func (p *Cobol85Parser) ReportGroupNextGroupNextPage() (localctx IReportGroupNextGroupNextPageContext)
- func (p *Cobol85Parser) ReportGroupNextGroupPlus() (localctx IReportGroupNextGroupPlusContext)
- func (p *Cobol85Parser) ReportGroupPictureClause() (localctx IReportGroupPictureClauseContext)
- func (p *Cobol85Parser) ReportGroupResetClause() (localctx IReportGroupResetClauseContext)
- func (p *Cobol85Parser) ReportGroupSignClause() (localctx IReportGroupSignClauseContext)
- func (p *Cobol85Parser) ReportGroupSourceClause() (localctx IReportGroupSourceClauseContext)
- func (p *Cobol85Parser) ReportGroupSumClause() (localctx IReportGroupSumClauseContext)
- func (p *Cobol85Parser) ReportGroupTypeClause() (localctx IReportGroupTypeClauseContext)
- func (p *Cobol85Parser) ReportGroupTypeControlFooting() (localctx IReportGroupTypeControlFootingContext)
- func (p *Cobol85Parser) ReportGroupTypeControlHeading() (localctx IReportGroupTypeControlHeadingContext)
- func (p *Cobol85Parser) ReportGroupTypeDetail() (localctx IReportGroupTypeDetailContext)
- func (p *Cobol85Parser) ReportGroupTypePageFooting() (localctx IReportGroupTypePageFootingContext)
- func (p *Cobol85Parser) ReportGroupTypePageHeading() (localctx IReportGroupTypePageHeadingContext)
- func (p *Cobol85Parser) ReportGroupTypeReportFooting() (localctx IReportGroupTypeReportFootingContext)
- func (p *Cobol85Parser) ReportGroupTypeReportHeading() (localctx IReportGroupTypeReportHeadingContext)
- func (p *Cobol85Parser) ReportGroupUsageClause() (localctx IReportGroupUsageClauseContext)
- func (p *Cobol85Parser) ReportGroupValueClause() (localctx IReportGroupValueClauseContext)
- func (p *Cobol85Parser) ReportName() (localctx IReportNameContext)
- func (p *Cobol85Parser) ReportSection() (localctx IReportSectionContext)
- func (p *Cobol85Parser) RerunClause() (localctx IRerunClauseContext)
- func (p *Cobol85Parser) RerunEveryClock() (localctx IRerunEveryClockContext)
- func (p *Cobol85Parser) RerunEveryOf() (localctx IRerunEveryOfContext)
- func (p *Cobol85Parser) RerunEveryRecords() (localctx IRerunEveryRecordsContext)
- func (p *Cobol85Parser) ReserveClause() (localctx IReserveClauseContext)
- func (p *Cobol85Parser) ReserveNetworkClause() (localctx IReserveNetworkClauseContext)
- func (p *Cobol85Parser) ReturnInto() (localctx IReturnIntoContext)
- func (p *Cobol85Parser) ReturnStatement() (localctx IReturnStatementContext)
- func (p *Cobol85Parser) RewriteFrom() (localctx IRewriteFromContext)
- func (p *Cobol85Parser) RewriteStatement() (localctx IRewriteStatementContext)
- func (p *Cobol85Parser) RoutineName() (localctx IRoutineNameContext)
- func (p *Cobol85Parser) SameClause() (localctx ISameClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionAutoClause() (localctx IScreenDescriptionAutoClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionBackgroundColorClause() (localctx IScreenDescriptionBackgroundColorClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionBellClause() (localctx IScreenDescriptionBellClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionBlankClause() (localctx IScreenDescriptionBlankClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionBlankWhenZeroClause() (localctx IScreenDescriptionBlankWhenZeroClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionBlinkClause() (localctx IScreenDescriptionBlinkClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionColumnClause() (localctx IScreenDescriptionColumnClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionControlClause() (localctx IScreenDescriptionControlClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionEntry() (localctx IScreenDescriptionEntryContext)
- func (p *Cobol85Parser) ScreenDescriptionEraseClause() (localctx IScreenDescriptionEraseClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionForegroundColorClause() (localctx IScreenDescriptionForegroundColorClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionFromClause() (localctx IScreenDescriptionFromClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionFullClause() (localctx IScreenDescriptionFullClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionGridClause() (localctx IScreenDescriptionGridClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionJustifiedClause() (localctx IScreenDescriptionJustifiedClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionLightClause() (localctx IScreenDescriptionLightClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionLineClause() (localctx IScreenDescriptionLineClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionPictureClause() (localctx IScreenDescriptionPictureClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionPromptClause() (localctx IScreenDescriptionPromptClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionPromptOccursClause() (localctx IScreenDescriptionPromptOccursClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionRequiredClause() (localctx IScreenDescriptionRequiredClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionReverseVideoClause() (localctx IScreenDescriptionReverseVideoClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionSecureClause() (localctx IScreenDescriptionSecureClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionSignClause() (localctx IScreenDescriptionSignClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionSizeClause() (localctx IScreenDescriptionSizeClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionToClause() (localctx IScreenDescriptionToClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionUnderlineClause() (localctx IScreenDescriptionUnderlineClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionUsageClause() (localctx IScreenDescriptionUsageClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionUsingClause() (localctx IScreenDescriptionUsingClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionValueClause() (localctx IScreenDescriptionValueClauseContext)
- func (p *Cobol85Parser) ScreenDescriptionZeroFillClause() (localctx IScreenDescriptionZeroFillClauseContext)
- func (p *Cobol85Parser) ScreenName() (localctx IScreenNameContext)
- func (p *Cobol85Parser) ScreenSection() (localctx IScreenSectionContext)
- func (p *Cobol85Parser) SearchStatement() (localctx ISearchStatementContext)
- func (p *Cobol85Parser) SearchVarying() (localctx ISearchVaryingContext)
- func (p *Cobol85Parser) SearchWhen() (localctx ISearchWhenContext)
- func (p *Cobol85Parser) SectionName() (localctx ISectionNameContext)
- func (p *Cobol85Parser) SecurityParagraph() (localctx ISecurityParagraphContext)
- func (p *Cobol85Parser) SegmentLimitClause() (localctx ISegmentLimitClauseContext)
- func (p *Cobol85Parser) SelectClause() (localctx ISelectClauseContext)
- func (p *Cobol85Parser) SendAdvancingLines() (localctx ISendAdvancingLinesContext)
- func (p *Cobol85Parser) SendAdvancingMnemonic() (localctx ISendAdvancingMnemonicContext)
- func (p *Cobol85Parser) SendAdvancingPage() (localctx ISendAdvancingPageContext)
- func (p *Cobol85Parser) SendAdvancingPhrase() (localctx ISendAdvancingPhraseContext)
- func (p *Cobol85Parser) SendFromPhrase() (localctx ISendFromPhraseContext)
- func (p *Cobol85Parser) SendReplacingPhrase() (localctx ISendReplacingPhraseContext)
- func (p *Cobol85Parser) SendStatement() (localctx ISendStatementContext)
- func (p *Cobol85Parser) SendStatementAsync() (localctx ISendStatementAsyncContext)
- func (p *Cobol85Parser) SendStatementSync() (localctx ISendStatementSyncContext)
- func (p *Cobol85Parser) SendWithPhrase() (localctx ISendWithPhraseContext)
- func (p *Cobol85Parser) Sentence() (localctx ISentenceContext)
- func (p *Cobol85Parser) SetByValue() (localctx ISetByValueContext)
- func (p *Cobol85Parser) SetStatement() (localctx ISetStatementContext)
- func (p *Cobol85Parser) SetTo() (localctx ISetToContext)
- func (p *Cobol85Parser) SetToStatement() (localctx ISetToStatementContext)
- func (p *Cobol85Parser) SetToValue() (localctx ISetToValueContext)
- func (p *Cobol85Parser) SetUpDownByStatement() (localctx ISetUpDownByStatementContext)
- func (p *Cobol85Parser) SimpleCondition() (localctx ISimpleConditionContext)
- func (p *Cobol85Parser) SortCollatingAlphanumeric() (localctx ISortCollatingAlphanumericContext)
- func (p *Cobol85Parser) SortCollatingNational() (localctx ISortCollatingNationalContext)
- func (p *Cobol85Parser) SortCollatingSequencePhrase() (localctx ISortCollatingSequencePhraseContext)
- func (p *Cobol85Parser) SortDuplicatesPhrase() (localctx ISortDuplicatesPhraseContext)
- func (p *Cobol85Parser) SortGiving() (localctx ISortGivingContext)
- func (p *Cobol85Parser) SortGivingPhrase() (localctx ISortGivingPhraseContext)
- func (p *Cobol85Parser) SortInputProcedurePhrase() (localctx ISortInputProcedurePhraseContext)
- func (p *Cobol85Parser) SortInputThrough() (localctx ISortInputThroughContext)
- func (p *Cobol85Parser) SortOnKeyClause() (localctx ISortOnKeyClauseContext)
- func (p *Cobol85Parser) SortOutputProcedurePhrase() (localctx ISortOutputProcedurePhraseContext)
- func (p *Cobol85Parser) SortOutputThrough() (localctx ISortOutputThroughContext)
- func (p *Cobol85Parser) SortStatement() (localctx ISortStatementContext)
- func (p *Cobol85Parser) SortUsing() (localctx ISortUsingContext)
- func (p *Cobol85Parser) SourceComputerParagraph() (localctx ISourceComputerParagraphContext)
- func (p *Cobol85Parser) SpecialNameClause() (localctx ISpecialNameClauseContext)
- func (p *Cobol85Parser) SpecialNamesParagraph() (localctx ISpecialNamesParagraphContext)
- func (p *Cobol85Parser) SpecialRegister() (localctx ISpecialRegisterContext)
- func (p *Cobol85Parser) StartKey() (localctx IStartKeyContext)
- func (p *Cobol85Parser) StartRule() (localctx IStartRuleContext)
- func (p *Cobol85Parser) StartStatement() (localctx IStartStatementContext)
- func (p *Cobol85Parser) Statement() (localctx IStatementContext)
- func (p *Cobol85Parser) StatusKeyClause() (localctx IStatusKeyClauseContext)
- func (p *Cobol85Parser) StopStatement() (localctx IStopStatementContext)
- func (p *Cobol85Parser) StringDelimitedByPhrase() (localctx IStringDelimitedByPhraseContext)
- func (p *Cobol85Parser) StringForPhrase() (localctx IStringForPhraseContext)
- func (p *Cobol85Parser) StringIntoPhrase() (localctx IStringIntoPhraseContext)
- func (p *Cobol85Parser) StringSending() (localctx IStringSendingContext)
- func (p *Cobol85Parser) StringSendingPhrase() (localctx IStringSendingPhraseContext)
- func (p *Cobol85Parser) StringStatement() (localctx IStringStatementContext)
- func (p *Cobol85Parser) StringWithPointerPhrase() (localctx IStringWithPointerPhraseContext)
- func (p *Cobol85Parser) Subscript() (localctx ISubscriptContext)
- func (p *Cobol85Parser) SubtractCorrespondingStatement() (localctx ISubtractCorrespondingStatementContext)
- func (p *Cobol85Parser) SubtractFromGivingStatement() (localctx ISubtractFromGivingStatementContext)
- func (p *Cobol85Parser) SubtractFromStatement() (localctx ISubtractFromStatementContext)
- func (p *Cobol85Parser) SubtractGiving() (localctx ISubtractGivingContext)
- func (p *Cobol85Parser) SubtractMinuend() (localctx ISubtractMinuendContext)
- func (p *Cobol85Parser) SubtractMinuendCorresponding() (localctx ISubtractMinuendCorrespondingContext)
- func (p *Cobol85Parser) SubtractMinuendGiving() (localctx ISubtractMinuendGivingContext)
- func (p *Cobol85Parser) SubtractStatement() (localctx ISubtractStatementContext)
- func (p *Cobol85Parser) SubtractSubtrahend() (localctx ISubtractSubtrahendContext)
- func (p *Cobol85Parser) SymbolicCharacter() (localctx ISymbolicCharacterContext)
- func (p *Cobol85Parser) SymbolicCharacters() (localctx ISymbolicCharactersContext)
- func (p *Cobol85Parser) SymbolicCharactersClause() (localctx ISymbolicCharactersClauseContext)
- func (p *Cobol85Parser) SymbolicDestinationClause() (localctx ISymbolicDestinationClauseContext)
- func (p *Cobol85Parser) SymbolicQueueClause() (localctx ISymbolicQueueClauseContext)
- func (p *Cobol85Parser) SymbolicSourceClause() (localctx ISymbolicSourceClauseContext)
- func (p *Cobol85Parser) SymbolicSubQueueClause() (localctx ISymbolicSubQueueClauseContext)
- func (p *Cobol85Parser) SymbolicTerminalClause() (localctx ISymbolicTerminalClauseContext)
- func (p *Cobol85Parser) SystemName() (localctx ISystemNameContext)
- func (p *Cobol85Parser) TableCall() (localctx ITableCallContext)
- func (p *Cobol85Parser) TerminateStatement() (localctx ITerminateStatementContext)
- func (p *Cobol85Parser) TextLengthClause() (localctx ITextLengthClauseContext)
- func (p *Cobol85Parser) TextName() (localctx ITextNameContext)
- func (p *Cobol85Parser) UnstringCountIn() (localctx IUnstringCountInContext)
- func (p *Cobol85Parser) UnstringDelimitedByPhrase() (localctx IUnstringDelimitedByPhraseContext)
- func (p *Cobol85Parser) UnstringDelimiterIn() (localctx IUnstringDelimiterInContext)
- func (p *Cobol85Parser) UnstringInto() (localctx IUnstringIntoContext)
- func (p *Cobol85Parser) UnstringIntoPhrase() (localctx IUnstringIntoPhraseContext)
- func (p *Cobol85Parser) UnstringOrAllPhrase() (localctx IUnstringOrAllPhraseContext)
- func (p *Cobol85Parser) UnstringSendingPhrase() (localctx IUnstringSendingPhraseContext)
- func (p *Cobol85Parser) UnstringStatement() (localctx IUnstringStatementContext)
- func (p *Cobol85Parser) UnstringTallyingPhrase() (localctx IUnstringTallyingPhraseContext)
- func (p *Cobol85Parser) UnstringWithPointerPhrase() (localctx IUnstringWithPointerPhraseContext)
- func (p *Cobol85Parser) UseAfterClause() (localctx IUseAfterClauseContext)
- func (p *Cobol85Parser) UseAfterOn() (localctx IUseAfterOnContext)
- func (p *Cobol85Parser) UseDebugClause() (localctx IUseDebugClauseContext)
- func (p *Cobol85Parser) UseDebugOn() (localctx IUseDebugOnContext)
- func (p *Cobol85Parser) UseStatement() (localctx IUseStatementContext)
- func (p *Cobol85Parser) ValueOfClause() (localctx IValueOfClauseContext)
- func (p *Cobol85Parser) ValuePair() (localctx IValuePairContext)
- func (p *Cobol85Parser) WorkingStorageSection() (localctx IWorkingStorageSectionContext)
- func (p *Cobol85Parser) WriteAdvancingLines() (localctx IWriteAdvancingLinesContext)
- func (p *Cobol85Parser) WriteAdvancingMnemonic() (localctx IWriteAdvancingMnemonicContext)
- func (p *Cobol85Parser) WriteAdvancingPage() (localctx IWriteAdvancingPageContext)
- func (p *Cobol85Parser) WriteAdvancingPhrase() (localctx IWriteAdvancingPhraseContext)
- func (p *Cobol85Parser) WriteAtEndOfPagePhrase() (localctx IWriteAtEndOfPagePhraseContext)
- func (p *Cobol85Parser) WriteFromPhrase() (localctx IWriteFromPhraseContext)
- func (p *Cobol85Parser) WriteNotAtEndOfPagePhrase() (localctx IWriteNotAtEndOfPagePhraseContext)
- func (p *Cobol85Parser) WriteStatement() (localctx IWriteStatementContext)
- type CobolWordContext
- func (s *CobolWordContext) ABORT() antlr.TerminalNode
- func (s *CobolWordContext) AS() antlr.TerminalNode
- func (s *CobolWordContext) ASCII() antlr.TerminalNode
- func (s *CobolWordContext) ASSOCIATED_DATA() antlr.TerminalNode
- func (s *CobolWordContext) ASSOCIATED_DATA_LENGTH() antlr.TerminalNode
- func (s *CobolWordContext) ATTRIBUTE() antlr.TerminalNode
- func (s *CobolWordContext) AUTO() antlr.TerminalNode
- func (s *CobolWordContext) AUTO_SKIP() antlr.TerminalNode
- func (s *CobolWordContext) BACKGROUND_COLOR() antlr.TerminalNode
- func (s *CobolWordContext) BACKGROUND_COLOUR() antlr.TerminalNode
- func (s *CobolWordContext) BEEP() antlr.TerminalNode
- func (s *CobolWordContext) BELL() antlr.TerminalNode
- func (s *CobolWordContext) BINARY() antlr.TerminalNode
- func (s *CobolWordContext) BIT() antlr.TerminalNode
- func (s *CobolWordContext) BLINK() antlr.TerminalNode
- func (s *CobolWordContext) BOUNDS() antlr.TerminalNode
- func (s *CobolWordContext) CAPABLE() antlr.TerminalNode
- func (s *CobolWordContext) CCSVERSION() antlr.TerminalNode
- func (s *CobolWordContext) CHANGED() antlr.TerminalNode
- func (s *CobolWordContext) CHANNEL() antlr.TerminalNode
- func (s *CobolWordContext) CLOSE_DISPOSITION() antlr.TerminalNode
- func (s *CobolWordContext) COBOL() antlr.TerminalNode
- func (s *CobolWordContext) COMMITMENT() antlr.TerminalNode
- func (s *CobolWordContext) CONTROL_POINT() antlr.TerminalNode
- func (s *CobolWordContext) CONVENTION() antlr.TerminalNode
- func (s *CobolWordContext) CRUNCH() antlr.TerminalNode
- func (s *CobolWordContext) CURSOR() antlr.TerminalNode
- func (s *CobolWordContext) DEFAULT() antlr.TerminalNode
- func (s *CobolWordContext) DEFAULT_DISPLAY() antlr.TerminalNode
- func (s *CobolWordContext) DEFINITION() antlr.TerminalNode
- func (s *CobolWordContext) DFHRESP() antlr.TerminalNode
- func (s *CobolWordContext) DFHVALUE() antlr.TerminalNode
- func (s *CobolWordContext) DISK() antlr.TerminalNode
- func (s *CobolWordContext) DONTCARE() antlr.TerminalNode
- func (s *CobolWordContext) DOUBLE() antlr.TerminalNode
- func (s *CobolWordContext) EBCDIC() antlr.TerminalNode
- func (s *CobolWordContext) EMPTY_CHECK() antlr.TerminalNode
- func (s *CobolWordContext) ENTER() antlr.TerminalNode
- func (s *CobolWordContext) ENTRY_PROCEDURE() antlr.TerminalNode
- func (s *CobolWordContext) EOL() antlr.TerminalNode
- func (s *CobolWordContext) EOS() antlr.TerminalNode
- func (s *CobolWordContext) ERASE() antlr.TerminalNode
- func (s *CobolWordContext) ESCAPE() antlr.TerminalNode
- func (s *CobolWordContext) EVENT() antlr.TerminalNode
- func (s *CobolWordContext) EXCLUSIVE() antlr.TerminalNode
- func (s *CobolWordContext) EXPORT() antlr.TerminalNode
- func (s *CobolWordContext) EXTENDED() antlr.TerminalNode
- func (s *CobolWordContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CobolWordContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CobolWordContext) FOREGROUND_COLOR() antlr.TerminalNode
- func (s *CobolWordContext) FOREGROUND_COLOUR() antlr.TerminalNode
- func (s *CobolWordContext) FULL() antlr.TerminalNode
- func (s *CobolWordContext) FUNCTIONNAME() antlr.TerminalNode
- func (s *CobolWordContext) FUNCTION_POINTER() antlr.TerminalNode
- func (s *CobolWordContext) GRID() antlr.TerminalNode
- func (s *CobolWordContext) GetParser() antlr.Parser
- func (s *CobolWordContext) GetRuleContext() antlr.RuleContext
- func (s *CobolWordContext) HIGHLIGHT() antlr.TerminalNode
- func (s *CobolWordContext) IDENTIFIER() antlr.TerminalNode
- func (s *CobolWordContext) IMPLICIT() antlr.TerminalNode
- func (s *CobolWordContext) IMPORT() antlr.TerminalNode
- func (s *CobolWordContext) INTEGER() antlr.TerminalNode
- func (*CobolWordContext) IsCobolWordContext()
- func (s *CobolWordContext) KEPT() antlr.TerminalNode
- func (s *CobolWordContext) KEYBOARD() antlr.TerminalNode
- func (s *CobolWordContext) LANGUAGE() antlr.TerminalNode
- func (s *CobolWordContext) LB() antlr.TerminalNode
- func (s *CobolWordContext) LD() antlr.TerminalNode
- func (s *CobolWordContext) LEFTLINE() antlr.TerminalNode
- func (s *CobolWordContext) LENGTH_CHECK() antlr.TerminalNode
- func (s *CobolWordContext) LIBACCESS() antlr.TerminalNode
- func (s *CobolWordContext) LIBPARAMETER() antlr.TerminalNode
- func (s *CobolWordContext) LIBRARY() antlr.TerminalNode
- func (s *CobolWordContext) LIST() antlr.TerminalNode
- func (s *CobolWordContext) LOCAL() antlr.TerminalNode
- func (s *CobolWordContext) LONG_DATE() antlr.TerminalNode
- func (s *CobolWordContext) LONG_TIME() antlr.TerminalNode
- func (s *CobolWordContext) LOWER() antlr.TerminalNode
- func (s *CobolWordContext) LOWLIGHT() antlr.TerminalNode
- func (s *CobolWordContext) MMDDYYYY() antlr.TerminalNode
- func (s *CobolWordContext) NAMED() antlr.TerminalNode
- func (s *CobolWordContext) NATIONAL() antlr.TerminalNode
- func (s *CobolWordContext) NATIONAL_EDITED() antlr.TerminalNode
- func (s *CobolWordContext) NETWORK() antlr.TerminalNode
- func (s *CobolWordContext) NO_ECHO() antlr.TerminalNode
- func (s *CobolWordContext) NUMERIC_DATE() antlr.TerminalNode
- func (s *CobolWordContext) NUMERIC_TIME() antlr.TerminalNode
- func (s *CobolWordContext) ODT() antlr.TerminalNode
- func (s *CobolWordContext) ORDERLY() antlr.TerminalNode
- func (s *CobolWordContext) OVERLINE() antlr.TerminalNode
- func (s *CobolWordContext) OWN() antlr.TerminalNode
- func (s *CobolWordContext) PASSWORD() antlr.TerminalNode
- func (s *CobolWordContext) PORT() antlr.TerminalNode
- func (s *CobolWordContext) PRINTER() antlr.TerminalNode
- func (s *CobolWordContext) PRIVATE() antlr.TerminalNode
- func (s *CobolWordContext) PROCESS() antlr.TerminalNode
- func (s *CobolWordContext) PROGRAM() antlr.TerminalNode
- func (s *CobolWordContext) PROMPT() antlr.TerminalNode
- func (s *CobolWordContext) READER() antlr.TerminalNode
- func (s *CobolWordContext) REAL() antlr.TerminalNode
- func (s *CobolWordContext) RECEIVED() antlr.TerminalNode
- func (s *CobolWordContext) RECURSIVE() antlr.TerminalNode
- func (s *CobolWordContext) REF() antlr.TerminalNode
- func (s *CobolWordContext) REMOTE() antlr.TerminalNode
- func (s *CobolWordContext) REMOVE() antlr.TerminalNode
- func (s *CobolWordContext) REQUIRED() antlr.TerminalNode
- func (s *CobolWordContext) REVERSE_VIDEO() antlr.TerminalNode
- func (s *CobolWordContext) SAVE() antlr.TerminalNode
- func (s *CobolWordContext) SECURE() antlr.TerminalNode
- func (s *CobolWordContext) SHARED() antlr.TerminalNode
- func (s *CobolWordContext) SHAREDBYALL() antlr.TerminalNode
- func (s *CobolWordContext) SHAREDBYRUNUNIT() antlr.TerminalNode
- func (s *CobolWordContext) SHARING() antlr.TerminalNode
- func (s *CobolWordContext) SHORT_DATE() antlr.TerminalNode
- func (s *CobolWordContext) SYMBOL() antlr.TerminalNode
- func (s *CobolWordContext) TASK() antlr.TerminalNode
- func (s *CobolWordContext) THREAD() antlr.TerminalNode
- func (s *CobolWordContext) THREAD_LOCAL() antlr.TerminalNode
- func (s *CobolWordContext) TIMER() antlr.TerminalNode
- func (s *CobolWordContext) TODAYS_DATE() antlr.TerminalNode
- func (s *CobolWordContext) TODAYS_NAME() antlr.TerminalNode
- func (s *CobolWordContext) TRUNCATED() antlr.TerminalNode
- func (s *CobolWordContext) TYPEDEF() antlr.TerminalNode
- func (s *CobolWordContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *CobolWordContext) UNDERLINE() antlr.TerminalNode
- func (s *CobolWordContext) VIRTUAL() antlr.TerminalNode
- func (s *CobolWordContext) WAIT() antlr.TerminalNode
- func (s *CobolWordContext) YEAR() antlr.TerminalNode
- func (s *CobolWordContext) YYYYDDD() antlr.TerminalNode
- func (s *CobolWordContext) YYYYMMDD() antlr.TerminalNode
- func (s *CobolWordContext) ZERO_FILL() antlr.TerminalNode
- type CodeSetClauseContext
- func (s *CodeSetClauseContext) AlphabetName() IAlphabetNameContext
- func (s *CodeSetClauseContext) CODE_SET() antlr.TerminalNode
- func (s *CodeSetClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CodeSetClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CodeSetClauseContext) GetParser() antlr.Parser
- func (s *CodeSetClauseContext) GetRuleContext() antlr.RuleContext
- func (s *CodeSetClauseContext) IS() antlr.TerminalNode
- func (*CodeSetClauseContext) IsCodeSetClauseContext()
- func (s *CodeSetClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CollatingSequenceClauseAlphanumericContext
- func (s *CollatingSequenceClauseAlphanumericContext) ALPHANUMERIC() antlr.TerminalNode
- func (s *CollatingSequenceClauseAlphanumericContext) AlphabetName() IAlphabetNameContext
- func (s *CollatingSequenceClauseAlphanumericContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CollatingSequenceClauseAlphanumericContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CollatingSequenceClauseAlphanumericContext) FOR() antlr.TerminalNode
- func (s *CollatingSequenceClauseAlphanumericContext) GetParser() antlr.Parser
- func (s *CollatingSequenceClauseAlphanumericContext) GetRuleContext() antlr.RuleContext
- func (s *CollatingSequenceClauseAlphanumericContext) IS() antlr.TerminalNode
- func (*CollatingSequenceClauseAlphanumericContext) IsCollatingSequenceClauseAlphanumericContext()
- func (s *CollatingSequenceClauseAlphanumericContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CollatingSequenceClauseContext
- func (s *CollatingSequenceClauseContext) AllAlphabetName() []IAlphabetNameContext
- func (s *CollatingSequenceClauseContext) AlphabetName(i int) IAlphabetNameContext
- func (s *CollatingSequenceClauseContext) COLLATING() antlr.TerminalNode
- func (s *CollatingSequenceClauseContext) CollatingSequenceClauseAlphanumeric() ICollatingSequenceClauseAlphanumericContext
- func (s *CollatingSequenceClauseContext) CollatingSequenceClauseNational() ICollatingSequenceClauseNationalContext
- func (s *CollatingSequenceClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CollatingSequenceClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CollatingSequenceClauseContext) GetParser() antlr.Parser
- func (s *CollatingSequenceClauseContext) GetRuleContext() antlr.RuleContext
- func (s *CollatingSequenceClauseContext) IS() antlr.TerminalNode
- func (*CollatingSequenceClauseContext) IsCollatingSequenceClauseContext()
- func (s *CollatingSequenceClauseContext) PROGRAM() antlr.TerminalNode
- func (s *CollatingSequenceClauseContext) SEQUENCE() antlr.TerminalNode
- func (s *CollatingSequenceClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CollatingSequenceClauseNationalContext
- func (s *CollatingSequenceClauseNationalContext) AlphabetName() IAlphabetNameContext
- func (s *CollatingSequenceClauseNationalContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CollatingSequenceClauseNationalContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CollatingSequenceClauseNationalContext) FOR() antlr.TerminalNode
- func (s *CollatingSequenceClauseNationalContext) GetParser() antlr.Parser
- func (s *CollatingSequenceClauseNationalContext) GetRuleContext() antlr.RuleContext
- func (s *CollatingSequenceClauseNationalContext) IS() antlr.TerminalNode
- func (*CollatingSequenceClauseNationalContext) IsCollatingSequenceClauseNationalContext()
- func (s *CollatingSequenceClauseNationalContext) NATIONAL() antlr.TerminalNode
- func (s *CollatingSequenceClauseNationalContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CombinableConditionContext
- func (s *CombinableConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CombinableConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CombinableConditionContext) GetParser() antlr.Parser
- func (s *CombinableConditionContext) GetRuleContext() antlr.RuleContext
- func (*CombinableConditionContext) IsCombinableConditionContext()
- func (s *CombinableConditionContext) NOT() antlr.TerminalNode
- func (s *CombinableConditionContext) SimpleCondition() ISimpleConditionContext
- func (s *CombinableConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommentEntryContext
- func (s *CommentEntryContext) AllCOMMENTENTRYLINE() []antlr.TerminalNode
- func (s *CommentEntryContext) COMMENTENTRYLINE(i int) antlr.TerminalNode
- func (s *CommentEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommentEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommentEntryContext) GetParser() antlr.Parser
- func (s *CommentEntryContext) GetRuleContext() antlr.RuleContext
- func (*CommentEntryContext) IsCommentEntryContext()
- func (s *CommentEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommitmentControlClauseContext
- func (s *CommitmentControlClauseContext) COMMITMENT() antlr.TerminalNode
- func (s *CommitmentControlClauseContext) CONTROL() antlr.TerminalNode
- func (s *CommitmentControlClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommitmentControlClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommitmentControlClauseContext) FOR() antlr.TerminalNode
- func (s *CommitmentControlClauseContext) FileName() IFileNameContext
- func (s *CommitmentControlClauseContext) GetParser() antlr.Parser
- func (s *CommitmentControlClauseContext) GetRuleContext() antlr.RuleContext
- func (*CommitmentControlClauseContext) IsCommitmentControlClauseContext()
- func (s *CommitmentControlClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommunicationDescriptionEntryContext
- func (s *CommunicationDescriptionEntryContext) CommunicationDescriptionEntryFormat1() ICommunicationDescriptionEntryFormat1Context
- func (s *CommunicationDescriptionEntryContext) CommunicationDescriptionEntryFormat2() ICommunicationDescriptionEntryFormat2Context
- func (s *CommunicationDescriptionEntryContext) CommunicationDescriptionEntryFormat3() ICommunicationDescriptionEntryFormat3Context
- func (s *CommunicationDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryContext) GetParser() antlr.Parser
- func (s *CommunicationDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (*CommunicationDescriptionEntryContext) IsCommunicationDescriptionEntryContext()
- func (s *CommunicationDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommunicationDescriptionEntryFormat1Context
- func (s *CommunicationDescriptionEntryFormat1Context) AllDataDescName() []IDataDescNameContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllEndKeyClause() []IEndKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllMessageCountClause() []IMessageCountClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllMessageDateClause() []IMessageDateClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllMessageTimeClause() []IMessageTimeClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllStatusKeyClause() []IStatusKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllSymbolicQueueClause() []ISymbolicQueueClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllSymbolicSourceClause() []ISymbolicSourceClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllSymbolicSubQueueClause() []ISymbolicSubQueueClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) AllTextLengthClause() []ITextLengthClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) CD() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat1Context) CdName() ICdNameContext
- func (s *CommunicationDescriptionEntryFormat1Context) DOT_FS() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat1Context) DataDescName(i int) IDataDescNameContext
- func (s *CommunicationDescriptionEntryFormat1Context) EndKeyClause(i int) IEndKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryFormat1Context) FOR() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat1Context) GetParser() antlr.Parser
- func (s *CommunicationDescriptionEntryFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *CommunicationDescriptionEntryFormat1Context) INITIAL() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat1Context) INPUT() antlr.TerminalNode
- func (*CommunicationDescriptionEntryFormat1Context) IsCommunicationDescriptionEntryFormat1Context()
- func (s *CommunicationDescriptionEntryFormat1Context) MessageCountClause(i int) IMessageCountClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) MessageDateClause(i int) IMessageDateClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) MessageTimeClause(i int) IMessageTimeClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) StatusKeyClause(i int) IStatusKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) SymbolicQueueClause(i int) ISymbolicQueueClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) SymbolicSourceClause(i int) ISymbolicSourceClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) SymbolicSubQueueClause(i int) ISymbolicSubQueueClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) TextLengthClause(i int) ITextLengthClauseContext
- func (s *CommunicationDescriptionEntryFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommunicationDescriptionEntryFormat2Context
- func (s *CommunicationDescriptionEntryFormat2Context) AllDestinationCountClause() []IDestinationCountClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) AllDestinationTableClause() []IDestinationTableClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) AllErrorKeyClause() []IErrorKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) AllStatusKeyClause() []IStatusKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) AllSymbolicDestinationClause() []ISymbolicDestinationClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) AllTextLengthClause() []ITextLengthClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) CD() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat2Context) CdName() ICdNameContext
- func (s *CommunicationDescriptionEntryFormat2Context) DOT_FS() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat2Context) DestinationCountClause(i int) IDestinationCountClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) DestinationTableClause(i int) IDestinationTableClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryFormat2Context) ErrorKeyClause(i int) IErrorKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryFormat2Context) FOR() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat2Context) GetParser() antlr.Parser
- func (s *CommunicationDescriptionEntryFormat2Context) GetRuleContext() antlr.RuleContext
- func (*CommunicationDescriptionEntryFormat2Context) IsCommunicationDescriptionEntryFormat2Context()
- func (s *CommunicationDescriptionEntryFormat2Context) OUTPUT() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat2Context) StatusKeyClause(i int) IStatusKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) SymbolicDestinationClause(i int) ISymbolicDestinationClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) TextLengthClause(i int) ITextLengthClauseContext
- func (s *CommunicationDescriptionEntryFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommunicationDescriptionEntryFormat3Context
- func (s *CommunicationDescriptionEntryFormat3Context) AllDataDescName() []IDataDescNameContext
- func (s *CommunicationDescriptionEntryFormat3Context) AllEndKeyClause() []IEndKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) AllMessageDateClause() []IMessageDateClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) AllMessageTimeClause() []IMessageTimeClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) AllStatusKeyClause() []IStatusKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) AllSymbolicTerminalClause() []ISymbolicTerminalClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) AllTextLengthClause() []ITextLengthClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) CD() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat3Context) CdName() ICdNameContext
- func (s *CommunicationDescriptionEntryFormat3Context) DOT_FS() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat3Context) DataDescName(i int) IDataDescNameContext
- func (s *CommunicationDescriptionEntryFormat3Context) EndKeyClause(i int) IEndKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryFormat3Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommunicationDescriptionEntryFormat3Context) FOR() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat3Context) GetParser() antlr.Parser
- func (s *CommunicationDescriptionEntryFormat3Context) GetRuleContext() antlr.RuleContext
- func (s *CommunicationDescriptionEntryFormat3Context) INITIAL() antlr.TerminalNode
- func (s *CommunicationDescriptionEntryFormat3Context) I_O() antlr.TerminalNode
- func (*CommunicationDescriptionEntryFormat3Context) IsCommunicationDescriptionEntryFormat3Context()
- func (s *CommunicationDescriptionEntryFormat3Context) MessageDateClause(i int) IMessageDateClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) MessageTimeClause(i int) IMessageTimeClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) StatusKeyClause(i int) IStatusKeyClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) SymbolicTerminalClause(i int) ISymbolicTerminalClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) TextLengthClause(i int) ITextLengthClauseContext
- func (s *CommunicationDescriptionEntryFormat3Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CommunicationSectionContext
- func (s *CommunicationSectionContext) AllCommunicationDescriptionEntry() []ICommunicationDescriptionEntryContext
- func (s *CommunicationSectionContext) AllDataDescriptionEntry() []IDataDescriptionEntryContext
- func (s *CommunicationSectionContext) COMMUNICATION() antlr.TerminalNode
- func (s *CommunicationSectionContext) CommunicationDescriptionEntry(i int) ICommunicationDescriptionEntryContext
- func (s *CommunicationSectionContext) DOT_FS() antlr.TerminalNode
- func (s *CommunicationSectionContext) DataDescriptionEntry(i int) IDataDescriptionEntryContext
- func (s *CommunicationSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CommunicationSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CommunicationSectionContext) GetParser() antlr.Parser
- func (s *CommunicationSectionContext) GetRuleContext() antlr.RuleContext
- func (*CommunicationSectionContext) IsCommunicationSectionContext()
- func (s *CommunicationSectionContext) SECTION() antlr.TerminalNode
- func (s *CommunicationSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CompilationUnitContext
- func (s *CompilationUnitContext) AllProgramUnit() []IProgramUnitContext
- func (s *CompilationUnitContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CompilationUnitContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CompilationUnitContext) GetParser() antlr.Parser
- func (s *CompilationUnitContext) GetRuleContext() antlr.RuleContext
- func (*CompilationUnitContext) IsCompilationUnitContext()
- func (s *CompilationUnitContext) ProgramUnit(i int) IProgramUnitContext
- func (s *CompilationUnitContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ComputeStatementContext
- func (s *ComputeStatementContext) AllComputeStore() []IComputeStoreContext
- func (s *ComputeStatementContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *ComputeStatementContext) COMPUTE() antlr.TerminalNode
- func (s *ComputeStatementContext) ComputeStore(i int) IComputeStoreContext
- func (s *ComputeStatementContext) END_COMPUTE() antlr.TerminalNode
- func (s *ComputeStatementContext) EQUAL() antlr.TerminalNode
- func (s *ComputeStatementContext) EQUALCHAR() antlr.TerminalNode
- func (s *ComputeStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ComputeStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ComputeStatementContext) GetParser() antlr.Parser
- func (s *ComputeStatementContext) GetRuleContext() antlr.RuleContext
- func (*ComputeStatementContext) IsComputeStatementContext()
- func (s *ComputeStatementContext) NotOnSizeErrorPhrase() INotOnSizeErrorPhraseContext
- func (s *ComputeStatementContext) OnSizeErrorPhrase() IOnSizeErrorPhraseContext
- func (s *ComputeStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ComputeStoreContext
- func (s *ComputeStoreContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ComputeStoreContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ComputeStoreContext) GetParser() antlr.Parser
- func (s *ComputeStoreContext) GetRuleContext() antlr.RuleContext
- func (s *ComputeStoreContext) Identifier() IIdentifierContext
- func (*ComputeStoreContext) IsComputeStoreContext()
- func (s *ComputeStoreContext) ROUNDED() antlr.TerminalNode
- func (s *ComputeStoreContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ComputerNameContext
- func (s *ComputerNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ComputerNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ComputerNameContext) GetParser() antlr.Parser
- func (s *ComputerNameContext) GetRuleContext() antlr.RuleContext
- func (*ComputerNameContext) IsComputerNameContext()
- func (s *ComputerNameContext) SystemName() ISystemNameContext
- func (s *ComputerNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ConditionContext
- func (s *ConditionContext) AllAndOrCondition() []IAndOrConditionContext
- func (s *ConditionContext) AndOrCondition(i int) IAndOrConditionContext
- func (s *ConditionContext) CombinableCondition() ICombinableConditionContext
- func (s *ConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ConditionContext) GetParser() antlr.Parser
- func (s *ConditionContext) GetRuleContext() antlr.RuleContext
- func (*ConditionContext) IsConditionContext()
- func (s *ConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ConditionNameContext
- func (s *ConditionNameContext) CobolWord() ICobolWordContext
- func (s *ConditionNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ConditionNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ConditionNameContext) GetParser() antlr.Parser
- func (s *ConditionNameContext) GetRuleContext() antlr.RuleContext
- func (*ConditionNameContext) IsConditionNameContext()
- func (s *ConditionNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ConditionNameReferenceContext
- func (s *ConditionNameReferenceContext) AllConditionNameSubscriptReference() []IConditionNameSubscriptReferenceContext
- func (s *ConditionNameReferenceContext) AllInData() []IInDataContext
- func (s *ConditionNameReferenceContext) AllInMnemonic() []IInMnemonicContext
- func (s *ConditionNameReferenceContext) ConditionName() IConditionNameContext
- func (s *ConditionNameReferenceContext) ConditionNameSubscriptReference(i int) IConditionNameSubscriptReferenceContext
- func (s *ConditionNameReferenceContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ConditionNameReferenceContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ConditionNameReferenceContext) GetParser() antlr.Parser
- func (s *ConditionNameReferenceContext) GetRuleContext() antlr.RuleContext
- func (s *ConditionNameReferenceContext) InData(i int) IInDataContext
- func (s *ConditionNameReferenceContext) InFile() IInFileContext
- func (s *ConditionNameReferenceContext) InMnemonic(i int) IInMnemonicContext
- func (*ConditionNameReferenceContext) IsConditionNameReferenceContext()
- func (s *ConditionNameReferenceContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ConditionNameSubscriptReferenceContext
- func (s *ConditionNameSubscriptReferenceContext) AllCOMMACHAR() []antlr.TerminalNode
- func (s *ConditionNameSubscriptReferenceContext) AllSubscript() []ISubscriptContext
- func (s *ConditionNameSubscriptReferenceContext) COMMACHAR(i int) antlr.TerminalNode
- func (s *ConditionNameSubscriptReferenceContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ConditionNameSubscriptReferenceContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ConditionNameSubscriptReferenceContext) GetParser() antlr.Parser
- func (s *ConditionNameSubscriptReferenceContext) GetRuleContext() antlr.RuleContext
- func (*ConditionNameSubscriptReferenceContext) IsConditionNameSubscriptReferenceContext()
- func (s *ConditionNameSubscriptReferenceContext) LPARENCHAR() antlr.TerminalNode
- func (s *ConditionNameSubscriptReferenceContext) RPARENCHAR() antlr.TerminalNode
- func (s *ConditionNameSubscriptReferenceContext) Subscript(i int) ISubscriptContext
- func (s *ConditionNameSubscriptReferenceContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ConfigurationSectionContext
- func (s *ConfigurationSectionContext) AllConfigurationSectionParagraph() []IConfigurationSectionParagraphContext
- func (s *ConfigurationSectionContext) CONFIGURATION() antlr.TerminalNode
- func (s *ConfigurationSectionContext) ConfigurationSectionParagraph(i int) IConfigurationSectionParagraphContext
- func (s *ConfigurationSectionContext) DOT_FS() antlr.TerminalNode
- func (s *ConfigurationSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ConfigurationSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ConfigurationSectionContext) GetParser() antlr.Parser
- func (s *ConfigurationSectionContext) GetRuleContext() antlr.RuleContext
- func (*ConfigurationSectionContext) IsConfigurationSectionContext()
- func (s *ConfigurationSectionContext) SECTION() antlr.TerminalNode
- func (s *ConfigurationSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ConfigurationSectionParagraphContext
- func (s *ConfigurationSectionParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ConfigurationSectionParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ConfigurationSectionParagraphContext) GetParser() antlr.Parser
- func (s *ConfigurationSectionParagraphContext) GetRuleContext() antlr.RuleContext
- func (*ConfigurationSectionParagraphContext) IsConfigurationSectionParagraphContext()
- func (s *ConfigurationSectionParagraphContext) ObjectComputerParagraph() IObjectComputerParagraphContext
- func (s *ConfigurationSectionParagraphContext) SourceComputerParagraph() ISourceComputerParagraphContext
- func (s *ConfigurationSectionParagraphContext) SpecialNamesParagraph() ISpecialNamesParagraphContext
- func (s *ConfigurationSectionParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ContinueStatementContext
- func (s *ContinueStatementContext) CONTINUE() antlr.TerminalNode
- func (s *ContinueStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ContinueStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ContinueStatementContext) GetParser() antlr.Parser
- func (s *ContinueStatementContext) GetRuleContext() antlr.RuleContext
- func (*ContinueStatementContext) IsContinueStatementContext()
- func (s *ContinueStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type CurrencySignClauseContext
- func (s *CurrencySignClauseContext) AllLiteral() []ILiteralContext
- func (s *CurrencySignClauseContext) CURRENCY() antlr.TerminalNode
- func (s *CurrencySignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *CurrencySignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *CurrencySignClauseContext) GetParser() antlr.Parser
- func (s *CurrencySignClauseContext) GetRuleContext() antlr.RuleContext
- func (s *CurrencySignClauseContext) IS() antlr.TerminalNode
- func (*CurrencySignClauseContext) IsCurrencySignClauseContext()
- func (s *CurrencySignClauseContext) Literal(i int) ILiteralContext
- func (s *CurrencySignClauseContext) PICTURE() antlr.TerminalNode
- func (s *CurrencySignClauseContext) SIGN() antlr.TerminalNode
- func (s *CurrencySignClauseContext) SYMBOL() antlr.TerminalNode
- func (s *CurrencySignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *CurrencySignClauseContext) WITH() antlr.TerminalNode
- type DataAlignedClauseContext
- func (s *DataAlignedClauseContext) ALIGNED() antlr.TerminalNode
- func (s *DataAlignedClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataAlignedClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataAlignedClauseContext) GetParser() antlr.Parser
- func (s *DataAlignedClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataAlignedClauseContext) IsDataAlignedClauseContext()
- func (s *DataAlignedClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataBaseSectionContext
- func (s *DataBaseSectionContext) AllDataBaseSectionEntry() []IDataBaseSectionEntryContext
- func (s *DataBaseSectionContext) DATA_BASE() antlr.TerminalNode
- func (s *DataBaseSectionContext) DOT_FS() antlr.TerminalNode
- func (s *DataBaseSectionContext) DataBaseSectionEntry(i int) IDataBaseSectionEntryContext
- func (s *DataBaseSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataBaseSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataBaseSectionContext) GetParser() antlr.Parser
- func (s *DataBaseSectionContext) GetRuleContext() antlr.RuleContext
- func (*DataBaseSectionContext) IsDataBaseSectionContext()
- func (s *DataBaseSectionContext) SECTION() antlr.TerminalNode
- func (s *DataBaseSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataBaseSectionEntryContext
- func (s *DataBaseSectionEntryContext) AllLiteral() []ILiteralContext
- func (s *DataBaseSectionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataBaseSectionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataBaseSectionEntryContext) GetParser() antlr.Parser
- func (s *DataBaseSectionEntryContext) GetRuleContext() antlr.RuleContext
- func (s *DataBaseSectionEntryContext) INVOKE() antlr.TerminalNode
- func (s *DataBaseSectionEntryContext) IntegerLiteral() IIntegerLiteralContext
- func (*DataBaseSectionEntryContext) IsDataBaseSectionEntryContext()
- func (s *DataBaseSectionEntryContext) Literal(i int) ILiteralContext
- func (s *DataBaseSectionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataBlankWhenZeroClauseContext
- func (s *DataBlankWhenZeroClauseContext) BLANK() antlr.TerminalNode
- func (s *DataBlankWhenZeroClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataBlankWhenZeroClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataBlankWhenZeroClauseContext) GetParser() antlr.Parser
- func (s *DataBlankWhenZeroClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataBlankWhenZeroClauseContext) IsDataBlankWhenZeroClauseContext()
- func (s *DataBlankWhenZeroClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DataBlankWhenZeroClauseContext) WHEN() antlr.TerminalNode
- func (s *DataBlankWhenZeroClauseContext) ZERO() antlr.TerminalNode
- func (s *DataBlankWhenZeroClauseContext) ZEROES() antlr.TerminalNode
- func (s *DataBlankWhenZeroClauseContext) ZEROS() antlr.TerminalNode
- type DataCommonOwnLocalClauseContext
- func (s *DataCommonOwnLocalClauseContext) COMMON() antlr.TerminalNode
- func (s *DataCommonOwnLocalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataCommonOwnLocalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataCommonOwnLocalClauseContext) GetParser() antlr.Parser
- func (s *DataCommonOwnLocalClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataCommonOwnLocalClauseContext) IsDataCommonOwnLocalClauseContext()
- func (s *DataCommonOwnLocalClauseContext) LOCAL() antlr.TerminalNode
- func (s *DataCommonOwnLocalClauseContext) OWN() antlr.TerminalNode
- func (s *DataCommonOwnLocalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDescNameContext
- func (s *DataDescNameContext) CURSOR() antlr.TerminalNode
- func (s *DataDescNameContext) DataName() IDataNameContext
- func (s *DataDescNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDescNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDescNameContext) FILLER() antlr.TerminalNode
- func (s *DataDescNameContext) GetParser() antlr.Parser
- func (s *DataDescNameContext) GetRuleContext() antlr.RuleContext
- func (*DataDescNameContext) IsDataDescNameContext()
- func (s *DataDescNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDescriptionEntryContext
- func (s *DataDescriptionEntryContext) DataDescriptionEntryExecSql() IDataDescriptionEntryExecSqlContext
- func (s *DataDescriptionEntryContext) DataDescriptionEntryFormat1() IDataDescriptionEntryFormat1Context
- func (s *DataDescriptionEntryContext) DataDescriptionEntryFormat2() IDataDescriptionEntryFormat2Context
- func (s *DataDescriptionEntryContext) DataDescriptionEntryFormat3() IDataDescriptionEntryFormat3Context
- func (s *DataDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryContext) GetParser() antlr.Parser
- func (s *DataDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (*DataDescriptionEntryContext) IsDataDescriptionEntryContext()
- func (s *DataDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDescriptionEntryExecSqlContext
- func (s *DataDescriptionEntryExecSqlContext) AllEXECSQLLINE() []antlr.TerminalNode
- func (s *DataDescriptionEntryExecSqlContext) DOT_FS() antlr.TerminalNode
- func (s *DataDescriptionEntryExecSqlContext) EXECSQLLINE(i int) antlr.TerminalNode
- func (s *DataDescriptionEntryExecSqlContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryExecSqlContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryExecSqlContext) GetParser() antlr.Parser
- func (s *DataDescriptionEntryExecSqlContext) GetRuleContext() antlr.RuleContext
- func (*DataDescriptionEntryExecSqlContext) IsDataDescriptionEntryExecSqlContext()
- func (s *DataDescriptionEntryExecSqlContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDescriptionEntryFormat1Context
- func (s *DataDescriptionEntryFormat1Context) AllDataAlignedClause() []IDataAlignedClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataBlankWhenZeroClause() []IDataBlankWhenZeroClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataCommonOwnLocalClause() []IDataCommonOwnLocalClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataExternalClause() []IDataExternalClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataGlobalClause() []IDataGlobalClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataIntegerStringClause() []IDataIntegerStringClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataJustifiedClause() []IDataJustifiedClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataOccursClause() []IDataOccursClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataPictureClause() []IDataPictureClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataReceivedByClause() []IDataReceivedByClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataRecordAreaClause() []IDataRecordAreaClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataRedefinesClause() []IDataRedefinesClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataSignClause() []IDataSignClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataSynchronizedClause() []IDataSynchronizedClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataThreadLocalClause() []IDataThreadLocalClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataTypeClause() []IDataTypeClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataTypeDefClause() []IDataTypeDefClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataUsageClause() []IDataUsageClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataUsingClause() []IDataUsingClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataValueClause() []IDataValueClauseContext
- func (s *DataDescriptionEntryFormat1Context) AllDataWithLowerBoundsClause() []IDataWithLowerBoundsClauseContext
- func (s *DataDescriptionEntryFormat1Context) DOT_FS() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat1Context) DataAlignedClause(i int) IDataAlignedClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataBlankWhenZeroClause(i int) IDataBlankWhenZeroClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataCommonOwnLocalClause(i int) IDataCommonOwnLocalClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataExternalClause(i int) IDataExternalClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataGlobalClause(i int) IDataGlobalClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataIntegerStringClause(i int) IDataIntegerStringClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataJustifiedClause(i int) IDataJustifiedClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataName() IDataNameContext
- func (s *DataDescriptionEntryFormat1Context) DataOccursClause(i int) IDataOccursClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataPictureClause(i int) IDataPictureClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataReceivedByClause(i int) IDataReceivedByClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataRecordAreaClause(i int) IDataRecordAreaClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataRedefinesClause(i int) IDataRedefinesClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataSignClause(i int) IDataSignClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataSynchronizedClause(i int) IDataSynchronizedClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataThreadLocalClause(i int) IDataThreadLocalClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataTypeClause(i int) IDataTypeClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataTypeDefClause(i int) IDataTypeDefClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataUsageClause(i int) IDataUsageClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataUsingClause(i int) IDataUsingClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataValueClause(i int) IDataValueClauseContext
- func (s *DataDescriptionEntryFormat1Context) DataWithLowerBoundsClause(i int) IDataWithLowerBoundsClauseContext
- func (s *DataDescriptionEntryFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryFormat1Context) FILLER() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat1Context) GetParser() antlr.Parser
- func (s *DataDescriptionEntryFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *DataDescriptionEntryFormat1Context) INTEGERLITERAL() antlr.TerminalNode
- func (*DataDescriptionEntryFormat1Context) IsDataDescriptionEntryFormat1Context()
- func (s *DataDescriptionEntryFormat1Context) LEVEL_NUMBER_77() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDescriptionEntryFormat2Context
- func (s *DataDescriptionEntryFormat2Context) DOT_FS() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat2Context) DataName() IDataNameContext
- func (s *DataDescriptionEntryFormat2Context) DataRenamesClause() IDataRenamesClauseContext
- func (s *DataDescriptionEntryFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryFormat2Context) GetParser() antlr.Parser
- func (s *DataDescriptionEntryFormat2Context) GetRuleContext() antlr.RuleContext
- func (*DataDescriptionEntryFormat2Context) IsDataDescriptionEntryFormat2Context()
- func (s *DataDescriptionEntryFormat2Context) LEVEL_NUMBER_66() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDescriptionEntryFormat3Context
- func (s *DataDescriptionEntryFormat3Context) ConditionName() IConditionNameContext
- func (s *DataDescriptionEntryFormat3Context) DOT_FS() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat3Context) DataValueClause() IDataValueClauseContext
- func (s *DataDescriptionEntryFormat3Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryFormat3Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDescriptionEntryFormat3Context) GetParser() antlr.Parser
- func (s *DataDescriptionEntryFormat3Context) GetRuleContext() antlr.RuleContext
- func (*DataDescriptionEntryFormat3Context) IsDataDescriptionEntryFormat3Context()
- func (s *DataDescriptionEntryFormat3Context) LEVEL_NUMBER_88() antlr.TerminalNode
- func (s *DataDescriptionEntryFormat3Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDivisionContext
- func (s *DataDivisionContext) AllDataDivisionSection() []IDataDivisionSectionContext
- func (s *DataDivisionContext) DATA() antlr.TerminalNode
- func (s *DataDivisionContext) DIVISION() antlr.TerminalNode
- func (s *DataDivisionContext) DOT_FS() antlr.TerminalNode
- func (s *DataDivisionContext) DataDivisionSection(i int) IDataDivisionSectionContext
- func (s *DataDivisionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDivisionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDivisionContext) GetParser() antlr.Parser
- func (s *DataDivisionContext) GetRuleContext() antlr.RuleContext
- func (*DataDivisionContext) IsDataDivisionContext()
- func (s *DataDivisionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataDivisionSectionContext
- func (s *DataDivisionSectionContext) CommunicationSection() ICommunicationSectionContext
- func (s *DataDivisionSectionContext) DataBaseSection() IDataBaseSectionContext
- func (s *DataDivisionSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataDivisionSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataDivisionSectionContext) FileSection() IFileSectionContext
- func (s *DataDivisionSectionContext) GetParser() antlr.Parser
- func (s *DataDivisionSectionContext) GetRuleContext() antlr.RuleContext
- func (*DataDivisionSectionContext) IsDataDivisionSectionContext()
- func (s *DataDivisionSectionContext) LinkageSection() ILinkageSectionContext
- func (s *DataDivisionSectionContext) LocalStorageSection() ILocalStorageSectionContext
- func (s *DataDivisionSectionContext) ProgramLibrarySection() IProgramLibrarySectionContext
- func (s *DataDivisionSectionContext) ReportSection() IReportSectionContext
- func (s *DataDivisionSectionContext) ScreenSection() IScreenSectionContext
- func (s *DataDivisionSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DataDivisionSectionContext) WorkingStorageSection() IWorkingStorageSectionContext
- type DataExternalClauseContext
- func (s *DataExternalClauseContext) BY() antlr.TerminalNode
- func (s *DataExternalClauseContext) EXTERNAL() antlr.TerminalNode
- func (s *DataExternalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataExternalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataExternalClauseContext) GetParser() antlr.Parser
- func (s *DataExternalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataExternalClauseContext) IS() antlr.TerminalNode
- func (*DataExternalClauseContext) IsDataExternalClauseContext()
- func (s *DataExternalClauseContext) Literal() ILiteralContext
- func (s *DataExternalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataGlobalClauseContext
- func (s *DataGlobalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataGlobalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataGlobalClauseContext) GLOBAL() antlr.TerminalNode
- func (s *DataGlobalClauseContext) GetParser() antlr.Parser
- func (s *DataGlobalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataGlobalClauseContext) IS() antlr.TerminalNode
- func (*DataGlobalClauseContext) IsDataGlobalClauseContext()
- func (s *DataGlobalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataIntegerStringClauseContext
- func (s *DataIntegerStringClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataIntegerStringClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataIntegerStringClauseContext) GetParser() antlr.Parser
- func (s *DataIntegerStringClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataIntegerStringClauseContext) INTEGER() antlr.TerminalNode
- func (*DataIntegerStringClauseContext) IsDataIntegerStringClauseContext()
- func (s *DataIntegerStringClauseContext) STRING() antlr.TerminalNode
- func (s *DataIntegerStringClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataJustifiedClauseContext
- func (s *DataJustifiedClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataJustifiedClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataJustifiedClauseContext) GetParser() antlr.Parser
- func (s *DataJustifiedClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataJustifiedClauseContext) IsDataJustifiedClauseContext()
- func (s *DataJustifiedClauseContext) JUST() antlr.TerminalNode
- func (s *DataJustifiedClauseContext) JUSTIFIED() antlr.TerminalNode
- func (s *DataJustifiedClauseContext) RIGHT() antlr.TerminalNode
- func (s *DataJustifiedClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataNameContext
- func (s *DataNameContext) CobolWord() ICobolWordContext
- func (s *DataNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataNameContext) GetParser() antlr.Parser
- func (s *DataNameContext) GetRuleContext() antlr.RuleContext
- func (*DataNameContext) IsDataNameContext()
- func (s *DataNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataOccursClauseContext
- func (s *DataOccursClauseContext) AllDataOccursSort() []IDataOccursSortContext
- func (s *DataOccursClauseContext) AllIndexName() []IIndexNameContext
- func (s *DataOccursClauseContext) BY() antlr.TerminalNode
- func (s *DataOccursClauseContext) DEPENDING() antlr.TerminalNode
- func (s *DataOccursClauseContext) DataOccursSort(i int) IDataOccursSortContext
- func (s *DataOccursClauseContext) DataOccursTo() IDataOccursToContext
- func (s *DataOccursClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataOccursClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataOccursClauseContext) GetParser() antlr.Parser
- func (s *DataOccursClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataOccursClauseContext) INDEXED() antlr.TerminalNode
- func (s *DataOccursClauseContext) IndexName(i int) IIndexNameContext
- func (s *DataOccursClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*DataOccursClauseContext) IsDataOccursClauseContext()
- func (s *DataOccursClauseContext) LOCAL() antlr.TerminalNode
- func (s *DataOccursClauseContext) OCCURS() antlr.TerminalNode
- func (s *DataOccursClauseContext) ON() antlr.TerminalNode
- func (s *DataOccursClauseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *DataOccursClauseContext) TIMES() antlr.TerminalNode
- func (s *DataOccursClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataOccursSortContext
- func (s *DataOccursSortContext) ASCENDING() antlr.TerminalNode
- func (s *DataOccursSortContext) AllQualifiedDataName() []IQualifiedDataNameContext
- func (s *DataOccursSortContext) DESCENDING() antlr.TerminalNode
- func (s *DataOccursSortContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataOccursSortContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataOccursSortContext) GetParser() antlr.Parser
- func (s *DataOccursSortContext) GetRuleContext() antlr.RuleContext
- func (s *DataOccursSortContext) IS() antlr.TerminalNode
- func (*DataOccursSortContext) IsDataOccursSortContext()
- func (s *DataOccursSortContext) KEY() antlr.TerminalNode
- func (s *DataOccursSortContext) QualifiedDataName(i int) IQualifiedDataNameContext
- func (s *DataOccursSortContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataOccursToContext
- func (s *DataOccursToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataOccursToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataOccursToContext) GetParser() antlr.Parser
- func (s *DataOccursToContext) GetRuleContext() antlr.RuleContext
- func (s *DataOccursToContext) IntegerLiteral() IIntegerLiteralContext
- func (*DataOccursToContext) IsDataOccursToContext()
- func (s *DataOccursToContext) TO() antlr.TerminalNode
- func (s *DataOccursToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataPictureClauseContext
- func (s *DataPictureClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataPictureClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataPictureClauseContext) GetParser() antlr.Parser
- func (s *DataPictureClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataPictureClauseContext) IS() antlr.TerminalNode
- func (*DataPictureClauseContext) IsDataPictureClauseContext()
- func (s *DataPictureClauseContext) PIC() antlr.TerminalNode
- func (s *DataPictureClauseContext) PICTURE() antlr.TerminalNode
- func (s *DataPictureClauseContext) PictureString() IPictureStringContext
- func (s *DataPictureClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataReceivedByClauseContext
- func (s *DataReceivedByClauseContext) BY() antlr.TerminalNode
- func (s *DataReceivedByClauseContext) CONTENT() antlr.TerminalNode
- func (s *DataReceivedByClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataReceivedByClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataReceivedByClauseContext) GetParser() antlr.Parser
- func (s *DataReceivedByClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataReceivedByClauseContext) IsDataReceivedByClauseContext()
- func (s *DataReceivedByClauseContext) RECEIVED() antlr.TerminalNode
- func (s *DataReceivedByClauseContext) REF() antlr.TerminalNode
- func (s *DataReceivedByClauseContext) REFERENCE() antlr.TerminalNode
- func (s *DataReceivedByClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataRecordAreaClauseContext
- func (s *DataRecordAreaClauseContext) AREA() antlr.TerminalNode
- func (s *DataRecordAreaClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataRecordAreaClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataRecordAreaClauseContext) GetParser() antlr.Parser
- func (s *DataRecordAreaClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataRecordAreaClauseContext) IsDataRecordAreaClauseContext()
- func (s *DataRecordAreaClauseContext) RECORD() antlr.TerminalNode
- func (s *DataRecordAreaClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataRecordsClauseContext
- func (s *DataRecordsClauseContext) ARE() antlr.TerminalNode
- func (s *DataRecordsClauseContext) AllDataName() []IDataNameContext
- func (s *DataRecordsClauseContext) DATA() antlr.TerminalNode
- func (s *DataRecordsClauseContext) DataName(i int) IDataNameContext
- func (s *DataRecordsClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataRecordsClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataRecordsClauseContext) GetParser() antlr.Parser
- func (s *DataRecordsClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataRecordsClauseContext) IS() antlr.TerminalNode
- func (*DataRecordsClauseContext) IsDataRecordsClauseContext()
- func (s *DataRecordsClauseContext) RECORD() antlr.TerminalNode
- func (s *DataRecordsClauseContext) RECORDS() antlr.TerminalNode
- func (s *DataRecordsClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataRedefinesClauseContext
- func (s *DataRedefinesClauseContext) DataName() IDataNameContext
- func (s *DataRedefinesClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataRedefinesClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataRedefinesClauseContext) GetParser() antlr.Parser
- func (s *DataRedefinesClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataRedefinesClauseContext) IsDataRedefinesClauseContext()
- func (s *DataRedefinesClauseContext) REDEFINES() antlr.TerminalNode
- func (s *DataRedefinesClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataRenamesClauseContext
- func (s *DataRenamesClauseContext) AllQualifiedDataName() []IQualifiedDataNameContext
- func (s *DataRenamesClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataRenamesClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataRenamesClauseContext) GetParser() antlr.Parser
- func (s *DataRenamesClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataRenamesClauseContext) IsDataRenamesClauseContext()
- func (s *DataRenamesClauseContext) QualifiedDataName(i int) IQualifiedDataNameContext
- func (s *DataRenamesClauseContext) RENAMES() antlr.TerminalNode
- func (s *DataRenamesClauseContext) THROUGH() antlr.TerminalNode
- func (s *DataRenamesClauseContext) THRU() antlr.TerminalNode
- func (s *DataRenamesClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataSignClauseContext
- func (s *DataSignClauseContext) CHARACTER() antlr.TerminalNode
- func (s *DataSignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataSignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataSignClauseContext) GetParser() antlr.Parser
- func (s *DataSignClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataSignClauseContext) IS() antlr.TerminalNode
- func (*DataSignClauseContext) IsDataSignClauseContext()
- func (s *DataSignClauseContext) LEADING() antlr.TerminalNode
- func (s *DataSignClauseContext) SEPARATE() antlr.TerminalNode
- func (s *DataSignClauseContext) SIGN() antlr.TerminalNode
- func (s *DataSignClauseContext) TRAILING() antlr.TerminalNode
- func (s *DataSignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataSynchronizedClauseContext
- func (s *DataSynchronizedClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataSynchronizedClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataSynchronizedClauseContext) GetParser() antlr.Parser
- func (s *DataSynchronizedClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataSynchronizedClauseContext) IsDataSynchronizedClauseContext()
- func (s *DataSynchronizedClauseContext) LEFT() antlr.TerminalNode
- func (s *DataSynchronizedClauseContext) RIGHT() antlr.TerminalNode
- func (s *DataSynchronizedClauseContext) SYNC() antlr.TerminalNode
- func (s *DataSynchronizedClauseContext) SYNCHRONIZED() antlr.TerminalNode
- func (s *DataSynchronizedClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataThreadLocalClauseContext
- func (s *DataThreadLocalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataThreadLocalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataThreadLocalClauseContext) GetParser() antlr.Parser
- func (s *DataThreadLocalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataThreadLocalClauseContext) IS() antlr.TerminalNode
- func (*DataThreadLocalClauseContext) IsDataThreadLocalClauseContext()
- func (s *DataThreadLocalClauseContext) THREAD_LOCAL() antlr.TerminalNode
- func (s *DataThreadLocalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataTypeClauseContext
- func (s *DataTypeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataTypeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataTypeClauseContext) GetParser() antlr.Parser
- func (s *DataTypeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataTypeClauseContext) IS() antlr.TerminalNode
- func (*DataTypeClauseContext) IsDataTypeClauseContext()
- func (s *DataTypeClauseContext) LONG_DATE() antlr.TerminalNode
- func (s *DataTypeClauseContext) LONG_TIME() antlr.TerminalNode
- func (s *DataTypeClauseContext) NUMERIC_DATE() antlr.TerminalNode
- func (s *DataTypeClauseContext) NUMERIC_TIME() antlr.TerminalNode
- func (s *DataTypeClauseContext) SHORT_DATE() antlr.TerminalNode
- func (s *DataTypeClauseContext) TYPE() antlr.TerminalNode
- func (s *DataTypeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataTypeDefClauseContext
- func (s *DataTypeDefClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataTypeDefClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataTypeDefClauseContext) GetParser() antlr.Parser
- func (s *DataTypeDefClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataTypeDefClauseContext) IS() antlr.TerminalNode
- func (*DataTypeDefClauseContext) IsDataTypeDefClauseContext()
- func (s *DataTypeDefClauseContext) TYPEDEF() antlr.TerminalNode
- func (s *DataTypeDefClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataUsageClauseContext
- func (s *DataUsageClauseContext) BINARY() antlr.TerminalNode
- func (s *DataUsageClauseContext) BIT() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMP() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMPUTATIONAL() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMPUTATIONAL_1() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMPUTATIONAL_2() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMPUTATIONAL_3() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMPUTATIONAL_4() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMPUTATIONAL_5() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMP_1() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMP_2() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMP_3() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMP_4() antlr.TerminalNode
- func (s *DataUsageClauseContext) COMP_5() antlr.TerminalNode
- func (s *DataUsageClauseContext) CONTROL_POINT() antlr.TerminalNode
- func (s *DataUsageClauseContext) DATE() antlr.TerminalNode
- func (s *DataUsageClauseContext) DISPLAY() antlr.TerminalNode
- func (s *DataUsageClauseContext) DISPLAY_1() antlr.TerminalNode
- func (s *DataUsageClauseContext) DOUBLE() antlr.TerminalNode
- func (s *DataUsageClauseContext) EVENT() antlr.TerminalNode
- func (s *DataUsageClauseContext) EXTENDED() antlr.TerminalNode
- func (s *DataUsageClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataUsageClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataUsageClauseContext) FUNCTION_POINTER() antlr.TerminalNode
- func (s *DataUsageClauseContext) GetParser() antlr.Parser
- func (s *DataUsageClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataUsageClauseContext) INDEX() antlr.TerminalNode
- func (s *DataUsageClauseContext) IS() antlr.TerminalNode
- func (*DataUsageClauseContext) IsDataUsageClauseContext()
- func (s *DataUsageClauseContext) KANJI() antlr.TerminalNode
- func (s *DataUsageClauseContext) LOCK() antlr.TerminalNode
- func (s *DataUsageClauseContext) NATIONAL() antlr.TerminalNode
- func (s *DataUsageClauseContext) PACKED_DECIMAL() antlr.TerminalNode
- func (s *DataUsageClauseContext) POINTER() antlr.TerminalNode
- func (s *DataUsageClauseContext) PROCEDURE_POINTER() antlr.TerminalNode
- func (s *DataUsageClauseContext) REAL() antlr.TerminalNode
- func (s *DataUsageClauseContext) TASK() antlr.TerminalNode
- func (s *DataUsageClauseContext) TRUNCATED() antlr.TerminalNode
- func (s *DataUsageClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DataUsageClauseContext) USAGE() antlr.TerminalNode
- type DataUsingClauseContext
- func (s *DataUsingClauseContext) CONVENTION() antlr.TerminalNode
- func (s *DataUsingClauseContext) CobolWord() ICobolWordContext
- func (s *DataUsingClauseContext) DataName() IDataNameContext
- func (s *DataUsingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataUsingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataUsingClauseContext) GetParser() antlr.Parser
- func (s *DataUsingClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataUsingClauseContext) IsDataUsingClauseContext()
- func (s *DataUsingClauseContext) LANGUAGE() antlr.TerminalNode
- func (s *DataUsingClauseContext) OF() antlr.TerminalNode
- func (s *DataUsingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DataUsingClauseContext) USING() antlr.TerminalNode
- type DataValueClauseContext
- func (s *DataValueClauseContext) ARE() antlr.TerminalNode
- func (s *DataValueClauseContext) AllCOMMACHAR() []antlr.TerminalNode
- func (s *DataValueClauseContext) AllDataValueInterval() []IDataValueIntervalContext
- func (s *DataValueClauseContext) COMMACHAR(i int) antlr.TerminalNode
- func (s *DataValueClauseContext) DataValueInterval(i int) IDataValueIntervalContext
- func (s *DataValueClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataValueClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataValueClauseContext) GetParser() antlr.Parser
- func (s *DataValueClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DataValueClauseContext) IS() antlr.TerminalNode
- func (*DataValueClauseContext) IsDataValueClauseContext()
- func (s *DataValueClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DataValueClauseContext) VALUE() antlr.TerminalNode
- func (s *DataValueClauseContext) VALUES() antlr.TerminalNode
- type DataValueIntervalContext
- func (s *DataValueIntervalContext) DataValueIntervalFrom() IDataValueIntervalFromContext
- func (s *DataValueIntervalContext) DataValueIntervalTo() IDataValueIntervalToContext
- func (s *DataValueIntervalContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataValueIntervalContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataValueIntervalContext) GetParser() antlr.Parser
- func (s *DataValueIntervalContext) GetRuleContext() antlr.RuleContext
- func (*DataValueIntervalContext) IsDataValueIntervalContext()
- func (s *DataValueIntervalContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataValueIntervalFromContext
- func (s *DataValueIntervalFromContext) CobolWord() ICobolWordContext
- func (s *DataValueIntervalFromContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataValueIntervalFromContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataValueIntervalFromContext) GetParser() antlr.Parser
- func (s *DataValueIntervalFromContext) GetRuleContext() antlr.RuleContext
- func (*DataValueIntervalFromContext) IsDataValueIntervalFromContext()
- func (s *DataValueIntervalFromContext) Literal() ILiteralContext
- func (s *DataValueIntervalFromContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataValueIntervalToContext
- func (s *DataValueIntervalToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataValueIntervalToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataValueIntervalToContext) GetParser() antlr.Parser
- func (s *DataValueIntervalToContext) GetRuleContext() antlr.RuleContext
- func (*DataValueIntervalToContext) IsDataValueIntervalToContext()
- func (s *DataValueIntervalToContext) Literal() ILiteralContext
- func (s *DataValueIntervalToContext) THROUGH() antlr.TerminalNode
- func (s *DataValueIntervalToContext) THRU() antlr.TerminalNode
- func (s *DataValueIntervalToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DataWithLowerBoundsClauseContext
- func (s *DataWithLowerBoundsClauseContext) BOUNDS() antlr.TerminalNode
- func (s *DataWithLowerBoundsClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DataWithLowerBoundsClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DataWithLowerBoundsClauseContext) GetParser() antlr.Parser
- func (s *DataWithLowerBoundsClauseContext) GetRuleContext() antlr.RuleContext
- func (*DataWithLowerBoundsClauseContext) IsDataWithLowerBoundsClauseContext()
- func (s *DataWithLowerBoundsClauseContext) LOWER() antlr.TerminalNode
- func (s *DataWithLowerBoundsClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DataWithLowerBoundsClauseContext) WITH() antlr.TerminalNode
- type DateCompiledParagraphContext
- func (s *DateCompiledParagraphContext) CommentEntry() ICommentEntryContext
- func (s *DateCompiledParagraphContext) DATE_COMPILED() antlr.TerminalNode
- func (s *DateCompiledParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *DateCompiledParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DateCompiledParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DateCompiledParagraphContext) GetParser() antlr.Parser
- func (s *DateCompiledParagraphContext) GetRuleContext() antlr.RuleContext
- func (*DateCompiledParagraphContext) IsDateCompiledParagraphContext()
- func (s *DateCompiledParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DateWrittenParagraphContext
- func (s *DateWrittenParagraphContext) CommentEntry() ICommentEntryContext
- func (s *DateWrittenParagraphContext) DATE_WRITTEN() antlr.TerminalNode
- func (s *DateWrittenParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *DateWrittenParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DateWrittenParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DateWrittenParagraphContext) GetParser() antlr.Parser
- func (s *DateWrittenParagraphContext) GetRuleContext() antlr.RuleContext
- func (*DateWrittenParagraphContext) IsDateWrittenParagraphContext()
- func (s *DateWrittenParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DecimalPointClauseContext
- func (s *DecimalPointClauseContext) COMMA() antlr.TerminalNode
- func (s *DecimalPointClauseContext) DECIMAL_POINT() antlr.TerminalNode
- func (s *DecimalPointClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DecimalPointClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DecimalPointClauseContext) GetParser() antlr.Parser
- func (s *DecimalPointClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DecimalPointClauseContext) IS() antlr.TerminalNode
- func (*DecimalPointClauseContext) IsDecimalPointClauseContext()
- func (s *DecimalPointClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DefaultComputationalSignClauseContext
- func (s *DefaultComputationalSignClauseContext) CHARACTER() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) COMP() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) COMPUTATIONAL() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) DEFAULT() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DefaultComputationalSignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DefaultComputationalSignClauseContext) GetParser() antlr.Parser
- func (s *DefaultComputationalSignClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DefaultComputationalSignClauseContext) IS() antlr.TerminalNode
- func (*DefaultComputationalSignClauseContext) IsDefaultComputationalSignClauseContext()
- func (s *DefaultComputationalSignClauseContext) LEADING() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) SEPARATE() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) SIGN() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) TRAILING() antlr.TerminalNode
- func (s *DefaultComputationalSignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DefaultDisplaySignClauseContext
- func (s *DefaultDisplaySignClauseContext) CHARACTER() antlr.TerminalNode
- func (s *DefaultDisplaySignClauseContext) DEFAULT_DISPLAY() antlr.TerminalNode
- func (s *DefaultDisplaySignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DefaultDisplaySignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DefaultDisplaySignClauseContext) GetParser() antlr.Parser
- func (s *DefaultDisplaySignClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DefaultDisplaySignClauseContext) IS() antlr.TerminalNode
- func (*DefaultDisplaySignClauseContext) IsDefaultDisplaySignClauseContext()
- func (s *DefaultDisplaySignClauseContext) LEADING() antlr.TerminalNode
- func (s *DefaultDisplaySignClauseContext) SEPARATE() antlr.TerminalNode
- func (s *DefaultDisplaySignClauseContext) SIGN() antlr.TerminalNode
- func (s *DefaultDisplaySignClauseContext) TRAILING() antlr.TerminalNode
- func (s *DefaultDisplaySignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DeleteStatementContext
- func (s *DeleteStatementContext) DELETE() antlr.TerminalNode
- func (s *DeleteStatementContext) END_DELETE() antlr.TerminalNode
- func (s *DeleteStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DeleteStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DeleteStatementContext) FileName() IFileNameContext
- func (s *DeleteStatementContext) GetParser() antlr.Parser
- func (s *DeleteStatementContext) GetRuleContext() antlr.RuleContext
- func (s *DeleteStatementContext) InvalidKeyPhrase() IInvalidKeyPhraseContext
- func (*DeleteStatementContext) IsDeleteStatementContext()
- func (s *DeleteStatementContext) NotInvalidKeyPhrase() INotInvalidKeyPhraseContext
- func (s *DeleteStatementContext) RECORD() antlr.TerminalNode
- func (s *DeleteStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DestinationCountClauseContext
- func (s *DestinationCountClauseContext) COUNT() antlr.TerminalNode
- func (s *DestinationCountClauseContext) DESTINATION() antlr.TerminalNode
- func (s *DestinationCountClauseContext) DataDescName() IDataDescNameContext
- func (s *DestinationCountClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DestinationCountClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DestinationCountClauseContext) GetParser() antlr.Parser
- func (s *DestinationCountClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DestinationCountClauseContext) IS() antlr.TerminalNode
- func (*DestinationCountClauseContext) IsDestinationCountClauseContext()
- func (s *DestinationCountClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DestinationTableClauseContext
- func (s *DestinationTableClauseContext) AllIndexName() []IIndexNameContext
- func (s *DestinationTableClauseContext) BY() antlr.TerminalNode
- func (s *DestinationTableClauseContext) DESTINATION() antlr.TerminalNode
- func (s *DestinationTableClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DestinationTableClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DestinationTableClauseContext) GetParser() antlr.Parser
- func (s *DestinationTableClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DestinationTableClauseContext) INDEXED() antlr.TerminalNode
- func (s *DestinationTableClauseContext) IndexName(i int) IIndexNameContext
- func (s *DestinationTableClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*DestinationTableClauseContext) IsDestinationTableClauseContext()
- func (s *DestinationTableClauseContext) OCCURS() antlr.TerminalNode
- func (s *DestinationTableClauseContext) TABLE() antlr.TerminalNode
- func (s *DestinationTableClauseContext) TIMES() antlr.TerminalNode
- func (s *DestinationTableClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DisableStatementContext
- func (s *DisableStatementContext) CdName() ICdNameContext
- func (s *DisableStatementContext) DISABLE() antlr.TerminalNode
- func (s *DisableStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DisableStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DisableStatementContext) GetParser() antlr.Parser
- func (s *DisableStatementContext) GetRuleContext() antlr.RuleContext
- func (s *DisableStatementContext) INPUT() antlr.TerminalNode
- func (s *DisableStatementContext) I_O() antlr.TerminalNode
- func (s *DisableStatementContext) Identifier() IIdentifierContext
- func (*DisableStatementContext) IsDisableStatementContext()
- func (s *DisableStatementContext) KEY() antlr.TerminalNode
- func (s *DisableStatementContext) Literal() ILiteralContext
- func (s *DisableStatementContext) OUTPUT() antlr.TerminalNode
- func (s *DisableStatementContext) TERMINAL() antlr.TerminalNode
- func (s *DisableStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DisableStatementContext) WITH() antlr.TerminalNode
- type DiskSizeClauseContext
- func (s *DiskSizeClauseContext) CobolWord() ICobolWordContext
- func (s *DiskSizeClauseContext) DISK() antlr.TerminalNode
- func (s *DiskSizeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DiskSizeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DiskSizeClauseContext) GetParser() antlr.Parser
- func (s *DiskSizeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *DiskSizeClauseContext) IS() antlr.TerminalNode
- func (s *DiskSizeClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*DiskSizeClauseContext) IsDiskSizeClauseContext()
- func (s *DiskSizeClauseContext) MODULES() antlr.TerminalNode
- func (s *DiskSizeClauseContext) SIZE() antlr.TerminalNode
- func (s *DiskSizeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DiskSizeClauseContext) WORDS() antlr.TerminalNode
- type DisplayAtContext
- func (s *DisplayAtContext) AT() antlr.TerminalNode
- func (s *DisplayAtContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DisplayAtContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DisplayAtContext) GetParser() antlr.Parser
- func (s *DisplayAtContext) GetRuleContext() antlr.RuleContext
- func (s *DisplayAtContext) Identifier() IIdentifierContext
- func (*DisplayAtContext) IsDisplayAtContext()
- func (s *DisplayAtContext) Literal() ILiteralContext
- func (s *DisplayAtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DisplayOperandContext
- func (s *DisplayOperandContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DisplayOperandContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DisplayOperandContext) GetParser() antlr.Parser
- func (s *DisplayOperandContext) GetRuleContext() antlr.RuleContext
- func (s *DisplayOperandContext) Identifier() IIdentifierContext
- func (*DisplayOperandContext) IsDisplayOperandContext()
- func (s *DisplayOperandContext) Literal() ILiteralContext
- func (s *DisplayOperandContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DisplayStatementContext
- func (s *DisplayStatementContext) AllDisplayOperand() []IDisplayOperandContext
- func (s *DisplayStatementContext) DISPLAY() antlr.TerminalNode
- func (s *DisplayStatementContext) DisplayAt() IDisplayAtContext
- func (s *DisplayStatementContext) DisplayOperand(i int) IDisplayOperandContext
- func (s *DisplayStatementContext) DisplayUpon() IDisplayUponContext
- func (s *DisplayStatementContext) DisplayWith() IDisplayWithContext
- func (s *DisplayStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DisplayStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DisplayStatementContext) GetParser() antlr.Parser
- func (s *DisplayStatementContext) GetRuleContext() antlr.RuleContext
- func (*DisplayStatementContext) IsDisplayStatementContext()
- func (s *DisplayStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DisplayUponContext
- func (s *DisplayUponContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DisplayUponContext) EnvironmentName() IEnvironmentNameContext
- func (s *DisplayUponContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DisplayUponContext) GetParser() antlr.Parser
- func (s *DisplayUponContext) GetRuleContext() antlr.RuleContext
- func (*DisplayUponContext) IsDisplayUponContext()
- func (s *DisplayUponContext) MnemonicName() IMnemonicNameContext
- func (s *DisplayUponContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DisplayUponContext) UPON() antlr.TerminalNode
- type DisplayWithContext
- func (s *DisplayWithContext) ADVANCING() antlr.TerminalNode
- func (s *DisplayWithContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DisplayWithContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DisplayWithContext) GetParser() antlr.Parser
- func (s *DisplayWithContext) GetRuleContext() antlr.RuleContext
- func (*DisplayWithContext) IsDisplayWithContext()
- func (s *DisplayWithContext) NO() antlr.TerminalNode
- func (s *DisplayWithContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *DisplayWithContext) WITH() antlr.TerminalNode
- type DivideByGivingStatementContext
- func (s *DivideByGivingStatementContext) BY() antlr.TerminalNode
- func (s *DivideByGivingStatementContext) DivideGivingPhrase() IDivideGivingPhraseContext
- func (s *DivideByGivingStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideByGivingStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideByGivingStatementContext) GetParser() antlr.Parser
- func (s *DivideByGivingStatementContext) GetRuleContext() antlr.RuleContext
- func (s *DivideByGivingStatementContext) Identifier() IIdentifierContext
- func (*DivideByGivingStatementContext) IsDivideByGivingStatementContext()
- func (s *DivideByGivingStatementContext) Literal() ILiteralContext
- func (s *DivideByGivingStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideGivingContext
- func (s *DivideGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideGivingContext) GetParser() antlr.Parser
- func (s *DivideGivingContext) GetRuleContext() antlr.RuleContext
- func (s *DivideGivingContext) Identifier() IIdentifierContext
- func (*DivideGivingContext) IsDivideGivingContext()
- func (s *DivideGivingContext) ROUNDED() antlr.TerminalNode
- func (s *DivideGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideGivingPhraseContext
- func (s *DivideGivingPhraseContext) AllDivideGiving() []IDivideGivingContext
- func (s *DivideGivingPhraseContext) DivideGiving(i int) IDivideGivingContext
- func (s *DivideGivingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideGivingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideGivingPhraseContext) GIVING() antlr.TerminalNode
- func (s *DivideGivingPhraseContext) GetParser() antlr.Parser
- func (s *DivideGivingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*DivideGivingPhraseContext) IsDivideGivingPhraseContext()
- func (s *DivideGivingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideIntoContext
- func (s *DivideIntoContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideIntoContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideIntoContext) GetParser() antlr.Parser
- func (s *DivideIntoContext) GetRuleContext() antlr.RuleContext
- func (s *DivideIntoContext) Identifier() IIdentifierContext
- func (*DivideIntoContext) IsDivideIntoContext()
- func (s *DivideIntoContext) ROUNDED() antlr.TerminalNode
- func (s *DivideIntoContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideIntoGivingStatementContext
- func (s *DivideIntoGivingStatementContext) DivideGivingPhrase() IDivideGivingPhraseContext
- func (s *DivideIntoGivingStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideIntoGivingStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideIntoGivingStatementContext) GetParser() antlr.Parser
- func (s *DivideIntoGivingStatementContext) GetRuleContext() antlr.RuleContext
- func (s *DivideIntoGivingStatementContext) INTO() antlr.TerminalNode
- func (s *DivideIntoGivingStatementContext) Identifier() IIdentifierContext
- func (*DivideIntoGivingStatementContext) IsDivideIntoGivingStatementContext()
- func (s *DivideIntoGivingStatementContext) Literal() ILiteralContext
- func (s *DivideIntoGivingStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideIntoStatementContext
- func (s *DivideIntoStatementContext) AllDivideInto() []IDivideIntoContext
- func (s *DivideIntoStatementContext) DivideInto(i int) IDivideIntoContext
- func (s *DivideIntoStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideIntoStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideIntoStatementContext) GetParser() antlr.Parser
- func (s *DivideIntoStatementContext) GetRuleContext() antlr.RuleContext
- func (s *DivideIntoStatementContext) INTO() antlr.TerminalNode
- func (*DivideIntoStatementContext) IsDivideIntoStatementContext()
- func (s *DivideIntoStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideRemainderContext
- func (s *DivideRemainderContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideRemainderContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideRemainderContext) GetParser() antlr.Parser
- func (s *DivideRemainderContext) GetRuleContext() antlr.RuleContext
- func (s *DivideRemainderContext) Identifier() IIdentifierContext
- func (*DivideRemainderContext) IsDivideRemainderContext()
- func (s *DivideRemainderContext) REMAINDER() antlr.TerminalNode
- func (s *DivideRemainderContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type DivideStatementContext
- func (s *DivideStatementContext) DIVIDE() antlr.TerminalNode
- func (s *DivideStatementContext) DivideByGivingStatement() IDivideByGivingStatementContext
- func (s *DivideStatementContext) DivideIntoGivingStatement() IDivideIntoGivingStatementContext
- func (s *DivideStatementContext) DivideIntoStatement() IDivideIntoStatementContext
- func (s *DivideStatementContext) DivideRemainder() IDivideRemainderContext
- func (s *DivideStatementContext) END_DIVIDE() antlr.TerminalNode
- func (s *DivideStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *DivideStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *DivideStatementContext) GetParser() antlr.Parser
- func (s *DivideStatementContext) GetRuleContext() antlr.RuleContext
- func (s *DivideStatementContext) Identifier() IIdentifierContext
- func (*DivideStatementContext) IsDivideStatementContext()
- func (s *DivideStatementContext) Literal() ILiteralContext
- func (s *DivideStatementContext) NotOnSizeErrorPhrase() INotOnSizeErrorPhraseContext
- func (s *DivideStatementContext) OnSizeErrorPhrase() IOnSizeErrorPhraseContext
- func (s *DivideStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EnableStatementContext
- func (s *EnableStatementContext) CdName() ICdNameContext
- func (s *EnableStatementContext) ENABLE() antlr.TerminalNode
- func (s *EnableStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EnableStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EnableStatementContext) GetParser() antlr.Parser
- func (s *EnableStatementContext) GetRuleContext() antlr.RuleContext
- func (s *EnableStatementContext) INPUT() antlr.TerminalNode
- func (s *EnableStatementContext) I_O() antlr.TerminalNode
- func (s *EnableStatementContext) Identifier() IIdentifierContext
- func (*EnableStatementContext) IsEnableStatementContext()
- func (s *EnableStatementContext) KEY() antlr.TerminalNode
- func (s *EnableStatementContext) Literal() ILiteralContext
- func (s *EnableStatementContext) OUTPUT() antlr.TerminalNode
- func (s *EnableStatementContext) TERMINAL() antlr.TerminalNode
- func (s *EnableStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *EnableStatementContext) WITH() antlr.TerminalNode
- type EndKeyClauseContext
- func (s *EndKeyClauseContext) DataDescName() IDataDescNameContext
- func (s *EndKeyClauseContext) END() antlr.TerminalNode
- func (s *EndKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EndKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EndKeyClauseContext) GetParser() antlr.Parser
- func (s *EndKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (s *EndKeyClauseContext) IS() antlr.TerminalNode
- func (*EndKeyClauseContext) IsEndKeyClauseContext()
- func (s *EndKeyClauseContext) KEY() antlr.TerminalNode
- func (s *EndKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EndProgramStatementContext
- func (s *EndProgramStatementContext) DOT_FS() antlr.TerminalNode
- func (s *EndProgramStatementContext) END() antlr.TerminalNode
- func (s *EndProgramStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EndProgramStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EndProgramStatementContext) GetParser() antlr.Parser
- func (s *EndProgramStatementContext) GetRuleContext() antlr.RuleContext
- func (*EndProgramStatementContext) IsEndProgramStatementContext()
- func (s *EndProgramStatementContext) PROGRAM() antlr.TerminalNode
- func (s *EndProgramStatementContext) ProgramName() IProgramNameContext
- func (s *EndProgramStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EntryStatementContext
- func (s *EntryStatementContext) AllIdentifier() []IIdentifierContext
- func (s *EntryStatementContext) ENTRY() antlr.TerminalNode
- func (s *EntryStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EntryStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EntryStatementContext) GetParser() antlr.Parser
- func (s *EntryStatementContext) GetRuleContext() antlr.RuleContext
- func (s *EntryStatementContext) Identifier(i int) IIdentifierContext
- func (*EntryStatementContext) IsEntryStatementContext()
- func (s *EntryStatementContext) Literal() ILiteralContext
- func (s *EntryStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *EntryStatementContext) USING() antlr.TerminalNode
- type EnvironmentDivisionBodyContext
- func (s *EnvironmentDivisionBodyContext) ConfigurationSection() IConfigurationSectionContext
- func (s *EnvironmentDivisionBodyContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentDivisionBodyContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentDivisionBodyContext) GetParser() antlr.Parser
- func (s *EnvironmentDivisionBodyContext) GetRuleContext() antlr.RuleContext
- func (s *EnvironmentDivisionBodyContext) InputOutputSection() IInputOutputSectionContext
- func (*EnvironmentDivisionBodyContext) IsEnvironmentDivisionBodyContext()
- func (s *EnvironmentDivisionBodyContext) SpecialNamesParagraph() ISpecialNamesParagraphContext
- func (s *EnvironmentDivisionBodyContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EnvironmentDivisionContext
- func (s *EnvironmentDivisionContext) AllEnvironmentDivisionBody() []IEnvironmentDivisionBodyContext
- func (s *EnvironmentDivisionContext) DIVISION() antlr.TerminalNode
- func (s *EnvironmentDivisionContext) DOT_FS() antlr.TerminalNode
- func (s *EnvironmentDivisionContext) ENVIRONMENT() antlr.TerminalNode
- func (s *EnvironmentDivisionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentDivisionContext) EnvironmentDivisionBody(i int) IEnvironmentDivisionBodyContext
- func (s *EnvironmentDivisionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentDivisionContext) GetParser() antlr.Parser
- func (s *EnvironmentDivisionContext) GetRuleContext() antlr.RuleContext
- func (*EnvironmentDivisionContext) IsEnvironmentDivisionContext()
- func (s *EnvironmentDivisionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EnvironmentNameContext
- func (s *EnvironmentNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentNameContext) GetParser() antlr.Parser
- func (s *EnvironmentNameContext) GetRuleContext() antlr.RuleContext
- func (*EnvironmentNameContext) IsEnvironmentNameContext()
- func (s *EnvironmentNameContext) SystemName() ISystemNameContext
- func (s *EnvironmentNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EnvironmentSwitchNameClauseContext
- func (s *EnvironmentSwitchNameClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentSwitchNameClauseContext) EnvironmentName() IEnvironmentNameContext
- func (s *EnvironmentSwitchNameClauseContext) EnvironmentSwitchNameSpecialNamesStatusPhrase() IEnvironmentSwitchNameSpecialNamesStatusPhraseContext
- func (s *EnvironmentSwitchNameClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentSwitchNameClauseContext) GetParser() antlr.Parser
- func (s *EnvironmentSwitchNameClauseContext) GetRuleContext() antlr.RuleContext
- func (s *EnvironmentSwitchNameClauseContext) IS() antlr.TerminalNode
- func (*EnvironmentSwitchNameClauseContext) IsEnvironmentSwitchNameClauseContext()
- func (s *EnvironmentSwitchNameClauseContext) MnemonicName() IMnemonicNameContext
- func (s *EnvironmentSwitchNameClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EnvironmentSwitchNameSpecialNamesStatusPhraseContext
- func NewEmptyEnvironmentSwitchNameSpecialNamesStatusPhraseContext() *EnvironmentSwitchNameSpecialNamesStatusPhraseContext
- func NewEnvironmentSwitchNameSpecialNamesStatusPhraseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *EnvironmentSwitchNameSpecialNamesStatusPhraseContext
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) AllCondition() []IConditionContext
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) AllIS() []antlr.TerminalNode
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) AllSTATUS() []antlr.TerminalNode
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) Condition(i int) IConditionContext
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) GetParser() antlr.Parser
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) IS(i int) antlr.TerminalNode
- func (*EnvironmentSwitchNameSpecialNamesStatusPhraseContext) IsEnvironmentSwitchNameSpecialNamesStatusPhraseContext()
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) OFF() antlr.TerminalNode
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) ON() antlr.TerminalNode
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) STATUS(i int) antlr.TerminalNode
- func (s *EnvironmentSwitchNameSpecialNamesStatusPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ErrorKeyClauseContext
- func (s *ErrorKeyClauseContext) DataDescName() IDataDescNameContext
- func (s *ErrorKeyClauseContext) ERROR() antlr.TerminalNode
- func (s *ErrorKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ErrorKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ErrorKeyClauseContext) GetParser() antlr.Parser
- func (s *ErrorKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ErrorKeyClauseContext) IS() antlr.TerminalNode
- func (*ErrorKeyClauseContext) IsErrorKeyClauseContext()
- func (s *ErrorKeyClauseContext) KEY() antlr.TerminalNode
- func (s *ErrorKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateAlsoConditionContext
- func (s *EvaluateAlsoConditionContext) ALSO() antlr.TerminalNode
- func (s *EvaluateAlsoConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateAlsoConditionContext) EvaluateCondition() IEvaluateConditionContext
- func (s *EvaluateAlsoConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateAlsoConditionContext) GetParser() antlr.Parser
- func (s *EvaluateAlsoConditionContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateAlsoConditionContext) IsEvaluateAlsoConditionContext()
- func (s *EvaluateAlsoConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateAlsoSelectContext
- func (s *EvaluateAlsoSelectContext) ALSO() antlr.TerminalNode
- func (s *EvaluateAlsoSelectContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateAlsoSelectContext) EvaluateSelect() IEvaluateSelectContext
- func (s *EvaluateAlsoSelectContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateAlsoSelectContext) GetParser() antlr.Parser
- func (s *EvaluateAlsoSelectContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateAlsoSelectContext) IsEvaluateAlsoSelectContext()
- func (s *EvaluateAlsoSelectContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateConditionContext
- func (s *EvaluateConditionContext) ANY() antlr.TerminalNode
- func (s *EvaluateConditionContext) BooleanLiteral() IBooleanLiteralContext
- func (s *EvaluateConditionContext) Condition() IConditionContext
- func (s *EvaluateConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateConditionContext) EvaluateThrough() IEvaluateThroughContext
- func (s *EvaluateConditionContext) EvaluateValue() IEvaluateValueContext
- func (s *EvaluateConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateConditionContext) GetParser() antlr.Parser
- func (s *EvaluateConditionContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateConditionContext) IsEvaluateConditionContext()
- func (s *EvaluateConditionContext) NOT() antlr.TerminalNode
- func (s *EvaluateConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateSelectContext
- func (s *EvaluateSelectContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *EvaluateSelectContext) Condition() IConditionContext
- func (s *EvaluateSelectContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateSelectContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateSelectContext) GetParser() antlr.Parser
- func (s *EvaluateSelectContext) GetRuleContext() antlr.RuleContext
- func (s *EvaluateSelectContext) Identifier() IIdentifierContext
- func (*EvaluateSelectContext) IsEvaluateSelectContext()
- func (s *EvaluateSelectContext) Literal() ILiteralContext
- func (s *EvaluateSelectContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateStatementContext
- func (s *EvaluateStatementContext) AllEvaluateAlsoSelect() []IEvaluateAlsoSelectContext
- func (s *EvaluateStatementContext) AllEvaluateWhenPhrase() []IEvaluateWhenPhraseContext
- func (s *EvaluateStatementContext) END_EVALUATE() antlr.TerminalNode
- func (s *EvaluateStatementContext) EVALUATE() antlr.TerminalNode
- func (s *EvaluateStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateStatementContext) EvaluateAlsoSelect(i int) IEvaluateAlsoSelectContext
- func (s *EvaluateStatementContext) EvaluateSelect() IEvaluateSelectContext
- func (s *EvaluateStatementContext) EvaluateWhenOther() IEvaluateWhenOtherContext
- func (s *EvaluateStatementContext) EvaluateWhenPhrase(i int) IEvaluateWhenPhraseContext
- func (s *EvaluateStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateStatementContext) GetParser() antlr.Parser
- func (s *EvaluateStatementContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateStatementContext) IsEvaluateStatementContext()
- func (s *EvaluateStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateThroughContext
- func (s *EvaluateThroughContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateThroughContext) EvaluateValue() IEvaluateValueContext
- func (s *EvaluateThroughContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateThroughContext) GetParser() antlr.Parser
- func (s *EvaluateThroughContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateThroughContext) IsEvaluateThroughContext()
- func (s *EvaluateThroughContext) THROUGH() antlr.TerminalNode
- func (s *EvaluateThroughContext) THRU() antlr.TerminalNode
- func (s *EvaluateThroughContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateValueContext
- func (s *EvaluateValueContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *EvaluateValueContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateValueContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateValueContext) GetParser() antlr.Parser
- func (s *EvaluateValueContext) GetRuleContext() antlr.RuleContext
- func (s *EvaluateValueContext) Identifier() IIdentifierContext
- func (*EvaluateValueContext) IsEvaluateValueContext()
- func (s *EvaluateValueContext) Literal() ILiteralContext
- func (s *EvaluateValueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type EvaluateWhenContext
- func (s *EvaluateWhenContext) AllEvaluateAlsoCondition() []IEvaluateAlsoConditionContext
- func (s *EvaluateWhenContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateWhenContext) EvaluateAlsoCondition(i int) IEvaluateAlsoConditionContext
- func (s *EvaluateWhenContext) EvaluateCondition() IEvaluateConditionContext
- func (s *EvaluateWhenContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateWhenContext) GetParser() antlr.Parser
- func (s *EvaluateWhenContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateWhenContext) IsEvaluateWhenContext()
- func (s *EvaluateWhenContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *EvaluateWhenContext) WHEN() antlr.TerminalNode
- type EvaluateWhenOtherContext
- func (s *EvaluateWhenOtherContext) AllStatement() []IStatementContext
- func (s *EvaluateWhenOtherContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateWhenOtherContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateWhenOtherContext) GetParser() antlr.Parser
- func (s *EvaluateWhenOtherContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateWhenOtherContext) IsEvaluateWhenOtherContext()
- func (s *EvaluateWhenOtherContext) OTHER() antlr.TerminalNode
- func (s *EvaluateWhenOtherContext) Statement(i int) IStatementContext
- func (s *EvaluateWhenOtherContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *EvaluateWhenOtherContext) WHEN() antlr.TerminalNode
- type EvaluateWhenPhraseContext
- func (s *EvaluateWhenPhraseContext) AllEvaluateWhen() []IEvaluateWhenContext
- func (s *EvaluateWhenPhraseContext) AllStatement() []IStatementContext
- func (s *EvaluateWhenPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *EvaluateWhenPhraseContext) EvaluateWhen(i int) IEvaluateWhenContext
- func (s *EvaluateWhenPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *EvaluateWhenPhraseContext) GetParser() antlr.Parser
- func (s *EvaluateWhenPhraseContext) GetRuleContext() antlr.RuleContext
- func (*EvaluateWhenPhraseContext) IsEvaluateWhenPhraseContext()
- func (s *EvaluateWhenPhraseContext) Statement(i int) IStatementContext
- func (s *EvaluateWhenPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExecCicsStatementContext
- func (s *ExecCicsStatementContext) AllEXECCICSLINE() []antlr.TerminalNode
- func (s *ExecCicsStatementContext) EXECCICSLINE(i int) antlr.TerminalNode
- func (s *ExecCicsStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExecCicsStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExecCicsStatementContext) GetParser() antlr.Parser
- func (s *ExecCicsStatementContext) GetRuleContext() antlr.RuleContext
- func (*ExecCicsStatementContext) IsExecCicsStatementContext()
- func (s *ExecCicsStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExecSqlImsStatementContext
- func (s *ExecSqlImsStatementContext) AllEXECSQLIMSLINE() []antlr.TerminalNode
- func (s *ExecSqlImsStatementContext) EXECSQLIMSLINE(i int) antlr.TerminalNode
- func (s *ExecSqlImsStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExecSqlImsStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExecSqlImsStatementContext) GetParser() antlr.Parser
- func (s *ExecSqlImsStatementContext) GetRuleContext() antlr.RuleContext
- func (*ExecSqlImsStatementContext) IsExecSqlImsStatementContext()
- func (s *ExecSqlImsStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExecSqlStatementContext
- func (s *ExecSqlStatementContext) AllEXECSQLLINE() []antlr.TerminalNode
- func (s *ExecSqlStatementContext) EXECSQLLINE(i int) antlr.TerminalNode
- func (s *ExecSqlStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExecSqlStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExecSqlStatementContext) GetParser() antlr.Parser
- func (s *ExecSqlStatementContext) GetRuleContext() antlr.RuleContext
- func (*ExecSqlStatementContext) IsExecSqlStatementContext()
- func (s *ExecSqlStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExhibitOperandContext
- func (s *ExhibitOperandContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExhibitOperandContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExhibitOperandContext) GetParser() antlr.Parser
- func (s *ExhibitOperandContext) GetRuleContext() antlr.RuleContext
- func (s *ExhibitOperandContext) Identifier() IIdentifierContext
- func (*ExhibitOperandContext) IsExhibitOperandContext()
- func (s *ExhibitOperandContext) Literal() ILiteralContext
- func (s *ExhibitOperandContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExhibitStatementContext
- func (s *ExhibitStatementContext) AllExhibitOperand() []IExhibitOperandContext
- func (s *ExhibitStatementContext) CHANGED() antlr.TerminalNode
- func (s *ExhibitStatementContext) EXHIBIT() antlr.TerminalNode
- func (s *ExhibitStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExhibitStatementContext) ExhibitOperand(i int) IExhibitOperandContext
- func (s *ExhibitStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExhibitStatementContext) GetParser() antlr.Parser
- func (s *ExhibitStatementContext) GetRuleContext() antlr.RuleContext
- func (*ExhibitStatementContext) IsExhibitStatementContext()
- func (s *ExhibitStatementContext) NAMED() antlr.TerminalNode
- func (s *ExhibitStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExitStatementContext
- func (s *ExitStatementContext) EXIT() antlr.TerminalNode
- func (s *ExitStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExitStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExitStatementContext) GetParser() antlr.Parser
- func (s *ExitStatementContext) GetRuleContext() antlr.RuleContext
- func (*ExitStatementContext) IsExitStatementContext()
- func (s *ExitStatementContext) PROGRAM() antlr.TerminalNode
- func (s *ExitStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ExternalClauseContext
- func (s *ExternalClauseContext) EXTERNAL() antlr.TerminalNode
- func (s *ExternalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ExternalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ExternalClauseContext) GetParser() antlr.Parser
- func (s *ExternalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ExternalClauseContext) IS() antlr.TerminalNode
- func (*ExternalClauseContext) IsExternalClauseContext()
- func (s *ExternalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FigurativeConstantContext
- func (s *FigurativeConstantContext) ALL() antlr.TerminalNode
- func (s *FigurativeConstantContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FigurativeConstantContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FigurativeConstantContext) GetParser() antlr.Parser
- func (s *FigurativeConstantContext) GetRuleContext() antlr.RuleContext
- func (s *FigurativeConstantContext) HIGH_VALUE() antlr.TerminalNode
- func (s *FigurativeConstantContext) HIGH_VALUES() antlr.TerminalNode
- func (*FigurativeConstantContext) IsFigurativeConstantContext()
- func (s *FigurativeConstantContext) LOW_VALUE() antlr.TerminalNode
- func (s *FigurativeConstantContext) LOW_VALUES() antlr.TerminalNode
- func (s *FigurativeConstantContext) Literal() ILiteralContext
- func (s *FigurativeConstantContext) NULL() antlr.TerminalNode
- func (s *FigurativeConstantContext) NULLS() antlr.TerminalNode
- func (s *FigurativeConstantContext) QUOTE() antlr.TerminalNode
- func (s *FigurativeConstantContext) QUOTES() antlr.TerminalNode
- func (s *FigurativeConstantContext) SPACE() antlr.TerminalNode
- func (s *FigurativeConstantContext) SPACES() antlr.TerminalNode
- func (s *FigurativeConstantContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *FigurativeConstantContext) ZERO() antlr.TerminalNode
- func (s *FigurativeConstantContext) ZEROES() antlr.TerminalNode
- func (s *FigurativeConstantContext) ZEROS() antlr.TerminalNode
- type FileControlClauseContext
- func (s *FileControlClauseContext) AccessModeClause() IAccessModeClauseContext
- func (s *FileControlClauseContext) AlternateRecordKeyClause() IAlternateRecordKeyClauseContext
- func (s *FileControlClauseContext) AssignClause() IAssignClauseContext
- func (s *FileControlClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileControlClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileControlClauseContext) FileStatusClause() IFileStatusClauseContext
- func (s *FileControlClauseContext) GetParser() antlr.Parser
- func (s *FileControlClauseContext) GetRuleContext() antlr.RuleContext
- func (*FileControlClauseContext) IsFileControlClauseContext()
- func (s *FileControlClauseContext) OrganizationClause() IOrganizationClauseContext
- func (s *FileControlClauseContext) PaddingCharacterClause() IPaddingCharacterClauseContext
- func (s *FileControlClauseContext) PasswordClause() IPasswordClauseContext
- func (s *FileControlClauseContext) RecordDelimiterClause() IRecordDelimiterClauseContext
- func (s *FileControlClauseContext) RecordKeyClause() IRecordKeyClauseContext
- func (s *FileControlClauseContext) RelativeKeyClause() IRelativeKeyClauseContext
- func (s *FileControlClauseContext) ReserveClause() IReserveClauseContext
- func (s *FileControlClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FileControlEntryContext
- func (s *FileControlEntryContext) AllFileControlClause() []IFileControlClauseContext
- func (s *FileControlEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileControlEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileControlEntryContext) FileControlClause(i int) IFileControlClauseContext
- func (s *FileControlEntryContext) GetParser() antlr.Parser
- func (s *FileControlEntryContext) GetRuleContext() antlr.RuleContext
- func (*FileControlEntryContext) IsFileControlEntryContext()
- func (s *FileControlEntryContext) SelectClause() ISelectClauseContext
- func (s *FileControlEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FileControlParagraphContext
- func (s *FileControlParagraphContext) AllDOT_FS() []antlr.TerminalNode
- func (s *FileControlParagraphContext) AllFileControlEntry() []IFileControlEntryContext
- func (s *FileControlParagraphContext) DOT_FS(i int) antlr.TerminalNode
- func (s *FileControlParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileControlParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileControlParagraphContext) FILE_CONTROL() antlr.TerminalNode
- func (s *FileControlParagraphContext) FileControlEntry(i int) IFileControlEntryContext
- func (s *FileControlParagraphContext) GetParser() antlr.Parser
- func (s *FileControlParagraphContext) GetRuleContext() antlr.RuleContext
- func (*FileControlParagraphContext) IsFileControlParagraphContext()
- func (s *FileControlParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FileDescriptionEntryClauseContext
- func (s *FileDescriptionEntryClauseContext) BlockContainsClause() IBlockContainsClauseContext
- func (s *FileDescriptionEntryClauseContext) CodeSetClause() ICodeSetClauseContext
- func (s *FileDescriptionEntryClauseContext) DataRecordsClause() IDataRecordsClauseContext
- func (s *FileDescriptionEntryClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileDescriptionEntryClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileDescriptionEntryClauseContext) ExternalClause() IExternalClauseContext
- func (s *FileDescriptionEntryClauseContext) GetParser() antlr.Parser
- func (s *FileDescriptionEntryClauseContext) GetRuleContext() antlr.RuleContext
- func (s *FileDescriptionEntryClauseContext) GlobalClause() IGlobalClauseContext
- func (*FileDescriptionEntryClauseContext) IsFileDescriptionEntryClauseContext()
- func (s *FileDescriptionEntryClauseContext) LabelRecordsClause() ILabelRecordsClauseContext
- func (s *FileDescriptionEntryClauseContext) LinageClause() ILinageClauseContext
- func (s *FileDescriptionEntryClauseContext) RecordContainsClause() IRecordContainsClauseContext
- func (s *FileDescriptionEntryClauseContext) RecordingModeClause() IRecordingModeClauseContext
- func (s *FileDescriptionEntryClauseContext) ReportClause() IReportClauseContext
- func (s *FileDescriptionEntryClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *FileDescriptionEntryClauseContext) ValueOfClause() IValueOfClauseContext
- type FileDescriptionEntryContext
- func (s *FileDescriptionEntryContext) AllDOT_FS() []antlr.TerminalNode
- func (s *FileDescriptionEntryContext) AllDataDescriptionEntry() []IDataDescriptionEntryContext
- func (s *FileDescriptionEntryContext) AllFileDescriptionEntryClause() []IFileDescriptionEntryClauseContext
- func (s *FileDescriptionEntryContext) DOT_FS(i int) antlr.TerminalNode
- func (s *FileDescriptionEntryContext) DataDescriptionEntry(i int) IDataDescriptionEntryContext
- func (s *FileDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileDescriptionEntryContext) FD() antlr.TerminalNode
- func (s *FileDescriptionEntryContext) FileDescriptionEntryClause(i int) IFileDescriptionEntryClauseContext
- func (s *FileDescriptionEntryContext) FileName() IFileNameContext
- func (s *FileDescriptionEntryContext) GetParser() antlr.Parser
- func (s *FileDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (*FileDescriptionEntryContext) IsFileDescriptionEntryContext()
- func (s *FileDescriptionEntryContext) SD() antlr.TerminalNode
- func (s *FileDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FileNameContext
- func (s *FileNameContext) CobolWord() ICobolWordContext
- func (s *FileNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileNameContext) GetParser() antlr.Parser
- func (s *FileNameContext) GetRuleContext() antlr.RuleContext
- func (*FileNameContext) IsFileNameContext()
- func (s *FileNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FileSectionContext
- func (s *FileSectionContext) AllFileDescriptionEntry() []IFileDescriptionEntryContext
- func (s *FileSectionContext) DOT_FS() antlr.TerminalNode
- func (s *FileSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileSectionContext) FILE() antlr.TerminalNode
- func (s *FileSectionContext) FileDescriptionEntry(i int) IFileDescriptionEntryContext
- func (s *FileSectionContext) GetParser() antlr.Parser
- func (s *FileSectionContext) GetRuleContext() antlr.RuleContext
- func (*FileSectionContext) IsFileSectionContext()
- func (s *FileSectionContext) SECTION() antlr.TerminalNode
- func (s *FileSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FileStatusClauseContext
- func (s *FileStatusClauseContext) AllQualifiedDataName() []IQualifiedDataNameContext
- func (s *FileStatusClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FileStatusClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FileStatusClauseContext) FILE() antlr.TerminalNode
- func (s *FileStatusClauseContext) GetParser() antlr.Parser
- func (s *FileStatusClauseContext) GetRuleContext() antlr.RuleContext
- func (s *FileStatusClauseContext) IS() antlr.TerminalNode
- func (*FileStatusClauseContext) IsFileStatusClauseContext()
- func (s *FileStatusClauseContext) QualifiedDataName(i int) IQualifiedDataNameContext
- func (s *FileStatusClauseContext) STATUS() antlr.TerminalNode
- func (s *FileStatusClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FunctionCallContext
- func (s *FunctionCallContext) AllArgument() []IArgumentContext
- func (s *FunctionCallContext) AllCOMMACHAR() []antlr.TerminalNode
- func (s *FunctionCallContext) AllLPARENCHAR() []antlr.TerminalNode
- func (s *FunctionCallContext) AllRPARENCHAR() []antlr.TerminalNode
- func (s *FunctionCallContext) Argument(i int) IArgumentContext
- func (s *FunctionCallContext) COMMACHAR(i int) antlr.TerminalNode
- func (s *FunctionCallContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FunctionCallContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FunctionCallContext) FUNCTION() antlr.TerminalNode
- func (s *FunctionCallContext) FunctionName() IFunctionNameContext
- func (s *FunctionCallContext) GetParser() antlr.Parser
- func (s *FunctionCallContext) GetRuleContext() antlr.RuleContext
- func (*FunctionCallContext) IsFunctionCallContext()
- func (s *FunctionCallContext) LPARENCHAR(i int) antlr.TerminalNode
- func (s *FunctionCallContext) RPARENCHAR(i int) antlr.TerminalNode
- func (s *FunctionCallContext) ReferenceModifier() IReferenceModifierContext
- func (s *FunctionCallContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type FunctionNameContext
- func (s *FunctionNameContext) CobolWord() ICobolWordContext
- func (s *FunctionNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *FunctionNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *FunctionNameContext) GetParser() antlr.Parser
- func (s *FunctionNameContext) GetRuleContext() antlr.RuleContext
- func (s *FunctionNameContext) INTEGER() antlr.TerminalNode
- func (*FunctionNameContext) IsFunctionNameContext()
- func (s *FunctionNameContext) LENGTH() antlr.TerminalNode
- func (s *FunctionNameContext) RANDOM() antlr.TerminalNode
- func (s *FunctionNameContext) SUM() antlr.TerminalNode
- func (s *FunctionNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *FunctionNameContext) WHEN_COMPILED() antlr.TerminalNode
- type GenerateStatementContext
- func (s *GenerateStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *GenerateStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *GenerateStatementContext) GENERATE() antlr.TerminalNode
- func (s *GenerateStatementContext) GetParser() antlr.Parser
- func (s *GenerateStatementContext) GetRuleContext() antlr.RuleContext
- func (*GenerateStatementContext) IsGenerateStatementContext()
- func (s *GenerateStatementContext) ReportName() IReportNameContext
- func (s *GenerateStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type GlobalClauseContext
- func (s *GlobalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *GlobalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *GlobalClauseContext) GLOBAL() antlr.TerminalNode
- func (s *GlobalClauseContext) GetParser() antlr.Parser
- func (s *GlobalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *GlobalClauseContext) IS() antlr.TerminalNode
- func (*GlobalClauseContext) IsGlobalClauseContext()
- func (s *GlobalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type GoToDependingOnStatementContext
- func (s *GoToDependingOnStatementContext) AllProcedureName() []IProcedureNameContext
- func (s *GoToDependingOnStatementContext) DEPENDING() antlr.TerminalNode
- func (s *GoToDependingOnStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *GoToDependingOnStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *GoToDependingOnStatementContext) GetParser() antlr.Parser
- func (s *GoToDependingOnStatementContext) GetRuleContext() antlr.RuleContext
- func (s *GoToDependingOnStatementContext) Identifier() IIdentifierContext
- func (*GoToDependingOnStatementContext) IsGoToDependingOnStatementContext()
- func (s *GoToDependingOnStatementContext) MORE_LABELS() antlr.TerminalNode
- func (s *GoToDependingOnStatementContext) ON() antlr.TerminalNode
- func (s *GoToDependingOnStatementContext) ProcedureName(i int) IProcedureNameContext
- func (s *GoToDependingOnStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type GoToStatementContext
- func (s *GoToStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *GoToStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *GoToStatementContext) GO() antlr.TerminalNode
- func (s *GoToStatementContext) GetParser() antlr.Parser
- func (s *GoToStatementContext) GetRuleContext() antlr.RuleContext
- func (s *GoToStatementContext) GoToDependingOnStatement() IGoToDependingOnStatementContext
- func (s *GoToStatementContext) GoToStatementSimple() IGoToStatementSimpleContext
- func (*GoToStatementContext) IsGoToStatementContext()
- func (s *GoToStatementContext) TO() antlr.TerminalNode
- func (s *GoToStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type GoToStatementSimpleContext
- func (s *GoToStatementSimpleContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *GoToStatementSimpleContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *GoToStatementSimpleContext) GetParser() antlr.Parser
- func (s *GoToStatementSimpleContext) GetRuleContext() antlr.RuleContext
- func (*GoToStatementSimpleContext) IsGoToStatementSimpleContext()
- func (s *GoToStatementSimpleContext) ProcedureName() IProcedureNameContext
- func (s *GoToStatementSimpleContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type GobackStatementContext
- func (s *GobackStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *GobackStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *GobackStatementContext) GOBACK() antlr.TerminalNode
- func (s *GobackStatementContext) GetParser() antlr.Parser
- func (s *GobackStatementContext) GetRuleContext() antlr.RuleContext
- func (*GobackStatementContext) IsGobackStatementContext()
- func (s *GobackStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IAbbreviationContext
- type IAcceptFromDateStatementContext
- type IAcceptFromEscapeKeyStatementContext
- type IAcceptFromMnemonicStatementContext
- type IAcceptMessageCountStatementContext
- type IAcceptStatementContext
- type IAccessModeClauseContext
- type IAddCorrespondingStatementContext
- type IAddFromContext
- type IAddGivingContext
- type IAddStatementContext
- type IAddToContext
- type IAddToGivingContext
- type IAddToGivingStatementContext
- type IAddToStatementContext
- type IAlphabetAlsoContext
- type IAlphabetClauseContext
- type IAlphabetClauseFormat1Context
- type IAlphabetClauseFormat2Context
- type IAlphabetLiteralsContext
- type IAlphabetNameContext
- type IAlphabetThroughContext
- type IAlterProceedToContext
- type IAlterStatementContext
- type IAlteredGoToContext
- type IAlternateRecordKeyClauseContext
- type IAndOrConditionContext
- type IArgumentContext
- type IArithmeticExpressionContext
- type IAssignClauseContext
- type IAssignmentNameContext
- type IAtEndPhraseContext
- type IAuthorParagraphContext
- type IBasisContext
- type IBasisNameContext
- type IBlockContainsClauseContext
- type IBlockContainsToContext
- type IBooleanLiteralContext
- type ICallByContentContext
- type ICallByContentPhraseContext
- type ICallByReferenceContext
- type ICallByReferencePhraseContext
- type ICallByValueContext
- type ICallByValuePhraseContext
- type ICallGivingPhraseContext
- type ICallStatementContext
- type ICallUsingParameterContext
- type ICallUsingPhraseContext
- type ICancelCallContext
- type ICancelStatementContext
- type ICdNameContext
- type IChannelClauseContext
- type ICharacterPositionContext
- type ICharacterSetClauseContext
- type ICicsDfhRespLiteralContext
- type ICicsDfhValueLiteralContext
- type IClassClauseContext
- type IClassClauseFromContext
- type IClassClauseThroughContext
- type IClassClauseToContext
- type IClassConditionContext
- type IClassNameContext
- type ICloseFileContext
- type IClosePortFileIOStatementContext
- type IClosePortFileIOUsingAssociatedDataContext
- type IClosePortFileIOUsingAssociatedDataLengthContext
- type IClosePortFileIOUsingCloseDispositionContext
- type IClosePortFileIOUsingContext
- type ICloseReelUnitStatementContext
- type ICloseRelativeStatementContext
- type ICloseStatementContext
- type ICobolWordContext
- type ICodeSetClauseContext
- type ICollatingSequenceClauseAlphanumericContext
- type ICollatingSequenceClauseContext
- type ICollatingSequenceClauseNationalContext
- type ICombinableConditionContext
- type ICommentEntryContext
- type ICommitmentControlClauseContext
- type ICommunicationDescriptionEntryContext
- type ICommunicationDescriptionEntryFormat1Context
- type ICommunicationDescriptionEntryFormat2Context
- type ICommunicationDescriptionEntryFormat3Context
- type ICommunicationSectionContext
- type ICompilationUnitContext
- type IComputeStatementContext
- type IComputeStoreContext
- type IComputerNameContext
- type IConditionContext
- type IConditionNameContext
- type IConditionNameReferenceContext
- type IConditionNameSubscriptReferenceContext
- type IConfigurationSectionContext
- type IConfigurationSectionParagraphContext
- type IContinueStatementContext
- type ICurrencySignClauseContext
- type IDataAlignedClauseContext
- type IDataBaseSectionContext
- type IDataBaseSectionEntryContext
- type IDataBlankWhenZeroClauseContext
- type IDataCommonOwnLocalClauseContext
- type IDataDescNameContext
- type IDataDescriptionEntryContext
- type IDataDescriptionEntryExecSqlContext
- type IDataDescriptionEntryFormat1Context
- type IDataDescriptionEntryFormat2Context
- type IDataDescriptionEntryFormat3Context
- type IDataDivisionContext
- type IDataDivisionSectionContext
- type IDataExternalClauseContext
- type IDataGlobalClauseContext
- type IDataIntegerStringClauseContext
- type IDataJustifiedClauseContext
- type IDataNameContext
- type IDataOccursClauseContext
- type IDataOccursSortContext
- type IDataOccursToContext
- type IDataPictureClauseContext
- type IDataReceivedByClauseContext
- type IDataRecordAreaClauseContext
- type IDataRecordsClauseContext
- type IDataRedefinesClauseContext
- type IDataRenamesClauseContext
- type IDataSignClauseContext
- type IDataSynchronizedClauseContext
- type IDataThreadLocalClauseContext
- type IDataTypeClauseContext
- type IDataTypeDefClauseContext
- type IDataUsageClauseContext
- type IDataUsingClauseContext
- type IDataValueClauseContext
- type IDataValueIntervalContext
- type IDataValueIntervalFromContext
- type IDataValueIntervalToContext
- type IDataWithLowerBoundsClauseContext
- type IDateCompiledParagraphContext
- type IDateWrittenParagraphContext
- type IDecimalPointClauseContext
- type IDefaultComputationalSignClauseContext
- type IDefaultDisplaySignClauseContext
- type IDeleteStatementContext
- type IDestinationCountClauseContext
- type IDestinationTableClauseContext
- type IDisableStatementContext
- type IDiskSizeClauseContext
- type IDisplayAtContext
- type IDisplayOperandContext
- type IDisplayStatementContext
- type IDisplayUponContext
- type IDisplayWithContext
- type IDivideByGivingStatementContext
- type IDivideGivingContext
- type IDivideGivingPhraseContext
- type IDivideIntoContext
- type IDivideIntoGivingStatementContext
- type IDivideIntoStatementContext
- type IDivideRemainderContext
- type IDivideStatementContext
- type IEnableStatementContext
- type IEndKeyClauseContext
- type IEndProgramStatementContext
- type IEntryStatementContext
- type IEnvironmentDivisionBodyContext
- type IEnvironmentDivisionContext
- type IEnvironmentNameContext
- type IEnvironmentSwitchNameClauseContext
- type IEnvironmentSwitchNameSpecialNamesStatusPhraseContext
- type IErrorKeyClauseContext
- type IEvaluateAlsoConditionContext
- type IEvaluateAlsoSelectContext
- type IEvaluateConditionContext
- type IEvaluateSelectContext
- type IEvaluateStatementContext
- type IEvaluateThroughContext
- type IEvaluateValueContext
- type IEvaluateWhenContext
- type IEvaluateWhenOtherContext
- type IEvaluateWhenPhraseContext
- type IExecCicsStatementContext
- type IExecSqlImsStatementContext
- type IExecSqlStatementContext
- type IExhibitOperandContext
- type IExhibitStatementContext
- type IExitStatementContext
- type IExternalClauseContext
- type IFigurativeConstantContext
- type IFileControlClauseContext
- type IFileControlEntryContext
- type IFileControlParagraphContext
- type IFileDescriptionEntryClauseContext
- type IFileDescriptionEntryContext
- type IFileNameContext
- type IFileSectionContext
- type IFileStatusClauseContext
- type IFunctionCallContext
- type IFunctionNameContext
- type IGenerateStatementContext
- type IGlobalClauseContext
- type IGoToDependingOnStatementContext
- type IGoToStatementContext
- type IGoToStatementSimpleContext
- type IGobackStatementContext
- type IIdentificationDivisionBodyContext
- type IIdentificationDivisionContext
- type IIdentifierContext
- type IIfElseContext
- type IIfStatementContext
- type IIfThenContext
- type IInDataContext
- type IInFileContext
- type IInLibraryContext
- type IInMnemonicContext
- type IInSectionContext
- type IInTableContext
- type IIndexNameContext
- type IInitializeReplacingByContext
- type IInitializeReplacingPhraseContext
- type IInitializeStatementContext
- type IInitiateStatementContext
- type IInputOutputSectionContext
- type IInputOutputSectionParagraphContext
- type IInspectAllLeadingContext
- type IInspectAllLeadingsContext
- type IInspectBeforeAfterContext
- type IInspectByContext
- type IInspectCharactersContext
- type IInspectConvertingPhraseContext
- type IInspectForContext
- type IInspectReplacingAllLeadingContext
- type IInspectReplacingAllLeadingsContext
- type IInspectReplacingCharactersContext
- type IInspectReplacingPhraseContext
- type IInspectStatementContext
- type IInspectTallyingPhraseContext
- type IInspectTallyingReplacingPhraseContext
- type IInspectToContext
- type IInstallationParagraphContext
- type IIntegerLiteralContext
- type IInvalidKeyPhraseContext
- type IIoControlClauseContext
- type IIoControlParagraphContext
- type ILabelRecordsClauseContext
- type ILanguageNameContext
- type ILengthContext
- type ILibraryAttributeClauseFormat1Context
- type ILibraryAttributeClauseFormat2Context
- type ILibraryAttributeFunctionContext
- type ILibraryAttributeParameterContext
- type ILibraryAttributeTitleContext
- type ILibraryDescriptionEntryContext
- type ILibraryDescriptionEntryFormat1Context
- type ILibraryDescriptionEntryFormat2Context
- type ILibraryEntryProcedureClauseFormat1Context
- type ILibraryEntryProcedureClauseFormat2Context
- type ILibraryEntryProcedureForClauseContext
- type ILibraryEntryProcedureGivingClauseContext
- type ILibraryEntryProcedureUsingClauseContext
- type ILibraryEntryProcedureUsingNameContext
- type ILibraryEntryProcedureWithClauseContext
- type ILibraryEntryProcedureWithNameContext
- type ILibraryIsCommonClauseContext
- type ILibraryIsGlobalClauseContext
- type ILibraryNameContext
- type ILinageAtContext
- type ILinageClauseContext
- type ILinageFootingAtContext
- type ILinageLinesAtBottomContext
- type ILinageLinesAtTopContext
- type ILinkageSectionContext
- type ILiteralContext
- type ILocalNameContext
- type ILocalStorageSectionContext
- type IMemorySizeClauseContext
- type IMergeCollatingAlphanumericContext
- type IMergeCollatingNationalContext
- type IMergeCollatingSequencePhraseContext
- type IMergeGivingContext
- type IMergeGivingPhraseContext
- type IMergeOnKeyClauseContext
- type IMergeOutputProcedurePhraseContext
- type IMergeOutputThroughContext
- type IMergeStatementContext
- type IMergeUsingContext
- type IMessageCountClauseContext
- type IMessageDateClauseContext
- type IMessageTimeClauseContext
- type IMnemonicNameContext
- type IModeStatementContext
- type IMoveCorrespondingToSendingAreaContext
- type IMoveCorrespondingToStatementContext
- type IMoveStatementContext
- type IMoveToSendingAreaContext
- type IMoveToStatementContext
- type IMultDivContext
- type IMultDivsContext
- type IMultipleFileClauseContext
- type IMultipleFilePositionContext
- type IMultiplyGivingContext
- type IMultiplyGivingOperandContext
- type IMultiplyGivingResultContext
- type IMultiplyRegularContext
- type IMultiplyRegularOperandContext
- type IMultiplyStatementContext
- type INotAtEndPhraseContext
- type INotInvalidKeyPhraseContext
- type INotOnExceptionClauseContext
- type INotOnOverflowPhraseContext
- type INotOnSizeErrorPhraseContext
- type INumericLiteralContext
- type IObjectComputerClauseContext
- type IObjectComputerParagraphContext
- type IOdtClauseContext
- type IOnExceptionClauseContext
- type IOnOverflowPhraseContext
- type IOnSizeErrorPhraseContext
- type IOpenExtendStatementContext
- type IOpenIOStatementContext
- type IOpenInputContext
- type IOpenInputStatementContext
- type IOpenOutputContext
- type IOpenOutputStatementContext
- type IOpenStatementContext
- type IOrganizationClauseContext
- type IPaddingCharacterClauseContext
- type IParagraphContext
- type IParagraphNameContext
- type IParagraphsContext
- type IPasswordClauseContext
- type IPerformAfterContext
- type IPerformByContext
- type IPerformFromContext
- type IPerformInlineStatementContext
- type IPerformProcedureStatementContext
- type IPerformStatementContext
- type IPerformTestClauseContext
- type IPerformTimesContext
- type IPerformTypeContext
- type IPerformUntilContext
- type IPerformVaryingClauseContext
- type IPerformVaryingContext
- type IPerformVaryingPhraseContext
- type IPictureCardinalityContext
- type IPictureCharsContext
- type IPictureStringContext
- type IPlusMinusContext
- type IPowerContext
- type IPowersContext
- type IProcedureDeclarativeContext
- type IProcedureDeclarativesContext
- type IProcedureDivisionBodyContext
- type IProcedureDivisionByReferenceContext
- type IProcedureDivisionByReferencePhraseContext
- type IProcedureDivisionByValueContext
- type IProcedureDivisionByValuePhraseContext
- type IProcedureDivisionContext
- type IProcedureDivisionGivingClauseContext
- type IProcedureDivisionUsingClauseContext
- type IProcedureDivisionUsingParameterContext
- type IProcedureNameContext
- type IProcedureSectionContext
- type IProcedureSectionHeaderContext
- type IProgramIdParagraphContext
- type IProgramLibrarySectionContext
- type IProgramNameContext
- type IProgramUnitContext
- type IPurgeStatementContext
- type IQualifiedDataNameContext
- type IQualifiedDataNameFormat1Context
- type IQualifiedDataNameFormat2Context
- type IQualifiedDataNameFormat3Context
- type IQualifiedDataNameFormat4Context
- type IQualifiedInDataContext
- type IReadIntoContext
- type IReadKeyContext
- type IReadStatementContext
- type IReadWithContext
- type IReceiveBeforeContext
- type IReceiveFromContext
- type IReceiveFromStatementContext
- type IReceiveIntoStatementContext
- type IReceiveNoDataContext
- type IReceiveSizeContext
- type IReceiveStatementContext
- type IReceiveStatusContext
- type IReceiveThreadContext
- type IReceiveWithContext
- type IReceiveWithDataContext
- type IRecordContainsClauseContext
- type IRecordContainsClauseFormat1Context
- type IRecordContainsClauseFormat2Context
- type IRecordContainsClauseFormat3Context
- type IRecordContainsToContext
- type IRecordDelimiterClauseContext
- type IRecordKeyClauseContext
- type IRecordNameContext
- type IRecordingModeClauseContext
- type IReferenceModifierContext
- type IRelationArithmeticComparisonContext
- type IRelationCombinedComparisonContext
- type IRelationCombinedConditionContext
- type IRelationConditionContext
- type IRelationSignConditionContext
- type IRelationalOperatorContext
- type IRelativeKeyClauseContext
- type IReleaseStatementContext
- type IRemarksParagraphContext
- type IReportClauseContext
- type IReportDescriptionContext
- type IReportDescriptionEntryContext
- type IReportDescriptionFirstDetailClauseContext
- type IReportDescriptionFootingClauseContext
- type IReportDescriptionGlobalClauseContext
- type IReportDescriptionHeadingClauseContext
- type IReportDescriptionLastDetailClauseContext
- type IReportDescriptionPageLimitClauseContext
- type IReportGroupBlankWhenZeroClauseContext
- type IReportGroupColumnNumberClauseContext
- type IReportGroupDescriptionEntryContext
- type IReportGroupDescriptionEntryFormat1Context
- type IReportGroupDescriptionEntryFormat2Context
- type IReportGroupDescriptionEntryFormat3Context
- type IReportGroupIndicateClauseContext
- type IReportGroupJustifiedClauseContext
- type IReportGroupLineNumberClauseContext
- type IReportGroupLineNumberNextPageContext
- type IReportGroupLineNumberPlusContext
- type IReportGroupNextGroupClauseContext
- type IReportGroupNextGroupNextPageContext
- type IReportGroupNextGroupPlusContext
- type IReportGroupPictureClauseContext
- type IReportGroupResetClauseContext
- type IReportGroupSignClauseContext
- type IReportGroupSourceClauseContext
- type IReportGroupSumClauseContext
- type IReportGroupTypeClauseContext
- type IReportGroupTypeControlFootingContext
- type IReportGroupTypeControlHeadingContext
- type IReportGroupTypeDetailContext
- type IReportGroupTypePageFootingContext
- type IReportGroupTypePageHeadingContext
- type IReportGroupTypeReportFootingContext
- type IReportGroupTypeReportHeadingContext
- type IReportGroupUsageClauseContext
- type IReportGroupValueClauseContext
- type IReportNameContext
- type IReportSectionContext
- type IRerunClauseContext
- type IRerunEveryClockContext
- type IRerunEveryOfContext
- type IRerunEveryRecordsContext
- type IReserveClauseContext
- type IReserveNetworkClauseContext
- type IReturnIntoContext
- type IReturnStatementContext
- type IRewriteFromContext
- type IRewriteStatementContext
- type IRoutineNameContext
- type ISameClauseContext
- type IScreenDescriptionAutoClauseContext
- type IScreenDescriptionBackgroundColorClauseContext
- type IScreenDescriptionBellClauseContext
- type IScreenDescriptionBlankClauseContext
- type IScreenDescriptionBlankWhenZeroClauseContext
- type IScreenDescriptionBlinkClauseContext
- type IScreenDescriptionColumnClauseContext
- type IScreenDescriptionControlClauseContext
- type IScreenDescriptionEntryContext
- type IScreenDescriptionEraseClauseContext
- type IScreenDescriptionForegroundColorClauseContext
- type IScreenDescriptionFromClauseContext
- type IScreenDescriptionFullClauseContext
- type IScreenDescriptionGridClauseContext
- type IScreenDescriptionJustifiedClauseContext
- type IScreenDescriptionLightClauseContext
- type IScreenDescriptionLineClauseContext
- type IScreenDescriptionPictureClauseContext
- type IScreenDescriptionPromptClauseContext
- type IScreenDescriptionPromptOccursClauseContext
- type IScreenDescriptionRequiredClauseContext
- type IScreenDescriptionReverseVideoClauseContext
- type IScreenDescriptionSecureClauseContext
- type IScreenDescriptionSignClauseContext
- type IScreenDescriptionSizeClauseContext
- type IScreenDescriptionToClauseContext
- type IScreenDescriptionUnderlineClauseContext
- type IScreenDescriptionUsageClauseContext
- type IScreenDescriptionUsingClauseContext
- type IScreenDescriptionValueClauseContext
- type IScreenDescriptionZeroFillClauseContext
- type IScreenNameContext
- type IScreenSectionContext
- type ISearchStatementContext
- type ISearchVaryingContext
- type ISearchWhenContext
- type ISectionNameContext
- type ISecurityParagraphContext
- type ISegmentLimitClauseContext
- type ISelectClauseContext
- type ISendAdvancingLinesContext
- type ISendAdvancingMnemonicContext
- type ISendAdvancingPageContext
- type ISendAdvancingPhraseContext
- type ISendFromPhraseContext
- type ISendReplacingPhraseContext
- type ISendStatementAsyncContext
- type ISendStatementContext
- type ISendStatementSyncContext
- type ISendWithPhraseContext
- type ISentenceContext
- type ISetByValueContext
- type ISetStatementContext
- type ISetToContext
- type ISetToStatementContext
- type ISetToValueContext
- type ISetUpDownByStatementContext
- type ISimpleConditionContext
- type ISortCollatingAlphanumericContext
- type ISortCollatingNationalContext
- type ISortCollatingSequencePhraseContext
- type ISortDuplicatesPhraseContext
- type ISortGivingContext
- type ISortGivingPhraseContext
- type ISortInputProcedurePhraseContext
- type ISortInputThroughContext
- type ISortOnKeyClauseContext
- type ISortOutputProcedurePhraseContext
- type ISortOutputThroughContext
- type ISortStatementContext
- type ISortUsingContext
- type ISourceComputerParagraphContext
- type ISpecialNameClauseContext
- type ISpecialNamesParagraphContext
- type ISpecialRegisterContext
- type IStartKeyContext
- type IStartRuleContext
- type IStartStatementContext
- type IStatementContext
- type IStatusKeyClauseContext
- type IStopStatementContext
- type IStringDelimitedByPhraseContext
- type IStringForPhraseContext
- type IStringIntoPhraseContext
- type IStringSendingContext
- type IStringSendingPhraseContext
- type IStringStatementContext
- type IStringWithPointerPhraseContext
- type ISubscriptContext
- type ISubtractCorrespondingStatementContext
- type ISubtractFromGivingStatementContext
- type ISubtractFromStatementContext
- type ISubtractGivingContext
- type ISubtractMinuendContext
- type ISubtractMinuendCorrespondingContext
- type ISubtractMinuendGivingContext
- type ISubtractStatementContext
- type ISubtractSubtrahendContext
- type ISymbolicCharacterContext
- type ISymbolicCharactersClauseContext
- type ISymbolicCharactersContext
- type ISymbolicDestinationClauseContext
- type ISymbolicQueueClauseContext
- type ISymbolicSourceClauseContext
- type ISymbolicSubQueueClauseContext
- type ISymbolicTerminalClauseContext
- type ISystemNameContext
- type ITableCallContext
- type ITerminateStatementContext
- type ITextLengthClauseContext
- type ITextNameContext
- type IUnstringCountInContext
- type IUnstringDelimitedByPhraseContext
- type IUnstringDelimiterInContext
- type IUnstringIntoContext
- type IUnstringIntoPhraseContext
- type IUnstringOrAllPhraseContext
- type IUnstringSendingPhraseContext
- type IUnstringStatementContext
- type IUnstringTallyingPhraseContext
- type IUnstringWithPointerPhraseContext
- type IUseAfterClauseContext
- type IUseAfterOnContext
- type IUseDebugClauseContext
- type IUseDebugOnContext
- type IUseStatementContext
- type IValueOfClauseContext
- type IValuePairContext
- type IWorkingStorageSectionContext
- type IWriteAdvancingLinesContext
- type IWriteAdvancingMnemonicContext
- type IWriteAdvancingPageContext
- type IWriteAdvancingPhraseContext
- type IWriteAtEndOfPagePhraseContext
- type IWriteFromPhraseContext
- type IWriteNotAtEndOfPagePhraseContext
- type IWriteStatementContext
- type IdentificationDivisionBodyContext
- func (s *IdentificationDivisionBodyContext) AuthorParagraph() IAuthorParagraphContext
- func (s *IdentificationDivisionBodyContext) DateCompiledParagraph() IDateCompiledParagraphContext
- func (s *IdentificationDivisionBodyContext) DateWrittenParagraph() IDateWrittenParagraphContext
- func (s *IdentificationDivisionBodyContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IdentificationDivisionBodyContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IdentificationDivisionBodyContext) GetParser() antlr.Parser
- func (s *IdentificationDivisionBodyContext) GetRuleContext() antlr.RuleContext
- func (s *IdentificationDivisionBodyContext) InstallationParagraph() IInstallationParagraphContext
- func (*IdentificationDivisionBodyContext) IsIdentificationDivisionBodyContext()
- func (s *IdentificationDivisionBodyContext) RemarksParagraph() IRemarksParagraphContext
- func (s *IdentificationDivisionBodyContext) SecurityParagraph() ISecurityParagraphContext
- func (s *IdentificationDivisionBodyContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IdentificationDivisionContext
- func (s *IdentificationDivisionContext) AllIdentificationDivisionBody() []IIdentificationDivisionBodyContext
- func (s *IdentificationDivisionContext) DIVISION() antlr.TerminalNode
- func (s *IdentificationDivisionContext) DOT_FS() antlr.TerminalNode
- func (s *IdentificationDivisionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IdentificationDivisionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IdentificationDivisionContext) GetParser() antlr.Parser
- func (s *IdentificationDivisionContext) GetRuleContext() antlr.RuleContext
- func (s *IdentificationDivisionContext) ID() antlr.TerminalNode
- func (s *IdentificationDivisionContext) IDENTIFICATION() antlr.TerminalNode
- func (s *IdentificationDivisionContext) IdentificationDivisionBody(i int) IIdentificationDivisionBodyContext
- func (*IdentificationDivisionContext) IsIdentificationDivisionContext()
- func (s *IdentificationDivisionContext) ProgramIdParagraph() IProgramIdParagraphContext
- func (s *IdentificationDivisionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IdentifierContext
- func (s *IdentifierContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IdentifierContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IdentifierContext) FunctionCall() IFunctionCallContext
- func (s *IdentifierContext) GetParser() antlr.Parser
- func (s *IdentifierContext) GetRuleContext() antlr.RuleContext
- func (*IdentifierContext) IsIdentifierContext()
- func (s *IdentifierContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *IdentifierContext) SpecialRegister() ISpecialRegisterContext
- func (s *IdentifierContext) TableCall() ITableCallContext
- func (s *IdentifierContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IfElseContext
- func (s *IfElseContext) AllStatement() []IStatementContext
- func (s *IfElseContext) ELSE() antlr.TerminalNode
- func (s *IfElseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IfElseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IfElseContext) GetParser() antlr.Parser
- func (s *IfElseContext) GetRuleContext() antlr.RuleContext
- func (*IfElseContext) IsIfElseContext()
- func (s *IfElseContext) NEXT() antlr.TerminalNode
- func (s *IfElseContext) SENTENCE() antlr.TerminalNode
- func (s *IfElseContext) Statement(i int) IStatementContext
- func (s *IfElseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IfStatementContext
- func (s *IfStatementContext) Condition() IConditionContext
- func (s *IfStatementContext) END_IF() antlr.TerminalNode
- func (s *IfStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IfStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IfStatementContext) GetParser() antlr.Parser
- func (s *IfStatementContext) GetRuleContext() antlr.RuleContext
- func (s *IfStatementContext) IF() antlr.TerminalNode
- func (s *IfStatementContext) IfElse() IIfElseContext
- func (s *IfStatementContext) IfThen() IIfThenContext
- func (*IfStatementContext) IsIfStatementContext()
- func (s *IfStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IfThenContext
- func (s *IfThenContext) AllStatement() []IStatementContext
- func (s *IfThenContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IfThenContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IfThenContext) GetParser() antlr.Parser
- func (s *IfThenContext) GetRuleContext() antlr.RuleContext
- func (*IfThenContext) IsIfThenContext()
- func (s *IfThenContext) NEXT() antlr.TerminalNode
- func (s *IfThenContext) SENTENCE() antlr.TerminalNode
- func (s *IfThenContext) Statement(i int) IStatementContext
- func (s *IfThenContext) THEN() antlr.TerminalNode
- func (s *IfThenContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InDataContext
- func (s *InDataContext) DataName() IDataNameContext
- func (s *InDataContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InDataContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InDataContext) GetParser() antlr.Parser
- func (s *InDataContext) GetRuleContext() antlr.RuleContext
- func (s *InDataContext) IN() antlr.TerminalNode
- func (*InDataContext) IsInDataContext()
- func (s *InDataContext) OF() antlr.TerminalNode
- func (s *InDataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InFileContext
- func (s *InFileContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InFileContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InFileContext) FileName() IFileNameContext
- func (s *InFileContext) GetParser() antlr.Parser
- func (s *InFileContext) GetRuleContext() antlr.RuleContext
- func (s *InFileContext) IN() antlr.TerminalNode
- func (*InFileContext) IsInFileContext()
- func (s *InFileContext) OF() antlr.TerminalNode
- func (s *InFileContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InLibraryContext
- func (s *InLibraryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InLibraryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InLibraryContext) GetParser() antlr.Parser
- func (s *InLibraryContext) GetRuleContext() antlr.RuleContext
- func (s *InLibraryContext) IN() antlr.TerminalNode
- func (*InLibraryContext) IsInLibraryContext()
- func (s *InLibraryContext) LibraryName() ILibraryNameContext
- func (s *InLibraryContext) OF() antlr.TerminalNode
- func (s *InLibraryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InMnemonicContext
- func (s *InMnemonicContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InMnemonicContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InMnemonicContext) GetParser() antlr.Parser
- func (s *InMnemonicContext) GetRuleContext() antlr.RuleContext
- func (s *InMnemonicContext) IN() antlr.TerminalNode
- func (*InMnemonicContext) IsInMnemonicContext()
- func (s *InMnemonicContext) MnemonicName() IMnemonicNameContext
- func (s *InMnemonicContext) OF() antlr.TerminalNode
- func (s *InMnemonicContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InSectionContext
- func (s *InSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InSectionContext) GetParser() antlr.Parser
- func (s *InSectionContext) GetRuleContext() antlr.RuleContext
- func (s *InSectionContext) IN() antlr.TerminalNode
- func (*InSectionContext) IsInSectionContext()
- func (s *InSectionContext) OF() antlr.TerminalNode
- func (s *InSectionContext) SectionName() ISectionNameContext
- func (s *InSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InTableContext
- func (s *InTableContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InTableContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InTableContext) GetParser() antlr.Parser
- func (s *InTableContext) GetRuleContext() antlr.RuleContext
- func (s *InTableContext) IN() antlr.TerminalNode
- func (*InTableContext) IsInTableContext()
- func (s *InTableContext) OF() antlr.TerminalNode
- func (s *InTableContext) TableCall() ITableCallContext
- func (s *InTableContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IndexNameContext
- func (s *IndexNameContext) CobolWord() ICobolWordContext
- func (s *IndexNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IndexNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IndexNameContext) GetParser() antlr.Parser
- func (s *IndexNameContext) GetRuleContext() antlr.RuleContext
- func (*IndexNameContext) IsIndexNameContext()
- func (s *IndexNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InitializeReplacingByContext
- func (s *InitializeReplacingByContext) ALPHABETIC() antlr.TerminalNode
- func (s *InitializeReplacingByContext) ALPHANUMERIC() antlr.TerminalNode
- func (s *InitializeReplacingByContext) ALPHANUMERIC_EDITED() antlr.TerminalNode
- func (s *InitializeReplacingByContext) BY() antlr.TerminalNode
- func (s *InitializeReplacingByContext) DATA() antlr.TerminalNode
- func (s *InitializeReplacingByContext) DBCS() antlr.TerminalNode
- func (s *InitializeReplacingByContext) EGCS() antlr.TerminalNode
- func (s *InitializeReplacingByContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InitializeReplacingByContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InitializeReplacingByContext) GetParser() antlr.Parser
- func (s *InitializeReplacingByContext) GetRuleContext() antlr.RuleContext
- func (s *InitializeReplacingByContext) Identifier() IIdentifierContext
- func (*InitializeReplacingByContext) IsInitializeReplacingByContext()
- func (s *InitializeReplacingByContext) Literal() ILiteralContext
- func (s *InitializeReplacingByContext) NATIONAL() antlr.TerminalNode
- func (s *InitializeReplacingByContext) NATIONAL_EDITED() antlr.TerminalNode
- func (s *InitializeReplacingByContext) NUMERIC() antlr.TerminalNode
- func (s *InitializeReplacingByContext) NUMERIC_EDITED() antlr.TerminalNode
- func (s *InitializeReplacingByContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InitializeReplacingPhraseContext
- func (s *InitializeReplacingPhraseContext) AllInitializeReplacingBy() []IInitializeReplacingByContext
- func (s *InitializeReplacingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InitializeReplacingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InitializeReplacingPhraseContext) GetParser() antlr.Parser
- func (s *InitializeReplacingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *InitializeReplacingPhraseContext) InitializeReplacingBy(i int) IInitializeReplacingByContext
- func (*InitializeReplacingPhraseContext) IsInitializeReplacingPhraseContext()
- func (s *InitializeReplacingPhraseContext) REPLACING() antlr.TerminalNode
- func (s *InitializeReplacingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InitializeStatementContext
- func (s *InitializeStatementContext) AllIdentifier() []IIdentifierContext
- func (s *InitializeStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InitializeStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InitializeStatementContext) GetParser() antlr.Parser
- func (s *InitializeStatementContext) GetRuleContext() antlr.RuleContext
- func (s *InitializeStatementContext) INITIALIZE() antlr.TerminalNode
- func (s *InitializeStatementContext) Identifier(i int) IIdentifierContext
- func (s *InitializeStatementContext) InitializeReplacingPhrase() IInitializeReplacingPhraseContext
- func (*InitializeStatementContext) IsInitializeStatementContext()
- func (s *InitializeStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InitiateStatementContext
- func (s *InitiateStatementContext) AllReportName() []IReportNameContext
- func (s *InitiateStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InitiateStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InitiateStatementContext) GetParser() antlr.Parser
- func (s *InitiateStatementContext) GetRuleContext() antlr.RuleContext
- func (s *InitiateStatementContext) INITIATE() antlr.TerminalNode
- func (*InitiateStatementContext) IsInitiateStatementContext()
- func (s *InitiateStatementContext) ReportName(i int) IReportNameContext
- func (s *InitiateStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InputOutputSectionContext
- func (s *InputOutputSectionContext) AllInputOutputSectionParagraph() []IInputOutputSectionParagraphContext
- func (s *InputOutputSectionContext) DOT_FS() antlr.TerminalNode
- func (s *InputOutputSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InputOutputSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InputOutputSectionContext) GetParser() antlr.Parser
- func (s *InputOutputSectionContext) GetRuleContext() antlr.RuleContext
- func (s *InputOutputSectionContext) INPUT_OUTPUT() antlr.TerminalNode
- func (s *InputOutputSectionContext) InputOutputSectionParagraph(i int) IInputOutputSectionParagraphContext
- func (*InputOutputSectionContext) IsInputOutputSectionContext()
- func (s *InputOutputSectionContext) SECTION() antlr.TerminalNode
- func (s *InputOutputSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InputOutputSectionParagraphContext
- func (s *InputOutputSectionParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InputOutputSectionParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InputOutputSectionParagraphContext) FileControlParagraph() IFileControlParagraphContext
- func (s *InputOutputSectionParagraphContext) GetParser() antlr.Parser
- func (s *InputOutputSectionParagraphContext) GetRuleContext() antlr.RuleContext
- func (s *InputOutputSectionParagraphContext) IoControlParagraph() IIoControlParagraphContext
- func (*InputOutputSectionParagraphContext) IsInputOutputSectionParagraphContext()
- func (s *InputOutputSectionParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectAllLeadingContext
- func (s *InspectAllLeadingContext) AllInspectBeforeAfter() []IInspectBeforeAfterContext
- func (s *InspectAllLeadingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectAllLeadingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectAllLeadingContext) GetParser() antlr.Parser
- func (s *InspectAllLeadingContext) GetRuleContext() antlr.RuleContext
- func (s *InspectAllLeadingContext) Identifier() IIdentifierContext
- func (s *InspectAllLeadingContext) InspectBeforeAfter(i int) IInspectBeforeAfterContext
- func (*InspectAllLeadingContext) IsInspectAllLeadingContext()
- func (s *InspectAllLeadingContext) Literal() ILiteralContext
- func (s *InspectAllLeadingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectAllLeadingsContext
- func (s *InspectAllLeadingsContext) ALL() antlr.TerminalNode
- func (s *InspectAllLeadingsContext) AllInspectAllLeading() []IInspectAllLeadingContext
- func (s *InspectAllLeadingsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectAllLeadingsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectAllLeadingsContext) GetParser() antlr.Parser
- func (s *InspectAllLeadingsContext) GetRuleContext() antlr.RuleContext
- func (s *InspectAllLeadingsContext) InspectAllLeading(i int) IInspectAllLeadingContext
- func (*InspectAllLeadingsContext) IsInspectAllLeadingsContext()
- func (s *InspectAllLeadingsContext) LEADING() antlr.TerminalNode
- func (s *InspectAllLeadingsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectBeforeAfterContext
- func (s *InspectBeforeAfterContext) AFTER() antlr.TerminalNode
- func (s *InspectBeforeAfterContext) BEFORE() antlr.TerminalNode
- func (s *InspectBeforeAfterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectBeforeAfterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectBeforeAfterContext) GetParser() antlr.Parser
- func (s *InspectBeforeAfterContext) GetRuleContext() antlr.RuleContext
- func (s *InspectBeforeAfterContext) INITIAL() antlr.TerminalNode
- func (s *InspectBeforeAfterContext) Identifier() IIdentifierContext
- func (*InspectBeforeAfterContext) IsInspectBeforeAfterContext()
- func (s *InspectBeforeAfterContext) Literal() ILiteralContext
- func (s *InspectBeforeAfterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectByContext
- func (s *InspectByContext) BY() antlr.TerminalNode
- func (s *InspectByContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectByContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectByContext) GetParser() antlr.Parser
- func (s *InspectByContext) GetRuleContext() antlr.RuleContext
- func (s *InspectByContext) Identifier() IIdentifierContext
- func (*InspectByContext) IsInspectByContext()
- func (s *InspectByContext) Literal() ILiteralContext
- func (s *InspectByContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectCharactersContext
- func (s *InspectCharactersContext) AllInspectBeforeAfter() []IInspectBeforeAfterContext
- func (s *InspectCharactersContext) CHARACTERS() antlr.TerminalNode
- func (s *InspectCharactersContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectCharactersContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectCharactersContext) GetParser() antlr.Parser
- func (s *InspectCharactersContext) GetRuleContext() antlr.RuleContext
- func (s *InspectCharactersContext) InspectBeforeAfter(i int) IInspectBeforeAfterContext
- func (*InspectCharactersContext) IsInspectCharactersContext()
- func (s *InspectCharactersContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectConvertingPhraseContext
- func (s *InspectConvertingPhraseContext) AllInspectBeforeAfter() []IInspectBeforeAfterContext
- func (s *InspectConvertingPhraseContext) CONVERTING() antlr.TerminalNode
- func (s *InspectConvertingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectConvertingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectConvertingPhraseContext) GetParser() antlr.Parser
- func (s *InspectConvertingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *InspectConvertingPhraseContext) Identifier() IIdentifierContext
- func (s *InspectConvertingPhraseContext) InspectBeforeAfter(i int) IInspectBeforeAfterContext
- func (s *InspectConvertingPhraseContext) InspectTo() IInspectToContext
- func (*InspectConvertingPhraseContext) IsInspectConvertingPhraseContext()
- func (s *InspectConvertingPhraseContext) Literal() ILiteralContext
- func (s *InspectConvertingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectForContext
- func (s *InspectForContext) AllInspectAllLeadings() []IInspectAllLeadingsContext
- func (s *InspectForContext) AllInspectCharacters() []IInspectCharactersContext
- func (s *InspectForContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectForContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectForContext) FOR() antlr.TerminalNode
- func (s *InspectForContext) GetParser() antlr.Parser
- func (s *InspectForContext) GetRuleContext() antlr.RuleContext
- func (s *InspectForContext) Identifier() IIdentifierContext
- func (s *InspectForContext) InspectAllLeadings(i int) IInspectAllLeadingsContext
- func (s *InspectForContext) InspectCharacters(i int) IInspectCharactersContext
- func (*InspectForContext) IsInspectForContext()
- func (s *InspectForContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectReplacingAllLeadingContext
- func (s *InspectReplacingAllLeadingContext) AllInspectBeforeAfter() []IInspectBeforeAfterContext
- func (s *InspectReplacingAllLeadingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingAllLeadingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingAllLeadingContext) GetParser() antlr.Parser
- func (s *InspectReplacingAllLeadingContext) GetRuleContext() antlr.RuleContext
- func (s *InspectReplacingAllLeadingContext) Identifier() IIdentifierContext
- func (s *InspectReplacingAllLeadingContext) InspectBeforeAfter(i int) IInspectBeforeAfterContext
- func (s *InspectReplacingAllLeadingContext) InspectBy() IInspectByContext
- func (*InspectReplacingAllLeadingContext) IsInspectReplacingAllLeadingContext()
- func (s *InspectReplacingAllLeadingContext) Literal() ILiteralContext
- func (s *InspectReplacingAllLeadingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectReplacingAllLeadingsContext
- func (s *InspectReplacingAllLeadingsContext) ALL() antlr.TerminalNode
- func (s *InspectReplacingAllLeadingsContext) AllInspectReplacingAllLeading() []IInspectReplacingAllLeadingContext
- func (s *InspectReplacingAllLeadingsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingAllLeadingsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingAllLeadingsContext) FIRST() antlr.TerminalNode
- func (s *InspectReplacingAllLeadingsContext) GetParser() antlr.Parser
- func (s *InspectReplacingAllLeadingsContext) GetRuleContext() antlr.RuleContext
- func (s *InspectReplacingAllLeadingsContext) InspectReplacingAllLeading(i int) IInspectReplacingAllLeadingContext
- func (*InspectReplacingAllLeadingsContext) IsInspectReplacingAllLeadingsContext()
- func (s *InspectReplacingAllLeadingsContext) LEADING() antlr.TerminalNode
- func (s *InspectReplacingAllLeadingsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectReplacingCharactersContext
- func (s *InspectReplacingCharactersContext) AllInspectBeforeAfter() []IInspectBeforeAfterContext
- func (s *InspectReplacingCharactersContext) CHARACTERS() antlr.TerminalNode
- func (s *InspectReplacingCharactersContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingCharactersContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingCharactersContext) GetParser() antlr.Parser
- func (s *InspectReplacingCharactersContext) GetRuleContext() antlr.RuleContext
- func (s *InspectReplacingCharactersContext) InspectBeforeAfter(i int) IInspectBeforeAfterContext
- func (s *InspectReplacingCharactersContext) InspectBy() IInspectByContext
- func (*InspectReplacingCharactersContext) IsInspectReplacingCharactersContext()
- func (s *InspectReplacingCharactersContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectReplacingPhraseContext
- func (s *InspectReplacingPhraseContext) AllInspectReplacingAllLeadings() []IInspectReplacingAllLeadingsContext
- func (s *InspectReplacingPhraseContext) AllInspectReplacingCharacters() []IInspectReplacingCharactersContext
- func (s *InspectReplacingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectReplacingPhraseContext) GetParser() antlr.Parser
- func (s *InspectReplacingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *InspectReplacingPhraseContext) InspectReplacingAllLeadings(i int) IInspectReplacingAllLeadingsContext
- func (s *InspectReplacingPhraseContext) InspectReplacingCharacters(i int) IInspectReplacingCharactersContext
- func (*InspectReplacingPhraseContext) IsInspectReplacingPhraseContext()
- func (s *InspectReplacingPhraseContext) REPLACING() antlr.TerminalNode
- func (s *InspectReplacingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectStatementContext
- func (s *InspectStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectStatementContext) GetParser() antlr.Parser
- func (s *InspectStatementContext) GetRuleContext() antlr.RuleContext
- func (s *InspectStatementContext) INSPECT() antlr.TerminalNode
- func (s *InspectStatementContext) Identifier() IIdentifierContext
- func (s *InspectStatementContext) InspectConvertingPhrase() IInspectConvertingPhraseContext
- func (s *InspectStatementContext) InspectReplacingPhrase() IInspectReplacingPhraseContext
- func (s *InspectStatementContext) InspectTallyingPhrase() IInspectTallyingPhraseContext
- func (s *InspectStatementContext) InspectTallyingReplacingPhrase() IInspectTallyingReplacingPhraseContext
- func (*InspectStatementContext) IsInspectStatementContext()
- func (s *InspectStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectTallyingPhraseContext
- func (s *InspectTallyingPhraseContext) AllInspectFor() []IInspectForContext
- func (s *InspectTallyingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectTallyingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectTallyingPhraseContext) GetParser() antlr.Parser
- func (s *InspectTallyingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *InspectTallyingPhraseContext) InspectFor(i int) IInspectForContext
- func (*InspectTallyingPhraseContext) IsInspectTallyingPhraseContext()
- func (s *InspectTallyingPhraseContext) TALLYING() antlr.TerminalNode
- func (s *InspectTallyingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectTallyingReplacingPhraseContext
- func (s *InspectTallyingReplacingPhraseContext) AllInspectFor() []IInspectForContext
- func (s *InspectTallyingReplacingPhraseContext) AllInspectReplacingPhrase() []IInspectReplacingPhraseContext
- func (s *InspectTallyingReplacingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectTallyingReplacingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectTallyingReplacingPhraseContext) GetParser() antlr.Parser
- func (s *InspectTallyingReplacingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *InspectTallyingReplacingPhraseContext) InspectFor(i int) IInspectForContext
- func (s *InspectTallyingReplacingPhraseContext) InspectReplacingPhrase(i int) IInspectReplacingPhraseContext
- func (*InspectTallyingReplacingPhraseContext) IsInspectTallyingReplacingPhraseContext()
- func (s *InspectTallyingReplacingPhraseContext) TALLYING() antlr.TerminalNode
- func (s *InspectTallyingReplacingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InspectToContext
- func (s *InspectToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InspectToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InspectToContext) GetParser() antlr.Parser
- func (s *InspectToContext) GetRuleContext() antlr.RuleContext
- func (s *InspectToContext) Identifier() IIdentifierContext
- func (*InspectToContext) IsInspectToContext()
- func (s *InspectToContext) Literal() ILiteralContext
- func (s *InspectToContext) TO() antlr.TerminalNode
- func (s *InspectToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InstallationParagraphContext
- func (s *InstallationParagraphContext) CommentEntry() ICommentEntryContext
- func (s *InstallationParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *InstallationParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InstallationParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InstallationParagraphContext) GetParser() antlr.Parser
- func (s *InstallationParagraphContext) GetRuleContext() antlr.RuleContext
- func (s *InstallationParagraphContext) INSTALLATION() antlr.TerminalNode
- func (*InstallationParagraphContext) IsInstallationParagraphContext()
- func (s *InstallationParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IntegerLiteralContext
- func (s *IntegerLiteralContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IntegerLiteralContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IntegerLiteralContext) GetParser() antlr.Parser
- func (s *IntegerLiteralContext) GetRuleContext() antlr.RuleContext
- func (s *IntegerLiteralContext) INTEGERLITERAL() antlr.TerminalNode
- func (*IntegerLiteralContext) IsIntegerLiteralContext()
- func (s *IntegerLiteralContext) LEVEL_NUMBER_66() antlr.TerminalNode
- func (s *IntegerLiteralContext) LEVEL_NUMBER_77() antlr.TerminalNode
- func (s *IntegerLiteralContext) LEVEL_NUMBER_88() antlr.TerminalNode
- func (s *IntegerLiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type InvalidKeyPhraseContext
- func (s *InvalidKeyPhraseContext) AllStatement() []IStatementContext
- func (s *InvalidKeyPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *InvalidKeyPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *InvalidKeyPhraseContext) GetParser() antlr.Parser
- func (s *InvalidKeyPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *InvalidKeyPhraseContext) INVALID() antlr.TerminalNode
- func (*InvalidKeyPhraseContext) IsInvalidKeyPhraseContext()
- func (s *InvalidKeyPhraseContext) KEY() antlr.TerminalNode
- func (s *InvalidKeyPhraseContext) Statement(i int) IStatementContext
- func (s *InvalidKeyPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IoControlClauseContext
- func (s *IoControlClauseContext) CommitmentControlClause() ICommitmentControlClauseContext
- func (s *IoControlClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IoControlClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IoControlClauseContext) GetParser() antlr.Parser
- func (s *IoControlClauseContext) GetRuleContext() antlr.RuleContext
- func (*IoControlClauseContext) IsIoControlClauseContext()
- func (s *IoControlClauseContext) MultipleFileClause() IMultipleFileClauseContext
- func (s *IoControlClauseContext) RerunClause() IRerunClauseContext
- func (s *IoControlClauseContext) SameClause() ISameClauseContext
- func (s *IoControlClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type IoControlParagraphContext
- func (s *IoControlParagraphContext) AllDOT_FS() []antlr.TerminalNode
- func (s *IoControlParagraphContext) AllIoControlClause() []IIoControlClauseContext
- func (s *IoControlParagraphContext) DOT_FS(i int) antlr.TerminalNode
- func (s *IoControlParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *IoControlParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *IoControlParagraphContext) FileName() IFileNameContext
- func (s *IoControlParagraphContext) GetParser() antlr.Parser
- func (s *IoControlParagraphContext) GetRuleContext() antlr.RuleContext
- func (s *IoControlParagraphContext) I_O_CONTROL() antlr.TerminalNode
- func (s *IoControlParagraphContext) IoControlClause(i int) IIoControlClauseContext
- func (*IoControlParagraphContext) IsIoControlParagraphContext()
- func (s *IoControlParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LabelRecordsClauseContext
- func (s *LabelRecordsClauseContext) ARE() antlr.TerminalNode
- func (s *LabelRecordsClauseContext) AllDataName() []IDataNameContext
- func (s *LabelRecordsClauseContext) DataName(i int) IDataNameContext
- func (s *LabelRecordsClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LabelRecordsClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LabelRecordsClauseContext) GetParser() antlr.Parser
- func (s *LabelRecordsClauseContext) GetRuleContext() antlr.RuleContext
- func (s *LabelRecordsClauseContext) IS() antlr.TerminalNode
- func (*LabelRecordsClauseContext) IsLabelRecordsClauseContext()
- func (s *LabelRecordsClauseContext) LABEL() antlr.TerminalNode
- func (s *LabelRecordsClauseContext) OMITTED() antlr.TerminalNode
- func (s *LabelRecordsClauseContext) RECORD() antlr.TerminalNode
- func (s *LabelRecordsClauseContext) RECORDS() antlr.TerminalNode
- func (s *LabelRecordsClauseContext) STANDARD() antlr.TerminalNode
- func (s *LabelRecordsClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LanguageNameContext
- func (s *LanguageNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LanguageNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LanguageNameContext) GetParser() antlr.Parser
- func (s *LanguageNameContext) GetRuleContext() antlr.RuleContext
- func (*LanguageNameContext) IsLanguageNameContext()
- func (s *LanguageNameContext) SystemName() ISystemNameContext
- func (s *LanguageNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LengthContext
- func (s *LengthContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *LengthContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LengthContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LengthContext) GetParser() antlr.Parser
- func (s *LengthContext) GetRuleContext() antlr.RuleContext
- func (*LengthContext) IsLengthContext()
- func (s *LengthContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryAttributeClauseFormat1Context
- func (s *LibraryAttributeClauseFormat1Context) ATTRIBUTE() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat1Context) DONTCARE() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeClauseFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeClauseFormat1Context) GetParser() antlr.Parser
- func (s *LibraryAttributeClauseFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *LibraryAttributeClauseFormat1Context) IS() antlr.TerminalNode
- func (*LibraryAttributeClauseFormat1Context) IsLibraryAttributeClauseFormat1Context()
- func (s *LibraryAttributeClauseFormat1Context) PRIVATE() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat1Context) SHAREDBYALL() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat1Context) SHAREDBYRUNUNIT() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat1Context) SHARING() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryAttributeClauseFormat2Context
- func (s *LibraryAttributeClauseFormat2Context) ATTRIBUTE() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat2Context) BYFUNCTION() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat2Context) BYTITLE() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeClauseFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeClauseFormat2Context) GetParser() antlr.Parser
- func (s *LibraryAttributeClauseFormat2Context) GetRuleContext() antlr.RuleContext
- func (s *LibraryAttributeClauseFormat2Context) IS() antlr.TerminalNode
- func (*LibraryAttributeClauseFormat2Context) IsLibraryAttributeClauseFormat2Context()
- func (s *LibraryAttributeClauseFormat2Context) LIBACCESS() antlr.TerminalNode
- func (s *LibraryAttributeClauseFormat2Context) LibraryAttributeFunction() ILibraryAttributeFunctionContext
- func (s *LibraryAttributeClauseFormat2Context) LibraryAttributeParameter() ILibraryAttributeParameterContext
- func (s *LibraryAttributeClauseFormat2Context) LibraryAttributeTitle() ILibraryAttributeTitleContext
- func (s *LibraryAttributeClauseFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryAttributeFunctionContext
- func (s *LibraryAttributeFunctionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeFunctionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeFunctionContext) FUNCTIONNAME() antlr.TerminalNode
- func (s *LibraryAttributeFunctionContext) GetParser() antlr.Parser
- func (s *LibraryAttributeFunctionContext) GetRuleContext() antlr.RuleContext
- func (s *LibraryAttributeFunctionContext) IS() antlr.TerminalNode
- func (*LibraryAttributeFunctionContext) IsLibraryAttributeFunctionContext()
- func (s *LibraryAttributeFunctionContext) Literal() ILiteralContext
- func (s *LibraryAttributeFunctionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryAttributeParameterContext
- func (s *LibraryAttributeParameterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeParameterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeParameterContext) GetParser() antlr.Parser
- func (s *LibraryAttributeParameterContext) GetRuleContext() antlr.RuleContext
- func (s *LibraryAttributeParameterContext) IS() antlr.TerminalNode
- func (*LibraryAttributeParameterContext) IsLibraryAttributeParameterContext()
- func (s *LibraryAttributeParameterContext) LIBPARAMETER() antlr.TerminalNode
- func (s *LibraryAttributeParameterContext) Literal() ILiteralContext
- func (s *LibraryAttributeParameterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryAttributeTitleContext
- func (s *LibraryAttributeTitleContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeTitleContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryAttributeTitleContext) GetParser() antlr.Parser
- func (s *LibraryAttributeTitleContext) GetRuleContext() antlr.RuleContext
- func (s *LibraryAttributeTitleContext) IS() antlr.TerminalNode
- func (*LibraryAttributeTitleContext) IsLibraryAttributeTitleContext()
- func (s *LibraryAttributeTitleContext) Literal() ILiteralContext
- func (s *LibraryAttributeTitleContext) TITLE() antlr.TerminalNode
- func (s *LibraryAttributeTitleContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryDescriptionEntryContext
- func (s *LibraryDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryDescriptionEntryContext) GetParser() antlr.Parser
- func (s *LibraryDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (*LibraryDescriptionEntryContext) IsLibraryDescriptionEntryContext()
- func (s *LibraryDescriptionEntryContext) LibraryDescriptionEntryFormat1() ILibraryDescriptionEntryFormat1Context
- func (s *LibraryDescriptionEntryContext) LibraryDescriptionEntryFormat2() ILibraryDescriptionEntryFormat2Context
- func (s *LibraryDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryDescriptionEntryFormat1Context
- func (s *LibraryDescriptionEntryFormat1Context) EXPORT() antlr.TerminalNode
- func (s *LibraryDescriptionEntryFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryDescriptionEntryFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryDescriptionEntryFormat1Context) GetParser() antlr.Parser
- func (s *LibraryDescriptionEntryFormat1Context) GetRuleContext() antlr.RuleContext
- func (*LibraryDescriptionEntryFormat1Context) IsLibraryDescriptionEntryFormat1Context()
- func (s *LibraryDescriptionEntryFormat1Context) LD() antlr.TerminalNode
- func (s *LibraryDescriptionEntryFormat1Context) LibraryAttributeClauseFormat1() ILibraryAttributeClauseFormat1Context
- func (s *LibraryDescriptionEntryFormat1Context) LibraryEntryProcedureClauseFormat1() ILibraryEntryProcedureClauseFormat1Context
- func (s *LibraryDescriptionEntryFormat1Context) LibraryName() ILibraryNameContext
- func (s *LibraryDescriptionEntryFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryDescriptionEntryFormat2Context
- func (s *LibraryDescriptionEntryFormat2Context) AllLibraryAttributeClauseFormat2() []ILibraryAttributeClauseFormat2Context
- func (s *LibraryDescriptionEntryFormat2Context) AllLibraryEntryProcedureClauseFormat2() []ILibraryEntryProcedureClauseFormat2Context
- func (s *LibraryDescriptionEntryFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryDescriptionEntryFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryDescriptionEntryFormat2Context) GetParser() antlr.Parser
- func (s *LibraryDescriptionEntryFormat2Context) GetRuleContext() antlr.RuleContext
- func (s *LibraryDescriptionEntryFormat2Context) IMPORT() antlr.TerminalNode
- func (*LibraryDescriptionEntryFormat2Context) IsLibraryDescriptionEntryFormat2Context()
- func (s *LibraryDescriptionEntryFormat2Context) LB() antlr.TerminalNode
- func (s *LibraryDescriptionEntryFormat2Context) LibraryAttributeClauseFormat2(i int) ILibraryAttributeClauseFormat2Context
- func (s *LibraryDescriptionEntryFormat2Context) LibraryEntryProcedureClauseFormat2(i int) ILibraryEntryProcedureClauseFormat2Context
- func (s *LibraryDescriptionEntryFormat2Context) LibraryIsCommonClause() ILibraryIsCommonClauseContext
- func (s *LibraryDescriptionEntryFormat2Context) LibraryIsGlobalClause() ILibraryIsGlobalClauseContext
- func (s *LibraryDescriptionEntryFormat2Context) LibraryName() ILibraryNameContext
- func (s *LibraryDescriptionEntryFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryEntryProcedureClauseFormat1Context
- func (s *LibraryEntryProcedureClauseFormat1Context) ENTRY_PROCEDURE() antlr.TerminalNode
- func (s *LibraryEntryProcedureClauseFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureClauseFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureClauseFormat1Context) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureClauseFormat1Context) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureClauseFormat1Context) IsLibraryEntryProcedureClauseFormat1Context()
- func (s *LibraryEntryProcedureClauseFormat1Context) LibraryEntryProcedureForClause() ILibraryEntryProcedureForClauseContext
- func (s *LibraryEntryProcedureClauseFormat1Context) ProgramName() IProgramNameContext
- func (s *LibraryEntryProcedureClauseFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryEntryProcedureClauseFormat2Context
- func (s *LibraryEntryProcedureClauseFormat2Context) ENTRY_PROCEDURE() antlr.TerminalNode
- func (s *LibraryEntryProcedureClauseFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureClauseFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureClauseFormat2Context) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureClauseFormat2Context) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureClauseFormat2Context) IsLibraryEntryProcedureClauseFormat2Context()
- func (s *LibraryEntryProcedureClauseFormat2Context) LibraryEntryProcedureForClause() ILibraryEntryProcedureForClauseContext
- func (s *LibraryEntryProcedureClauseFormat2Context) LibraryEntryProcedureGivingClause() ILibraryEntryProcedureGivingClauseContext
- func (s *LibraryEntryProcedureClauseFormat2Context) LibraryEntryProcedureUsingClause() ILibraryEntryProcedureUsingClauseContext
- func (s *LibraryEntryProcedureClauseFormat2Context) LibraryEntryProcedureWithClause() ILibraryEntryProcedureWithClauseContext
- func (s *LibraryEntryProcedureClauseFormat2Context) ProgramName() IProgramNameContext
- func (s *LibraryEntryProcedureClauseFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryEntryProcedureForClauseContext
- func (s *LibraryEntryProcedureForClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureForClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureForClauseContext) FOR() antlr.TerminalNode
- func (s *LibraryEntryProcedureForClauseContext) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureForClauseContext) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureForClauseContext) IsLibraryEntryProcedureForClauseContext()
- func (s *LibraryEntryProcedureForClauseContext) Literal() ILiteralContext
- func (s *LibraryEntryProcedureForClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryEntryProcedureGivingClauseContext
- func (s *LibraryEntryProcedureGivingClauseContext) DataName() IDataNameContext
- func (s *LibraryEntryProcedureGivingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureGivingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureGivingClauseContext) GIVING() antlr.TerminalNode
- func (s *LibraryEntryProcedureGivingClauseContext) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureGivingClauseContext) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureGivingClauseContext) IsLibraryEntryProcedureGivingClauseContext()
- func (s *LibraryEntryProcedureGivingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryEntryProcedureUsingClauseContext
- func (s *LibraryEntryProcedureUsingClauseContext) AllLibraryEntryProcedureUsingName() []ILibraryEntryProcedureUsingNameContext
- func (s *LibraryEntryProcedureUsingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureUsingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureUsingClauseContext) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureUsingClauseContext) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureUsingClauseContext) IsLibraryEntryProcedureUsingClauseContext()
- func (s *LibraryEntryProcedureUsingClauseContext) LibraryEntryProcedureUsingName(i int) ILibraryEntryProcedureUsingNameContext
- func (s *LibraryEntryProcedureUsingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *LibraryEntryProcedureUsingClauseContext) USING() antlr.TerminalNode
- type LibraryEntryProcedureUsingNameContext
- func (s *LibraryEntryProcedureUsingNameContext) DataName() IDataNameContext
- func (s *LibraryEntryProcedureUsingNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureUsingNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureUsingNameContext) FileName() IFileNameContext
- func (s *LibraryEntryProcedureUsingNameContext) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureUsingNameContext) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureUsingNameContext) IsLibraryEntryProcedureUsingNameContext()
- func (s *LibraryEntryProcedureUsingNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryEntryProcedureWithClauseContext
- func (s *LibraryEntryProcedureWithClauseContext) AllLibraryEntryProcedureWithName() []ILibraryEntryProcedureWithNameContext
- func (s *LibraryEntryProcedureWithClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureWithClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureWithClauseContext) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureWithClauseContext) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureWithClauseContext) IsLibraryEntryProcedureWithClauseContext()
- func (s *LibraryEntryProcedureWithClauseContext) LibraryEntryProcedureWithName(i int) ILibraryEntryProcedureWithNameContext
- func (s *LibraryEntryProcedureWithClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *LibraryEntryProcedureWithClauseContext) WITH() antlr.TerminalNode
- type LibraryEntryProcedureWithNameContext
- func (s *LibraryEntryProcedureWithNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureWithNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryEntryProcedureWithNameContext) FileName() IFileNameContext
- func (s *LibraryEntryProcedureWithNameContext) GetParser() antlr.Parser
- func (s *LibraryEntryProcedureWithNameContext) GetRuleContext() antlr.RuleContext
- func (*LibraryEntryProcedureWithNameContext) IsLibraryEntryProcedureWithNameContext()
- func (s *LibraryEntryProcedureWithNameContext) LocalName() ILocalNameContext
- func (s *LibraryEntryProcedureWithNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryIsCommonClauseContext
- func (s *LibraryIsCommonClauseContext) COMMON() antlr.TerminalNode
- func (s *LibraryIsCommonClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryIsCommonClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryIsCommonClauseContext) GetParser() antlr.Parser
- func (s *LibraryIsCommonClauseContext) GetRuleContext() antlr.RuleContext
- func (s *LibraryIsCommonClauseContext) IS() antlr.TerminalNode
- func (*LibraryIsCommonClauseContext) IsLibraryIsCommonClauseContext()
- func (s *LibraryIsCommonClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryIsGlobalClauseContext
- func (s *LibraryIsGlobalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryIsGlobalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryIsGlobalClauseContext) GLOBAL() antlr.TerminalNode
- func (s *LibraryIsGlobalClauseContext) GetParser() antlr.Parser
- func (s *LibraryIsGlobalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *LibraryIsGlobalClauseContext) IS() antlr.TerminalNode
- func (*LibraryIsGlobalClauseContext) IsLibraryIsGlobalClauseContext()
- func (s *LibraryIsGlobalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LibraryNameContext
- func (s *LibraryNameContext) CobolWord() ICobolWordContext
- func (s *LibraryNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LibraryNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LibraryNameContext) GetParser() antlr.Parser
- func (s *LibraryNameContext) GetRuleContext() antlr.RuleContext
- func (*LibraryNameContext) IsLibraryNameContext()
- func (s *LibraryNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LinageAtContext
- func (s *LinageAtContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LinageAtContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LinageAtContext) GetParser() antlr.Parser
- func (s *LinageAtContext) GetRuleContext() antlr.RuleContext
- func (*LinageAtContext) IsLinageAtContext()
- func (s *LinageAtContext) LinageFootingAt() ILinageFootingAtContext
- func (s *LinageAtContext) LinageLinesAtBottom() ILinageLinesAtBottomContext
- func (s *LinageAtContext) LinageLinesAtTop() ILinageLinesAtTopContext
- func (s *LinageAtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LinageClauseContext
- func (s *LinageClauseContext) AllLinageAt() []ILinageAtContext
- func (s *LinageClauseContext) DataName() IDataNameContext
- func (s *LinageClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LinageClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LinageClauseContext) GetParser() antlr.Parser
- func (s *LinageClauseContext) GetRuleContext() antlr.RuleContext
- func (s *LinageClauseContext) IS() antlr.TerminalNode
- func (s *LinageClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*LinageClauseContext) IsLinageClauseContext()
- func (s *LinageClauseContext) LINAGE() antlr.TerminalNode
- func (s *LinageClauseContext) LINES() antlr.TerminalNode
- func (s *LinageClauseContext) LinageAt(i int) ILinageAtContext
- func (s *LinageClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LinageFootingAtContext
- func (s *LinageFootingAtContext) AT() antlr.TerminalNode
- func (s *LinageFootingAtContext) DataName() IDataNameContext
- func (s *LinageFootingAtContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LinageFootingAtContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LinageFootingAtContext) FOOTING() antlr.TerminalNode
- func (s *LinageFootingAtContext) GetParser() antlr.Parser
- func (s *LinageFootingAtContext) GetRuleContext() antlr.RuleContext
- func (s *LinageFootingAtContext) IntegerLiteral() IIntegerLiteralContext
- func (*LinageFootingAtContext) IsLinageFootingAtContext()
- func (s *LinageFootingAtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *LinageFootingAtContext) WITH() antlr.TerminalNode
- type LinageLinesAtBottomContext
- func (s *LinageLinesAtBottomContext) AT() antlr.TerminalNode
- func (s *LinageLinesAtBottomContext) BOTTOM() antlr.TerminalNode
- func (s *LinageLinesAtBottomContext) DataName() IDataNameContext
- func (s *LinageLinesAtBottomContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LinageLinesAtBottomContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LinageLinesAtBottomContext) GetParser() antlr.Parser
- func (s *LinageLinesAtBottomContext) GetRuleContext() antlr.RuleContext
- func (s *LinageLinesAtBottomContext) IntegerLiteral() IIntegerLiteralContext
- func (*LinageLinesAtBottomContext) IsLinageLinesAtBottomContext()
- func (s *LinageLinesAtBottomContext) LINES() antlr.TerminalNode
- func (s *LinageLinesAtBottomContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LinageLinesAtTopContext
- func (s *LinageLinesAtTopContext) AT() antlr.TerminalNode
- func (s *LinageLinesAtTopContext) DataName() IDataNameContext
- func (s *LinageLinesAtTopContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LinageLinesAtTopContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LinageLinesAtTopContext) GetParser() antlr.Parser
- func (s *LinageLinesAtTopContext) GetRuleContext() antlr.RuleContext
- func (s *LinageLinesAtTopContext) IntegerLiteral() IIntegerLiteralContext
- func (*LinageLinesAtTopContext) IsLinageLinesAtTopContext()
- func (s *LinageLinesAtTopContext) LINES() antlr.TerminalNode
- func (s *LinageLinesAtTopContext) TOP() antlr.TerminalNode
- func (s *LinageLinesAtTopContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LinkageSectionContext
- func (s *LinkageSectionContext) AllDataDescriptionEntry() []IDataDescriptionEntryContext
- func (s *LinkageSectionContext) DOT_FS() antlr.TerminalNode
- func (s *LinkageSectionContext) DataDescriptionEntry(i int) IDataDescriptionEntryContext
- func (s *LinkageSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LinkageSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LinkageSectionContext) GetParser() antlr.Parser
- func (s *LinkageSectionContext) GetRuleContext() antlr.RuleContext
- func (*LinkageSectionContext) IsLinkageSectionContext()
- func (s *LinkageSectionContext) LINKAGE() antlr.TerminalNode
- func (s *LinkageSectionContext) SECTION() antlr.TerminalNode
- func (s *LinkageSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LiteralContext
- func (s *LiteralContext) BooleanLiteral() IBooleanLiteralContext
- func (s *LiteralContext) CicsDfhRespLiteral() ICicsDfhRespLiteralContext
- func (s *LiteralContext) CicsDfhValueLiteral() ICicsDfhValueLiteralContext
- func (s *LiteralContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LiteralContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LiteralContext) FigurativeConstant() IFigurativeConstantContext
- func (s *LiteralContext) GetParser() antlr.Parser
- func (s *LiteralContext) GetRuleContext() antlr.RuleContext
- func (*LiteralContext) IsLiteralContext()
- func (s *LiteralContext) NONNUMERICLITERAL() antlr.TerminalNode
- func (s *LiteralContext) NumericLiteral() INumericLiteralContext
- func (s *LiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LocalNameContext
- func (s *LocalNameContext) CobolWord() ICobolWordContext
- func (s *LocalNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LocalNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LocalNameContext) GetParser() antlr.Parser
- func (s *LocalNameContext) GetRuleContext() antlr.RuleContext
- func (*LocalNameContext) IsLocalNameContext()
- func (s *LocalNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type LocalStorageSectionContext
- func (s *LocalStorageSectionContext) AllDOT_FS() []antlr.TerminalNode
- func (s *LocalStorageSectionContext) AllDataDescriptionEntry() []IDataDescriptionEntryContext
- func (s *LocalStorageSectionContext) DOT_FS(i int) antlr.TerminalNode
- func (s *LocalStorageSectionContext) DataDescriptionEntry(i int) IDataDescriptionEntryContext
- func (s *LocalStorageSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *LocalStorageSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *LocalStorageSectionContext) GetParser() antlr.Parser
- func (s *LocalStorageSectionContext) GetRuleContext() antlr.RuleContext
- func (*LocalStorageSectionContext) IsLocalStorageSectionContext()
- func (s *LocalStorageSectionContext) LD() antlr.TerminalNode
- func (s *LocalStorageSectionContext) LOCAL_STORAGE() antlr.TerminalNode
- func (s *LocalStorageSectionContext) LocalName() ILocalNameContext
- func (s *LocalStorageSectionContext) SECTION() antlr.TerminalNode
- func (s *LocalStorageSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MemorySizeClauseContext
- func (s *MemorySizeClauseContext) CHARACTERS() antlr.TerminalNode
- func (s *MemorySizeClauseContext) CobolWord() ICobolWordContext
- func (s *MemorySizeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MemorySizeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MemorySizeClauseContext) GetParser() antlr.Parser
- func (s *MemorySizeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *MemorySizeClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*MemorySizeClauseContext) IsMemorySizeClauseContext()
- func (s *MemorySizeClauseContext) MEMORY() antlr.TerminalNode
- func (s *MemorySizeClauseContext) MODULES() antlr.TerminalNode
- func (s *MemorySizeClauseContext) SIZE() antlr.TerminalNode
- func (s *MemorySizeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *MemorySizeClauseContext) WORDS() antlr.TerminalNode
- type MergeCollatingAlphanumericContext
- func (s *MergeCollatingAlphanumericContext) ALPHANUMERIC() antlr.TerminalNode
- func (s *MergeCollatingAlphanumericContext) AlphabetName() IAlphabetNameContext
- func (s *MergeCollatingAlphanumericContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeCollatingAlphanumericContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeCollatingAlphanumericContext) FOR() antlr.TerminalNode
- func (s *MergeCollatingAlphanumericContext) GetParser() antlr.Parser
- func (s *MergeCollatingAlphanumericContext) GetRuleContext() antlr.RuleContext
- func (s *MergeCollatingAlphanumericContext) IS() antlr.TerminalNode
- func (*MergeCollatingAlphanumericContext) IsMergeCollatingAlphanumericContext()
- func (s *MergeCollatingAlphanumericContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeCollatingNationalContext
- func (s *MergeCollatingNationalContext) AlphabetName() IAlphabetNameContext
- func (s *MergeCollatingNationalContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeCollatingNationalContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeCollatingNationalContext) FOR() antlr.TerminalNode
- func (s *MergeCollatingNationalContext) GetParser() antlr.Parser
- func (s *MergeCollatingNationalContext) GetRuleContext() antlr.RuleContext
- func (s *MergeCollatingNationalContext) IS() antlr.TerminalNode
- func (*MergeCollatingNationalContext) IsMergeCollatingNationalContext()
- func (s *MergeCollatingNationalContext) NATIONAL() antlr.TerminalNode
- func (s *MergeCollatingNationalContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeCollatingSequencePhraseContext
- func (s *MergeCollatingSequencePhraseContext) AllAlphabetName() []IAlphabetNameContext
- func (s *MergeCollatingSequencePhraseContext) AlphabetName(i int) IAlphabetNameContext
- func (s *MergeCollatingSequencePhraseContext) COLLATING() antlr.TerminalNode
- func (s *MergeCollatingSequencePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeCollatingSequencePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeCollatingSequencePhraseContext) GetParser() antlr.Parser
- func (s *MergeCollatingSequencePhraseContext) GetRuleContext() antlr.RuleContext
- func (s *MergeCollatingSequencePhraseContext) IS() antlr.TerminalNode
- func (*MergeCollatingSequencePhraseContext) IsMergeCollatingSequencePhraseContext()
- func (s *MergeCollatingSequencePhraseContext) MergeCollatingAlphanumeric() IMergeCollatingAlphanumericContext
- func (s *MergeCollatingSequencePhraseContext) MergeCollatingNational() IMergeCollatingNationalContext
- func (s *MergeCollatingSequencePhraseContext) SEQUENCE() antlr.TerminalNode
- func (s *MergeCollatingSequencePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeGivingContext
- func (s *MergeGivingContext) CRUNCH() antlr.TerminalNode
- func (s *MergeGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeGivingContext) FileName() IFileNameContext
- func (s *MergeGivingContext) GetParser() antlr.Parser
- func (s *MergeGivingContext) GetRuleContext() antlr.RuleContext
- func (*MergeGivingContext) IsMergeGivingContext()
- func (s *MergeGivingContext) LOCK() antlr.TerminalNode
- func (s *MergeGivingContext) NO() antlr.TerminalNode
- func (s *MergeGivingContext) RELEASE() antlr.TerminalNode
- func (s *MergeGivingContext) REMOVE() antlr.TerminalNode
- func (s *MergeGivingContext) REWIND() antlr.TerminalNode
- func (s *MergeGivingContext) SAVE() antlr.TerminalNode
- func (s *MergeGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *MergeGivingContext) WITH() antlr.TerminalNode
- type MergeGivingPhraseContext
- func (s *MergeGivingPhraseContext) AllMergeGiving() []IMergeGivingContext
- func (s *MergeGivingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeGivingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeGivingPhraseContext) GIVING() antlr.TerminalNode
- func (s *MergeGivingPhraseContext) GetParser() antlr.Parser
- func (s *MergeGivingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*MergeGivingPhraseContext) IsMergeGivingPhraseContext()
- func (s *MergeGivingPhraseContext) MergeGiving(i int) IMergeGivingContext
- func (s *MergeGivingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeOnKeyClauseContext
- func (s *MergeOnKeyClauseContext) ASCENDING() antlr.TerminalNode
- func (s *MergeOnKeyClauseContext) AllQualifiedDataName() []IQualifiedDataNameContext
- func (s *MergeOnKeyClauseContext) DESCENDING() antlr.TerminalNode
- func (s *MergeOnKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeOnKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeOnKeyClauseContext) GetParser() antlr.Parser
- func (s *MergeOnKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (*MergeOnKeyClauseContext) IsMergeOnKeyClauseContext()
- func (s *MergeOnKeyClauseContext) KEY() antlr.TerminalNode
- func (s *MergeOnKeyClauseContext) ON() antlr.TerminalNode
- func (s *MergeOnKeyClauseContext) QualifiedDataName(i int) IQualifiedDataNameContext
- func (s *MergeOnKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeOutputProcedurePhraseContext
- func (s *MergeOutputProcedurePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeOutputProcedurePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeOutputProcedurePhraseContext) GetParser() antlr.Parser
- func (s *MergeOutputProcedurePhraseContext) GetRuleContext() antlr.RuleContext
- func (s *MergeOutputProcedurePhraseContext) IS() antlr.TerminalNode
- func (*MergeOutputProcedurePhraseContext) IsMergeOutputProcedurePhraseContext()
- func (s *MergeOutputProcedurePhraseContext) MergeOutputThrough() IMergeOutputThroughContext
- func (s *MergeOutputProcedurePhraseContext) OUTPUT() antlr.TerminalNode
- func (s *MergeOutputProcedurePhraseContext) PROCEDURE() antlr.TerminalNode
- func (s *MergeOutputProcedurePhraseContext) ProcedureName() IProcedureNameContext
- func (s *MergeOutputProcedurePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeOutputThroughContext
- func (s *MergeOutputThroughContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeOutputThroughContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeOutputThroughContext) GetParser() antlr.Parser
- func (s *MergeOutputThroughContext) GetRuleContext() antlr.RuleContext
- func (*MergeOutputThroughContext) IsMergeOutputThroughContext()
- func (s *MergeOutputThroughContext) ProcedureName() IProcedureNameContext
- func (s *MergeOutputThroughContext) THROUGH() antlr.TerminalNode
- func (s *MergeOutputThroughContext) THRU() antlr.TerminalNode
- func (s *MergeOutputThroughContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeStatementContext
- func (s *MergeStatementContext) AllMergeGivingPhrase() []IMergeGivingPhraseContext
- func (s *MergeStatementContext) AllMergeOnKeyClause() []IMergeOnKeyClauseContext
- func (s *MergeStatementContext) AllMergeUsing() []IMergeUsingContext
- func (s *MergeStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeStatementContext) FileName() IFileNameContext
- func (s *MergeStatementContext) GetParser() antlr.Parser
- func (s *MergeStatementContext) GetRuleContext() antlr.RuleContext
- func (*MergeStatementContext) IsMergeStatementContext()
- func (s *MergeStatementContext) MERGE() antlr.TerminalNode
- func (s *MergeStatementContext) MergeCollatingSequencePhrase() IMergeCollatingSequencePhraseContext
- func (s *MergeStatementContext) MergeGivingPhrase(i int) IMergeGivingPhraseContext
- func (s *MergeStatementContext) MergeOnKeyClause(i int) IMergeOnKeyClauseContext
- func (s *MergeStatementContext) MergeOutputProcedurePhrase() IMergeOutputProcedurePhraseContext
- func (s *MergeStatementContext) MergeUsing(i int) IMergeUsingContext
- func (s *MergeStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MergeUsingContext
- func (s *MergeUsingContext) AllFileName() []IFileNameContext
- func (s *MergeUsingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MergeUsingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MergeUsingContext) FileName(i int) IFileNameContext
- func (s *MergeUsingContext) GetParser() antlr.Parser
- func (s *MergeUsingContext) GetRuleContext() antlr.RuleContext
- func (*MergeUsingContext) IsMergeUsingContext()
- func (s *MergeUsingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *MergeUsingContext) USING() antlr.TerminalNode
- type MessageCountClauseContext
- func (s *MessageCountClauseContext) COUNT() antlr.TerminalNode
- func (s *MessageCountClauseContext) DataDescName() IDataDescNameContext
- func (s *MessageCountClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MessageCountClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MessageCountClauseContext) GetParser() antlr.Parser
- func (s *MessageCountClauseContext) GetRuleContext() antlr.RuleContext
- func (s *MessageCountClauseContext) IS() antlr.TerminalNode
- func (*MessageCountClauseContext) IsMessageCountClauseContext()
- func (s *MessageCountClauseContext) MESSAGE() antlr.TerminalNode
- func (s *MessageCountClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MessageDateClauseContext
- func (s *MessageDateClauseContext) DATE() antlr.TerminalNode
- func (s *MessageDateClauseContext) DataDescName() IDataDescNameContext
- func (s *MessageDateClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MessageDateClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MessageDateClauseContext) GetParser() antlr.Parser
- func (s *MessageDateClauseContext) GetRuleContext() antlr.RuleContext
- func (s *MessageDateClauseContext) IS() antlr.TerminalNode
- func (*MessageDateClauseContext) IsMessageDateClauseContext()
- func (s *MessageDateClauseContext) MESSAGE() antlr.TerminalNode
- func (s *MessageDateClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MessageTimeClauseContext
- func (s *MessageTimeClauseContext) DataDescName() IDataDescNameContext
- func (s *MessageTimeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MessageTimeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MessageTimeClauseContext) GetParser() antlr.Parser
- func (s *MessageTimeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *MessageTimeClauseContext) IS() antlr.TerminalNode
- func (*MessageTimeClauseContext) IsMessageTimeClauseContext()
- func (s *MessageTimeClauseContext) MESSAGE() antlr.TerminalNode
- func (s *MessageTimeClauseContext) TIME() antlr.TerminalNode
- func (s *MessageTimeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MnemonicNameContext
- func (s *MnemonicNameContext) CobolWord() ICobolWordContext
- func (s *MnemonicNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MnemonicNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MnemonicNameContext) GetParser() antlr.Parser
- func (s *MnemonicNameContext) GetRuleContext() antlr.RuleContext
- func (*MnemonicNameContext) IsMnemonicNameContext()
- func (s *MnemonicNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ModeStatementContext
- func (s *ModeStatementContext) CobolWord() ICobolWordContext
- func (s *ModeStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ModeStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ModeStatementContext) GetParser() antlr.Parser
- func (s *ModeStatementContext) GetRuleContext() antlr.RuleContext
- func (*ModeStatementContext) IsModeStatementContext()
- func (s *ModeStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MoveCorrespondingToSendingAreaContext
- func (s *MoveCorrespondingToSendingAreaContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MoveCorrespondingToSendingAreaContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MoveCorrespondingToSendingAreaContext) GetParser() antlr.Parser
- func (s *MoveCorrespondingToSendingAreaContext) GetRuleContext() antlr.RuleContext
- func (s *MoveCorrespondingToSendingAreaContext) Identifier() IIdentifierContext
- func (*MoveCorrespondingToSendingAreaContext) IsMoveCorrespondingToSendingAreaContext()
- func (s *MoveCorrespondingToSendingAreaContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MoveCorrespondingToStatementContext
- func (s *MoveCorrespondingToStatementContext) AllIdentifier() []IIdentifierContext
- func (s *MoveCorrespondingToStatementContext) CORR() antlr.TerminalNode
- func (s *MoveCorrespondingToStatementContext) CORRESPONDING() antlr.TerminalNode
- func (s *MoveCorrespondingToStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MoveCorrespondingToStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MoveCorrespondingToStatementContext) GetParser() antlr.Parser
- func (s *MoveCorrespondingToStatementContext) GetRuleContext() antlr.RuleContext
- func (s *MoveCorrespondingToStatementContext) Identifier(i int) IIdentifierContext
- func (*MoveCorrespondingToStatementContext) IsMoveCorrespondingToStatementContext()
- func (s *MoveCorrespondingToStatementContext) MoveCorrespondingToSendingArea() IMoveCorrespondingToSendingAreaContext
- func (s *MoveCorrespondingToStatementContext) TO() antlr.TerminalNode
- func (s *MoveCorrespondingToStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MoveStatementContext
- func (s *MoveStatementContext) ALL() antlr.TerminalNode
- func (s *MoveStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MoveStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MoveStatementContext) GetParser() antlr.Parser
- func (s *MoveStatementContext) GetRuleContext() antlr.RuleContext
- func (*MoveStatementContext) IsMoveStatementContext()
- func (s *MoveStatementContext) MOVE() antlr.TerminalNode
- func (s *MoveStatementContext) MoveCorrespondingToStatement() IMoveCorrespondingToStatementContext
- func (s *MoveStatementContext) MoveToStatement() IMoveToStatementContext
- func (s *MoveStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MoveToSendingAreaContext
- func (s *MoveToSendingAreaContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MoveToSendingAreaContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MoveToSendingAreaContext) GetParser() antlr.Parser
- func (s *MoveToSendingAreaContext) GetRuleContext() antlr.RuleContext
- func (s *MoveToSendingAreaContext) Identifier() IIdentifierContext
- func (*MoveToSendingAreaContext) IsMoveToSendingAreaContext()
- func (s *MoveToSendingAreaContext) Literal() ILiteralContext
- func (s *MoveToSendingAreaContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MoveToStatementContext
- func (s *MoveToStatementContext) AllIdentifier() []IIdentifierContext
- func (s *MoveToStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MoveToStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MoveToStatementContext) GetParser() antlr.Parser
- func (s *MoveToStatementContext) GetRuleContext() antlr.RuleContext
- func (s *MoveToStatementContext) Identifier(i int) IIdentifierContext
- func (*MoveToStatementContext) IsMoveToStatementContext()
- func (s *MoveToStatementContext) MoveToSendingArea() IMoveToSendingAreaContext
- func (s *MoveToStatementContext) TO() antlr.TerminalNode
- func (s *MoveToStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultDivContext
- func (s *MultDivContext) ASTERISKCHAR() antlr.TerminalNode
- func (s *MultDivContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultDivContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultDivContext) GetParser() antlr.Parser
- func (s *MultDivContext) GetRuleContext() antlr.RuleContext
- func (*MultDivContext) IsMultDivContext()
- func (s *MultDivContext) Powers() IPowersContext
- func (s *MultDivContext) SLASHCHAR() antlr.TerminalNode
- func (s *MultDivContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultDivsContext
- func (s *MultDivsContext) AllMultDiv() []IMultDivContext
- func (s *MultDivsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultDivsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultDivsContext) GetParser() antlr.Parser
- func (s *MultDivsContext) GetRuleContext() antlr.RuleContext
- func (*MultDivsContext) IsMultDivsContext()
- func (s *MultDivsContext) MultDiv(i int) IMultDivContext
- func (s *MultDivsContext) Powers() IPowersContext
- func (s *MultDivsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultipleFileClauseContext
- func (s *MultipleFileClauseContext) AllMultipleFilePosition() []IMultipleFilePositionContext
- func (s *MultipleFileClauseContext) CONTAINS() antlr.TerminalNode
- func (s *MultipleFileClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultipleFileClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultipleFileClauseContext) FILE() antlr.TerminalNode
- func (s *MultipleFileClauseContext) GetParser() antlr.Parser
- func (s *MultipleFileClauseContext) GetRuleContext() antlr.RuleContext
- func (*MultipleFileClauseContext) IsMultipleFileClauseContext()
- func (s *MultipleFileClauseContext) MULTIPLE() antlr.TerminalNode
- func (s *MultipleFileClauseContext) MultipleFilePosition(i int) IMultipleFilePositionContext
- func (s *MultipleFileClauseContext) TAPE() antlr.TerminalNode
- func (s *MultipleFileClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultipleFilePositionContext
- func (s *MultipleFilePositionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultipleFilePositionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultipleFilePositionContext) FileName() IFileNameContext
- func (s *MultipleFilePositionContext) GetParser() antlr.Parser
- func (s *MultipleFilePositionContext) GetRuleContext() antlr.RuleContext
- func (s *MultipleFilePositionContext) IntegerLiteral() IIntegerLiteralContext
- func (*MultipleFilePositionContext) IsMultipleFilePositionContext()
- func (s *MultipleFilePositionContext) POSITION() antlr.TerminalNode
- func (s *MultipleFilePositionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultiplyGivingContext
- func (s *MultiplyGivingContext) AllMultiplyGivingResult() []IMultiplyGivingResultContext
- func (s *MultiplyGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultiplyGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultiplyGivingContext) GIVING() antlr.TerminalNode
- func (s *MultiplyGivingContext) GetParser() antlr.Parser
- func (s *MultiplyGivingContext) GetRuleContext() antlr.RuleContext
- func (*MultiplyGivingContext) IsMultiplyGivingContext()
- func (s *MultiplyGivingContext) MultiplyGivingOperand() IMultiplyGivingOperandContext
- func (s *MultiplyGivingContext) MultiplyGivingResult(i int) IMultiplyGivingResultContext
- func (s *MultiplyGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultiplyGivingOperandContext
- func (s *MultiplyGivingOperandContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultiplyGivingOperandContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultiplyGivingOperandContext) GetParser() antlr.Parser
- func (s *MultiplyGivingOperandContext) GetRuleContext() antlr.RuleContext
- func (s *MultiplyGivingOperandContext) Identifier() IIdentifierContext
- func (*MultiplyGivingOperandContext) IsMultiplyGivingOperandContext()
- func (s *MultiplyGivingOperandContext) Literal() ILiteralContext
- func (s *MultiplyGivingOperandContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultiplyGivingResultContext
- func (s *MultiplyGivingResultContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultiplyGivingResultContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultiplyGivingResultContext) GetParser() antlr.Parser
- func (s *MultiplyGivingResultContext) GetRuleContext() antlr.RuleContext
- func (s *MultiplyGivingResultContext) Identifier() IIdentifierContext
- func (*MultiplyGivingResultContext) IsMultiplyGivingResultContext()
- func (s *MultiplyGivingResultContext) ROUNDED() antlr.TerminalNode
- func (s *MultiplyGivingResultContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultiplyRegularContext
- func (s *MultiplyRegularContext) AllMultiplyRegularOperand() []IMultiplyRegularOperandContext
- func (s *MultiplyRegularContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultiplyRegularContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultiplyRegularContext) GetParser() antlr.Parser
- func (s *MultiplyRegularContext) GetRuleContext() antlr.RuleContext
- func (*MultiplyRegularContext) IsMultiplyRegularContext()
- func (s *MultiplyRegularContext) MultiplyRegularOperand(i int) IMultiplyRegularOperandContext
- func (s *MultiplyRegularContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultiplyRegularOperandContext
- func (s *MultiplyRegularOperandContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultiplyRegularOperandContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultiplyRegularOperandContext) GetParser() antlr.Parser
- func (s *MultiplyRegularOperandContext) GetRuleContext() antlr.RuleContext
- func (s *MultiplyRegularOperandContext) Identifier() IIdentifierContext
- func (*MultiplyRegularOperandContext) IsMultiplyRegularOperandContext()
- func (s *MultiplyRegularOperandContext) ROUNDED() antlr.TerminalNode
- func (s *MultiplyRegularOperandContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type MultiplyStatementContext
- func (s *MultiplyStatementContext) BY() antlr.TerminalNode
- func (s *MultiplyStatementContext) END_MULTIPLY() antlr.TerminalNode
- func (s *MultiplyStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *MultiplyStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *MultiplyStatementContext) GetParser() antlr.Parser
- func (s *MultiplyStatementContext) GetRuleContext() antlr.RuleContext
- func (s *MultiplyStatementContext) Identifier() IIdentifierContext
- func (*MultiplyStatementContext) IsMultiplyStatementContext()
- func (s *MultiplyStatementContext) Literal() ILiteralContext
- func (s *MultiplyStatementContext) MULTIPLY() antlr.TerminalNode
- func (s *MultiplyStatementContext) MultiplyGiving() IMultiplyGivingContext
- func (s *MultiplyStatementContext) MultiplyRegular() IMultiplyRegularContext
- func (s *MultiplyStatementContext) NotOnSizeErrorPhrase() INotOnSizeErrorPhraseContext
- func (s *MultiplyStatementContext) OnSizeErrorPhrase() IOnSizeErrorPhraseContext
- func (s *MultiplyStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type NotAtEndPhraseContext
- func (s *NotAtEndPhraseContext) AT() antlr.TerminalNode
- func (s *NotAtEndPhraseContext) AllStatement() []IStatementContext
- func (s *NotAtEndPhraseContext) END() antlr.TerminalNode
- func (s *NotAtEndPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *NotAtEndPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *NotAtEndPhraseContext) GetParser() antlr.Parser
- func (s *NotAtEndPhraseContext) GetRuleContext() antlr.RuleContext
- func (*NotAtEndPhraseContext) IsNotAtEndPhraseContext()
- func (s *NotAtEndPhraseContext) NOT() antlr.TerminalNode
- func (s *NotAtEndPhraseContext) Statement(i int) IStatementContext
- func (s *NotAtEndPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type NotInvalidKeyPhraseContext
- func (s *NotInvalidKeyPhraseContext) AllStatement() []IStatementContext
- func (s *NotInvalidKeyPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *NotInvalidKeyPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *NotInvalidKeyPhraseContext) GetParser() antlr.Parser
- func (s *NotInvalidKeyPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *NotInvalidKeyPhraseContext) INVALID() antlr.TerminalNode
- func (*NotInvalidKeyPhraseContext) IsNotInvalidKeyPhraseContext()
- func (s *NotInvalidKeyPhraseContext) KEY() antlr.TerminalNode
- func (s *NotInvalidKeyPhraseContext) NOT() antlr.TerminalNode
- func (s *NotInvalidKeyPhraseContext) Statement(i int) IStatementContext
- func (s *NotInvalidKeyPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type NotOnExceptionClauseContext
- func (s *NotOnExceptionClauseContext) AllStatement() []IStatementContext
- func (s *NotOnExceptionClauseContext) EXCEPTION() antlr.TerminalNode
- func (s *NotOnExceptionClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *NotOnExceptionClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *NotOnExceptionClauseContext) GetParser() antlr.Parser
- func (s *NotOnExceptionClauseContext) GetRuleContext() antlr.RuleContext
- func (*NotOnExceptionClauseContext) IsNotOnExceptionClauseContext()
- func (s *NotOnExceptionClauseContext) NOT() antlr.TerminalNode
- func (s *NotOnExceptionClauseContext) ON() antlr.TerminalNode
- func (s *NotOnExceptionClauseContext) Statement(i int) IStatementContext
- func (s *NotOnExceptionClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type NotOnOverflowPhraseContext
- func (s *NotOnOverflowPhraseContext) AllStatement() []IStatementContext
- func (s *NotOnOverflowPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *NotOnOverflowPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *NotOnOverflowPhraseContext) GetParser() antlr.Parser
- func (s *NotOnOverflowPhraseContext) GetRuleContext() antlr.RuleContext
- func (*NotOnOverflowPhraseContext) IsNotOnOverflowPhraseContext()
- func (s *NotOnOverflowPhraseContext) NOT() antlr.TerminalNode
- func (s *NotOnOverflowPhraseContext) ON() antlr.TerminalNode
- func (s *NotOnOverflowPhraseContext) OVERFLOW() antlr.TerminalNode
- func (s *NotOnOverflowPhraseContext) Statement(i int) IStatementContext
- func (s *NotOnOverflowPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type NotOnSizeErrorPhraseContext
- func (s *NotOnSizeErrorPhraseContext) AllStatement() []IStatementContext
- func (s *NotOnSizeErrorPhraseContext) ERROR() antlr.TerminalNode
- func (s *NotOnSizeErrorPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *NotOnSizeErrorPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *NotOnSizeErrorPhraseContext) GetParser() antlr.Parser
- func (s *NotOnSizeErrorPhraseContext) GetRuleContext() antlr.RuleContext
- func (*NotOnSizeErrorPhraseContext) IsNotOnSizeErrorPhraseContext()
- func (s *NotOnSizeErrorPhraseContext) NOT() antlr.TerminalNode
- func (s *NotOnSizeErrorPhraseContext) ON() antlr.TerminalNode
- func (s *NotOnSizeErrorPhraseContext) SIZE() antlr.TerminalNode
- func (s *NotOnSizeErrorPhraseContext) Statement(i int) IStatementContext
- func (s *NotOnSizeErrorPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type NumericLiteralContext
- func (s *NumericLiteralContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *NumericLiteralContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *NumericLiteralContext) GetParser() antlr.Parser
- func (s *NumericLiteralContext) GetRuleContext() antlr.RuleContext
- func (s *NumericLiteralContext) IntegerLiteral() IIntegerLiteralContext
- func (*NumericLiteralContext) IsNumericLiteralContext()
- func (s *NumericLiteralContext) NUMERICLITERAL() antlr.TerminalNode
- func (s *NumericLiteralContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *NumericLiteralContext) ZERO() antlr.TerminalNode
- type ObjectComputerClauseContext
- func (s *ObjectComputerClauseContext) CharacterSetClause() ICharacterSetClauseContext
- func (s *ObjectComputerClauseContext) CollatingSequenceClause() ICollatingSequenceClauseContext
- func (s *ObjectComputerClauseContext) DiskSizeClause() IDiskSizeClauseContext
- func (s *ObjectComputerClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ObjectComputerClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ObjectComputerClauseContext) GetParser() antlr.Parser
- func (s *ObjectComputerClauseContext) GetRuleContext() antlr.RuleContext
- func (*ObjectComputerClauseContext) IsObjectComputerClauseContext()
- func (s *ObjectComputerClauseContext) MemorySizeClause() IMemorySizeClauseContext
- func (s *ObjectComputerClauseContext) SegmentLimitClause() ISegmentLimitClauseContext
- func (s *ObjectComputerClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ObjectComputerParagraphContext
- func (s *ObjectComputerParagraphContext) AllDOT_FS() []antlr.TerminalNode
- func (s *ObjectComputerParagraphContext) AllObjectComputerClause() []IObjectComputerClauseContext
- func (s *ObjectComputerParagraphContext) ComputerName() IComputerNameContext
- func (s *ObjectComputerParagraphContext) DOT_FS(i int) antlr.TerminalNode
- func (s *ObjectComputerParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ObjectComputerParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ObjectComputerParagraphContext) GetParser() antlr.Parser
- func (s *ObjectComputerParagraphContext) GetRuleContext() antlr.RuleContext
- func (*ObjectComputerParagraphContext) IsObjectComputerParagraphContext()
- func (s *ObjectComputerParagraphContext) OBJECT_COMPUTER() antlr.TerminalNode
- func (s *ObjectComputerParagraphContext) ObjectComputerClause(i int) IObjectComputerClauseContext
- func (s *ObjectComputerParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OdtClauseContext
- func (s *OdtClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OdtClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OdtClauseContext) GetParser() antlr.Parser
- func (s *OdtClauseContext) GetRuleContext() antlr.RuleContext
- func (s *OdtClauseContext) IS() antlr.TerminalNode
- func (*OdtClauseContext) IsOdtClauseContext()
- func (s *OdtClauseContext) MnemonicName() IMnemonicNameContext
- func (s *OdtClauseContext) ODT() antlr.TerminalNode
- func (s *OdtClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OnExceptionClauseContext
- func (s *OnExceptionClauseContext) AllStatement() []IStatementContext
- func (s *OnExceptionClauseContext) EXCEPTION() antlr.TerminalNode
- func (s *OnExceptionClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OnExceptionClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OnExceptionClauseContext) GetParser() antlr.Parser
- func (s *OnExceptionClauseContext) GetRuleContext() antlr.RuleContext
- func (*OnExceptionClauseContext) IsOnExceptionClauseContext()
- func (s *OnExceptionClauseContext) ON() antlr.TerminalNode
- func (s *OnExceptionClauseContext) Statement(i int) IStatementContext
- func (s *OnExceptionClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OnOverflowPhraseContext
- func (s *OnOverflowPhraseContext) AllStatement() []IStatementContext
- func (s *OnOverflowPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OnOverflowPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OnOverflowPhraseContext) GetParser() antlr.Parser
- func (s *OnOverflowPhraseContext) GetRuleContext() antlr.RuleContext
- func (*OnOverflowPhraseContext) IsOnOverflowPhraseContext()
- func (s *OnOverflowPhraseContext) ON() antlr.TerminalNode
- func (s *OnOverflowPhraseContext) OVERFLOW() antlr.TerminalNode
- func (s *OnOverflowPhraseContext) Statement(i int) IStatementContext
- func (s *OnOverflowPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OnSizeErrorPhraseContext
- func (s *OnSizeErrorPhraseContext) AllStatement() []IStatementContext
- func (s *OnSizeErrorPhraseContext) ERROR() antlr.TerminalNode
- func (s *OnSizeErrorPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OnSizeErrorPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OnSizeErrorPhraseContext) GetParser() antlr.Parser
- func (s *OnSizeErrorPhraseContext) GetRuleContext() antlr.RuleContext
- func (*OnSizeErrorPhraseContext) IsOnSizeErrorPhraseContext()
- func (s *OnSizeErrorPhraseContext) ON() antlr.TerminalNode
- func (s *OnSizeErrorPhraseContext) SIZE() antlr.TerminalNode
- func (s *OnSizeErrorPhraseContext) Statement(i int) IStatementContext
- func (s *OnSizeErrorPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OpenExtendStatementContext
- func (s *OpenExtendStatementContext) AllFileName() []IFileNameContext
- func (s *OpenExtendStatementContext) EXTEND() antlr.TerminalNode
- func (s *OpenExtendStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenExtendStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenExtendStatementContext) FileName(i int) IFileNameContext
- func (s *OpenExtendStatementContext) GetParser() antlr.Parser
- func (s *OpenExtendStatementContext) GetRuleContext() antlr.RuleContext
- func (*OpenExtendStatementContext) IsOpenExtendStatementContext()
- func (s *OpenExtendStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OpenIOStatementContext
- func (s *OpenIOStatementContext) AllFileName() []IFileNameContext
- func (s *OpenIOStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenIOStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenIOStatementContext) FileName(i int) IFileNameContext
- func (s *OpenIOStatementContext) GetParser() antlr.Parser
- func (s *OpenIOStatementContext) GetRuleContext() antlr.RuleContext
- func (s *OpenIOStatementContext) I_O() antlr.TerminalNode
- func (*OpenIOStatementContext) IsOpenIOStatementContext()
- func (s *OpenIOStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OpenInputContext
- func (s *OpenInputContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenInputContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenInputContext) FileName() IFileNameContext
- func (s *OpenInputContext) GetParser() antlr.Parser
- func (s *OpenInputContext) GetRuleContext() antlr.RuleContext
- func (*OpenInputContext) IsOpenInputContext()
- func (s *OpenInputContext) NO() antlr.TerminalNode
- func (s *OpenInputContext) REVERSED() antlr.TerminalNode
- func (s *OpenInputContext) REWIND() antlr.TerminalNode
- func (s *OpenInputContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *OpenInputContext) WITH() antlr.TerminalNode
- type OpenInputStatementContext
- func (s *OpenInputStatementContext) AllOpenInput() []IOpenInputContext
- func (s *OpenInputStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenInputStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenInputStatementContext) GetParser() antlr.Parser
- func (s *OpenInputStatementContext) GetRuleContext() antlr.RuleContext
- func (s *OpenInputStatementContext) INPUT() antlr.TerminalNode
- func (*OpenInputStatementContext) IsOpenInputStatementContext()
- func (s *OpenInputStatementContext) OpenInput(i int) IOpenInputContext
- func (s *OpenInputStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OpenOutputContext
- func (s *OpenOutputContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenOutputContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenOutputContext) FileName() IFileNameContext
- func (s *OpenOutputContext) GetParser() antlr.Parser
- func (s *OpenOutputContext) GetRuleContext() antlr.RuleContext
- func (*OpenOutputContext) IsOpenOutputContext()
- func (s *OpenOutputContext) NO() antlr.TerminalNode
- func (s *OpenOutputContext) REWIND() antlr.TerminalNode
- func (s *OpenOutputContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *OpenOutputContext) WITH() antlr.TerminalNode
- type OpenOutputStatementContext
- func (s *OpenOutputStatementContext) AllOpenOutput() []IOpenOutputContext
- func (s *OpenOutputStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenOutputStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenOutputStatementContext) GetParser() antlr.Parser
- func (s *OpenOutputStatementContext) GetRuleContext() antlr.RuleContext
- func (*OpenOutputStatementContext) IsOpenOutputStatementContext()
- func (s *OpenOutputStatementContext) OUTPUT() antlr.TerminalNode
- func (s *OpenOutputStatementContext) OpenOutput(i int) IOpenOutputContext
- func (s *OpenOutputStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OpenStatementContext
- func (s *OpenStatementContext) AllOpenExtendStatement() []IOpenExtendStatementContext
- func (s *OpenStatementContext) AllOpenIOStatement() []IOpenIOStatementContext
- func (s *OpenStatementContext) AllOpenInputStatement() []IOpenInputStatementContext
- func (s *OpenStatementContext) AllOpenOutputStatement() []IOpenOutputStatementContext
- func (s *OpenStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OpenStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OpenStatementContext) GetParser() antlr.Parser
- func (s *OpenStatementContext) GetRuleContext() antlr.RuleContext
- func (*OpenStatementContext) IsOpenStatementContext()
- func (s *OpenStatementContext) OPEN() antlr.TerminalNode
- func (s *OpenStatementContext) OpenExtendStatement(i int) IOpenExtendStatementContext
- func (s *OpenStatementContext) OpenIOStatement(i int) IOpenIOStatementContext
- func (s *OpenStatementContext) OpenInputStatement(i int) IOpenInputStatementContext
- func (s *OpenStatementContext) OpenOutputStatement(i int) IOpenOutputStatementContext
- func (s *OpenStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type OrganizationClauseContext
- func (s *OrganizationClauseContext) BINARY() antlr.TerminalNode
- func (s *OrganizationClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *OrganizationClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *OrganizationClauseContext) GetParser() antlr.Parser
- func (s *OrganizationClauseContext) GetRuleContext() antlr.RuleContext
- func (s *OrganizationClauseContext) INDEXED() antlr.TerminalNode
- func (s *OrganizationClauseContext) IS() antlr.TerminalNode
- func (*OrganizationClauseContext) IsOrganizationClauseContext()
- func (s *OrganizationClauseContext) LINE() antlr.TerminalNode
- func (s *OrganizationClauseContext) ORGANIZATION() antlr.TerminalNode
- func (s *OrganizationClauseContext) RECORD() antlr.TerminalNode
- func (s *OrganizationClauseContext) RELATIVE() antlr.TerminalNode
- func (s *OrganizationClauseContext) SEQUENTIAL() antlr.TerminalNode
- func (s *OrganizationClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PaddingCharacterClauseContext
- func (s *PaddingCharacterClauseContext) CHARACTER() antlr.TerminalNode
- func (s *PaddingCharacterClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PaddingCharacterClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PaddingCharacterClauseContext) GetParser() antlr.Parser
- func (s *PaddingCharacterClauseContext) GetRuleContext() antlr.RuleContext
- func (s *PaddingCharacterClauseContext) IS() antlr.TerminalNode
- func (*PaddingCharacterClauseContext) IsPaddingCharacterClauseContext()
- func (s *PaddingCharacterClauseContext) Literal() ILiteralContext
- func (s *PaddingCharacterClauseContext) PADDING() antlr.TerminalNode
- func (s *PaddingCharacterClauseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *PaddingCharacterClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ParagraphContext
- func (s *ParagraphContext) AllSentence() []ISentenceContext
- func (s *ParagraphContext) AlteredGoTo() IAlteredGoToContext
- func (s *ParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *ParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ParagraphContext) GetParser() antlr.Parser
- func (s *ParagraphContext) GetRuleContext() antlr.RuleContext
- func (*ParagraphContext) IsParagraphContext()
- func (s *ParagraphContext) ParagraphName() IParagraphNameContext
- func (s *ParagraphContext) Sentence(i int) ISentenceContext
- func (s *ParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ParagraphNameContext
- func (s *ParagraphNameContext) CobolWord() ICobolWordContext
- func (s *ParagraphNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ParagraphNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ParagraphNameContext) GetParser() antlr.Parser
- func (s *ParagraphNameContext) GetRuleContext() antlr.RuleContext
- func (s *ParagraphNameContext) IntegerLiteral() IIntegerLiteralContext
- func (*ParagraphNameContext) IsParagraphNameContext()
- func (s *ParagraphNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ParagraphsContext
- func (s *ParagraphsContext) AllParagraph() []IParagraphContext
- func (s *ParagraphsContext) AllSentence() []ISentenceContext
- func (s *ParagraphsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ParagraphsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ParagraphsContext) GetParser() antlr.Parser
- func (s *ParagraphsContext) GetRuleContext() antlr.RuleContext
- func (*ParagraphsContext) IsParagraphsContext()
- func (s *ParagraphsContext) Paragraph(i int) IParagraphContext
- func (s *ParagraphsContext) Sentence(i int) ISentenceContext
- func (s *ParagraphsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PasswordClauseContext
- func (s *PasswordClauseContext) DataName() IDataNameContext
- func (s *PasswordClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PasswordClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PasswordClauseContext) GetParser() antlr.Parser
- func (s *PasswordClauseContext) GetRuleContext() antlr.RuleContext
- func (s *PasswordClauseContext) IS() antlr.TerminalNode
- func (*PasswordClauseContext) IsPasswordClauseContext()
- func (s *PasswordClauseContext) PASSWORD() antlr.TerminalNode
- func (s *PasswordClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformAfterContext
- func (s *PerformAfterContext) AFTER() antlr.TerminalNode
- func (s *PerformAfterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformAfterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformAfterContext) GetParser() antlr.Parser
- func (s *PerformAfterContext) GetRuleContext() antlr.RuleContext
- func (*PerformAfterContext) IsPerformAfterContext()
- func (s *PerformAfterContext) PerformVaryingPhrase() IPerformVaryingPhraseContext
- func (s *PerformAfterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformByContext
- func (s *PerformByContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *PerformByContext) BY() antlr.TerminalNode
- func (s *PerformByContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformByContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformByContext) GetParser() antlr.Parser
- func (s *PerformByContext) GetRuleContext() antlr.RuleContext
- func (s *PerformByContext) Identifier() IIdentifierContext
- func (*PerformByContext) IsPerformByContext()
- func (s *PerformByContext) Literal() ILiteralContext
- func (s *PerformByContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformFromContext
- func (s *PerformFromContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *PerformFromContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformFromContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformFromContext) FROM() antlr.TerminalNode
- func (s *PerformFromContext) GetParser() antlr.Parser
- func (s *PerformFromContext) GetRuleContext() antlr.RuleContext
- func (s *PerformFromContext) Identifier() IIdentifierContext
- func (*PerformFromContext) IsPerformFromContext()
- func (s *PerformFromContext) Literal() ILiteralContext
- func (s *PerformFromContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformInlineStatementContext
- func (s *PerformInlineStatementContext) AllStatement() []IStatementContext
- func (s *PerformInlineStatementContext) END_PERFORM() antlr.TerminalNode
- func (s *PerformInlineStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformInlineStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformInlineStatementContext) GetParser() antlr.Parser
- func (s *PerformInlineStatementContext) GetRuleContext() antlr.RuleContext
- func (*PerformInlineStatementContext) IsPerformInlineStatementContext()
- func (s *PerformInlineStatementContext) PerformType() IPerformTypeContext
- func (s *PerformInlineStatementContext) Statement(i int) IStatementContext
- func (s *PerformInlineStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformProcedureStatementContext
- func (s *PerformProcedureStatementContext) AllProcedureName() []IProcedureNameContext
- func (s *PerformProcedureStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformProcedureStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformProcedureStatementContext) GetParser() antlr.Parser
- func (s *PerformProcedureStatementContext) GetRuleContext() antlr.RuleContext
- func (*PerformProcedureStatementContext) IsPerformProcedureStatementContext()
- func (s *PerformProcedureStatementContext) PerformType() IPerformTypeContext
- func (s *PerformProcedureStatementContext) ProcedureName(i int) IProcedureNameContext
- func (s *PerformProcedureStatementContext) THROUGH() antlr.TerminalNode
- func (s *PerformProcedureStatementContext) THRU() antlr.TerminalNode
- func (s *PerformProcedureStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformStatementContext
- func (s *PerformStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformStatementContext) GetParser() antlr.Parser
- func (s *PerformStatementContext) GetRuleContext() antlr.RuleContext
- func (*PerformStatementContext) IsPerformStatementContext()
- func (s *PerformStatementContext) PERFORM() antlr.TerminalNode
- func (s *PerformStatementContext) PerformInlineStatement() IPerformInlineStatementContext
- func (s *PerformStatementContext) PerformProcedureStatement() IPerformProcedureStatementContext
- func (s *PerformStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformTestClauseContext
- func (s *PerformTestClauseContext) AFTER() antlr.TerminalNode
- func (s *PerformTestClauseContext) BEFORE() antlr.TerminalNode
- func (s *PerformTestClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformTestClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformTestClauseContext) GetParser() antlr.Parser
- func (s *PerformTestClauseContext) GetRuleContext() antlr.RuleContext
- func (*PerformTestClauseContext) IsPerformTestClauseContext()
- func (s *PerformTestClauseContext) TEST() antlr.TerminalNode
- func (s *PerformTestClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *PerformTestClauseContext) WITH() antlr.TerminalNode
- type PerformTimesContext
- func (s *PerformTimesContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformTimesContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformTimesContext) GetParser() antlr.Parser
- func (s *PerformTimesContext) GetRuleContext() antlr.RuleContext
- func (s *PerformTimesContext) Identifier() IIdentifierContext
- func (s *PerformTimesContext) IntegerLiteral() IIntegerLiteralContext
- func (*PerformTimesContext) IsPerformTimesContext()
- func (s *PerformTimesContext) TIMES() antlr.TerminalNode
- func (s *PerformTimesContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformTypeContext
- func (s *PerformTypeContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformTypeContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformTypeContext) GetParser() antlr.Parser
- func (s *PerformTypeContext) GetRuleContext() antlr.RuleContext
- func (*PerformTypeContext) IsPerformTypeContext()
- func (s *PerformTypeContext) PerformTimes() IPerformTimesContext
- func (s *PerformTypeContext) PerformUntil() IPerformUntilContext
- func (s *PerformTypeContext) PerformVarying() IPerformVaryingContext
- func (s *PerformTypeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformUntilContext
- func (s *PerformUntilContext) Condition() IConditionContext
- func (s *PerformUntilContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformUntilContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformUntilContext) GetParser() antlr.Parser
- func (s *PerformUntilContext) GetRuleContext() antlr.RuleContext
- func (*PerformUntilContext) IsPerformUntilContext()
- func (s *PerformUntilContext) PerformTestClause() IPerformTestClauseContext
- func (s *PerformUntilContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *PerformUntilContext) UNTIL() antlr.TerminalNode
- type PerformVaryingClauseContext
- func (s *PerformVaryingClauseContext) AllPerformAfter() []IPerformAfterContext
- func (s *PerformVaryingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformVaryingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformVaryingClauseContext) GetParser() antlr.Parser
- func (s *PerformVaryingClauseContext) GetRuleContext() antlr.RuleContext
- func (*PerformVaryingClauseContext) IsPerformVaryingClauseContext()
- func (s *PerformVaryingClauseContext) PerformAfter(i int) IPerformAfterContext
- func (s *PerformVaryingClauseContext) PerformVaryingPhrase() IPerformVaryingPhraseContext
- func (s *PerformVaryingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *PerformVaryingClauseContext) VARYING() antlr.TerminalNode
- type PerformVaryingContext
- func (s *PerformVaryingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformVaryingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformVaryingContext) GetParser() antlr.Parser
- func (s *PerformVaryingContext) GetRuleContext() antlr.RuleContext
- func (*PerformVaryingContext) IsPerformVaryingContext()
- func (s *PerformVaryingContext) PerformTestClause() IPerformTestClauseContext
- func (s *PerformVaryingContext) PerformVaryingClause() IPerformVaryingClauseContext
- func (s *PerformVaryingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PerformVaryingPhraseContext
- func (s *PerformVaryingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PerformVaryingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PerformVaryingPhraseContext) GetParser() antlr.Parser
- func (s *PerformVaryingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *PerformVaryingPhraseContext) Identifier() IIdentifierContext
- func (*PerformVaryingPhraseContext) IsPerformVaryingPhraseContext()
- func (s *PerformVaryingPhraseContext) Literal() ILiteralContext
- func (s *PerformVaryingPhraseContext) PerformBy() IPerformByContext
- func (s *PerformVaryingPhraseContext) PerformFrom() IPerformFromContext
- func (s *PerformVaryingPhraseContext) PerformUntil() IPerformUntilContext
- func (s *PerformVaryingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PictureCardinalityContext
- func (s *PictureCardinalityContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PictureCardinalityContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PictureCardinalityContext) GetParser() antlr.Parser
- func (s *PictureCardinalityContext) GetRuleContext() antlr.RuleContext
- func (s *PictureCardinalityContext) IntegerLiteral() IIntegerLiteralContext
- func (*PictureCardinalityContext) IsPictureCardinalityContext()
- func (s *PictureCardinalityContext) LPARENCHAR() antlr.TerminalNode
- func (s *PictureCardinalityContext) RPARENCHAR() antlr.TerminalNode
- func (s *PictureCardinalityContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PictureCharsContext
- func (s *PictureCharsContext) ASTERISKCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) COLONCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) COMMACHAR() antlr.TerminalNode
- func (s *PictureCharsContext) DOLLARCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) DOT() antlr.TerminalNode
- func (s *PictureCharsContext) DOUBLEASTERISKCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PictureCharsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PictureCharsContext) GetParser() antlr.Parser
- func (s *PictureCharsContext) GetRuleContext() antlr.RuleContext
- func (s *PictureCharsContext) IDENTIFIER() antlr.TerminalNode
- func (s *PictureCharsContext) IntegerLiteral() IIntegerLiteralContext
- func (*PictureCharsContext) IsPictureCharsContext()
- func (s *PictureCharsContext) LESSTHANCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) LPARENCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) MINUSCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) MORETHANCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) NUMERICLITERAL() antlr.TerminalNode
- func (s *PictureCharsContext) PLUSCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) RPARENCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) SLASHCHAR() antlr.TerminalNode
- func (s *PictureCharsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PictureStringContext
- func (s *PictureStringContext) AllPictureCardinality() []IPictureCardinalityContext
- func (s *PictureStringContext) AllPictureChars() []IPictureCharsContext
- func (s *PictureStringContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PictureStringContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PictureStringContext) GetParser() antlr.Parser
- func (s *PictureStringContext) GetRuleContext() antlr.RuleContext
- func (*PictureStringContext) IsPictureStringContext()
- func (s *PictureStringContext) PictureCardinality(i int) IPictureCardinalityContext
- func (s *PictureStringContext) PictureChars(i int) IPictureCharsContext
- func (s *PictureStringContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PlusMinusContext
- func (s *PlusMinusContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PlusMinusContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PlusMinusContext) GetParser() antlr.Parser
- func (s *PlusMinusContext) GetRuleContext() antlr.RuleContext
- func (*PlusMinusContext) IsPlusMinusContext()
- func (s *PlusMinusContext) MINUSCHAR() antlr.TerminalNode
- func (s *PlusMinusContext) MultDivs() IMultDivsContext
- func (s *PlusMinusContext) PLUSCHAR() antlr.TerminalNode
- func (s *PlusMinusContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PowerContext
- func (s *PowerContext) Basis() IBasisContext
- func (s *PowerContext) DOUBLEASTERISKCHAR() antlr.TerminalNode
- func (s *PowerContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PowerContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PowerContext) GetParser() antlr.Parser
- func (s *PowerContext) GetRuleContext() antlr.RuleContext
- func (*PowerContext) IsPowerContext()
- func (s *PowerContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PowersContext
- func (s *PowersContext) AllPower() []IPowerContext
- func (s *PowersContext) Basis() IBasisContext
- func (s *PowersContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PowersContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PowersContext) GetParser() antlr.Parser
- func (s *PowersContext) GetRuleContext() antlr.RuleContext
- func (*PowersContext) IsPowersContext()
- func (s *PowersContext) MINUSCHAR() antlr.TerminalNode
- func (s *PowersContext) PLUSCHAR() antlr.TerminalNode
- func (s *PowersContext) Power(i int) IPowerContext
- func (s *PowersContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDeclarativeContext
- func (s *ProcedureDeclarativeContext) AllDOT_FS() []antlr.TerminalNode
- func (s *ProcedureDeclarativeContext) DOT_FS(i int) antlr.TerminalNode
- func (s *ProcedureDeclarativeContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDeclarativeContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDeclarativeContext) GetParser() antlr.Parser
- func (s *ProcedureDeclarativeContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDeclarativeContext) IsProcedureDeclarativeContext()
- func (s *ProcedureDeclarativeContext) Paragraphs() IParagraphsContext
- func (s *ProcedureDeclarativeContext) ProcedureSectionHeader() IProcedureSectionHeaderContext
- func (s *ProcedureDeclarativeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ProcedureDeclarativeContext) UseStatement() IUseStatementContext
- type ProcedureDeclarativesContext
- func (s *ProcedureDeclarativesContext) AllDECLARATIVES() []antlr.TerminalNode
- func (s *ProcedureDeclarativesContext) AllDOT_FS() []antlr.TerminalNode
- func (s *ProcedureDeclarativesContext) AllProcedureDeclarative() []IProcedureDeclarativeContext
- func (s *ProcedureDeclarativesContext) DECLARATIVES(i int) antlr.TerminalNode
- func (s *ProcedureDeclarativesContext) DOT_FS(i int) antlr.TerminalNode
- func (s *ProcedureDeclarativesContext) END() antlr.TerminalNode
- func (s *ProcedureDeclarativesContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDeclarativesContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDeclarativesContext) GetParser() antlr.Parser
- func (s *ProcedureDeclarativesContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDeclarativesContext) IsProcedureDeclarativesContext()
- func (s *ProcedureDeclarativesContext) ProcedureDeclarative(i int) IProcedureDeclarativeContext
- func (s *ProcedureDeclarativesContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionBodyContext
- func (s *ProcedureDivisionBodyContext) AllProcedureSection() []IProcedureSectionContext
- func (s *ProcedureDivisionBodyContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionBodyContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionBodyContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionBodyContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionBodyContext) IsProcedureDivisionBodyContext()
- func (s *ProcedureDivisionBodyContext) Paragraphs() IParagraphsContext
- func (s *ProcedureDivisionBodyContext) ProcedureSection(i int) IProcedureSectionContext
- func (s *ProcedureDivisionBodyContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionByReferenceContext
- func (s *ProcedureDivisionByReferenceContext) ANY() antlr.TerminalNode
- func (s *ProcedureDivisionByReferenceContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByReferenceContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByReferenceContext) FileName() IFileNameContext
- func (s *ProcedureDivisionByReferenceContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionByReferenceContext) GetRuleContext() antlr.RuleContext
- func (s *ProcedureDivisionByReferenceContext) Identifier() IIdentifierContext
- func (*ProcedureDivisionByReferenceContext) IsProcedureDivisionByReferenceContext()
- func (s *ProcedureDivisionByReferenceContext) OPTIONAL() antlr.TerminalNode
- func (s *ProcedureDivisionByReferenceContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionByReferencePhraseContext
- func (s *ProcedureDivisionByReferencePhraseContext) AllProcedureDivisionByReference() []IProcedureDivisionByReferenceContext
- func (s *ProcedureDivisionByReferencePhraseContext) BY() antlr.TerminalNode
- func (s *ProcedureDivisionByReferencePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByReferencePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByReferencePhraseContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionByReferencePhraseContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionByReferencePhraseContext) IsProcedureDivisionByReferencePhraseContext()
- func (s *ProcedureDivisionByReferencePhraseContext) ProcedureDivisionByReference(i int) IProcedureDivisionByReferenceContext
- func (s *ProcedureDivisionByReferencePhraseContext) REFERENCE() antlr.TerminalNode
- func (s *ProcedureDivisionByReferencePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionByValueContext
- func (s *ProcedureDivisionByValueContext) ANY() antlr.TerminalNode
- func (s *ProcedureDivisionByValueContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByValueContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByValueContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionByValueContext) GetRuleContext() antlr.RuleContext
- func (s *ProcedureDivisionByValueContext) Identifier() IIdentifierContext
- func (*ProcedureDivisionByValueContext) IsProcedureDivisionByValueContext()
- func (s *ProcedureDivisionByValueContext) Literal() ILiteralContext
- func (s *ProcedureDivisionByValueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionByValuePhraseContext
- func (s *ProcedureDivisionByValuePhraseContext) AllProcedureDivisionByValue() []IProcedureDivisionByValueContext
- func (s *ProcedureDivisionByValuePhraseContext) BY() antlr.TerminalNode
- func (s *ProcedureDivisionByValuePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByValuePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionByValuePhraseContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionByValuePhraseContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionByValuePhraseContext) IsProcedureDivisionByValuePhraseContext()
- func (s *ProcedureDivisionByValuePhraseContext) ProcedureDivisionByValue(i int) IProcedureDivisionByValueContext
- func (s *ProcedureDivisionByValuePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ProcedureDivisionByValuePhraseContext) VALUE() antlr.TerminalNode
- type ProcedureDivisionContext
- func (s *ProcedureDivisionContext) DIVISION() antlr.TerminalNode
- func (s *ProcedureDivisionContext) DOT_FS() antlr.TerminalNode
- func (s *ProcedureDivisionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionContext) IsProcedureDivisionContext()
- func (s *ProcedureDivisionContext) PROCEDURE() antlr.TerminalNode
- func (s *ProcedureDivisionContext) ProcedureDeclaratives() IProcedureDeclarativesContext
- func (s *ProcedureDivisionContext) ProcedureDivisionBody() IProcedureDivisionBodyContext
- func (s *ProcedureDivisionContext) ProcedureDivisionGivingClause() IProcedureDivisionGivingClauseContext
- func (s *ProcedureDivisionContext) ProcedureDivisionUsingClause() IProcedureDivisionUsingClauseContext
- func (s *ProcedureDivisionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionGivingClauseContext
- func (s *ProcedureDivisionGivingClauseContext) DataName() IDataNameContext
- func (s *ProcedureDivisionGivingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionGivingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionGivingClauseContext) GIVING() antlr.TerminalNode
- func (s *ProcedureDivisionGivingClauseContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionGivingClauseContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionGivingClauseContext) IsProcedureDivisionGivingClauseContext()
- func (s *ProcedureDivisionGivingClauseContext) RETURNING() antlr.TerminalNode
- func (s *ProcedureDivisionGivingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureDivisionUsingClauseContext
- func (s *ProcedureDivisionUsingClauseContext) AllProcedureDivisionUsingParameter() []IProcedureDivisionUsingParameterContext
- func (s *ProcedureDivisionUsingClauseContext) CHAINING() antlr.TerminalNode
- func (s *ProcedureDivisionUsingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionUsingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionUsingClauseContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionUsingClauseContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionUsingClauseContext) IsProcedureDivisionUsingClauseContext()
- func (s *ProcedureDivisionUsingClauseContext) ProcedureDivisionUsingParameter(i int) IProcedureDivisionUsingParameterContext
- func (s *ProcedureDivisionUsingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ProcedureDivisionUsingClauseContext) USING() antlr.TerminalNode
- type ProcedureDivisionUsingParameterContext
- func (s *ProcedureDivisionUsingParameterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionUsingParameterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureDivisionUsingParameterContext) GetParser() antlr.Parser
- func (s *ProcedureDivisionUsingParameterContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureDivisionUsingParameterContext) IsProcedureDivisionUsingParameterContext()
- func (s *ProcedureDivisionUsingParameterContext) ProcedureDivisionByReferencePhrase() IProcedureDivisionByReferencePhraseContext
- func (s *ProcedureDivisionUsingParameterContext) ProcedureDivisionByValuePhrase() IProcedureDivisionByValuePhraseContext
- func (s *ProcedureDivisionUsingParameterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureNameContext
- func (s *ProcedureNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureNameContext) GetParser() antlr.Parser
- func (s *ProcedureNameContext) GetRuleContext() antlr.RuleContext
- func (s *ProcedureNameContext) InSection() IInSectionContext
- func (*ProcedureNameContext) IsProcedureNameContext()
- func (s *ProcedureNameContext) ParagraphName() IParagraphNameContext
- func (s *ProcedureNameContext) SectionName() ISectionNameContext
- func (s *ProcedureNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureSectionContext
- func (s *ProcedureSectionContext) DOT_FS() antlr.TerminalNode
- func (s *ProcedureSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureSectionContext) GetParser() antlr.Parser
- func (s *ProcedureSectionContext) GetRuleContext() antlr.RuleContext
- func (*ProcedureSectionContext) IsProcedureSectionContext()
- func (s *ProcedureSectionContext) Paragraphs() IParagraphsContext
- func (s *ProcedureSectionContext) ProcedureSectionHeader() IProcedureSectionHeaderContext
- func (s *ProcedureSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProcedureSectionHeaderContext
- func (s *ProcedureSectionHeaderContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProcedureSectionHeaderContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProcedureSectionHeaderContext) GetParser() antlr.Parser
- func (s *ProcedureSectionHeaderContext) GetRuleContext() antlr.RuleContext
- func (s *ProcedureSectionHeaderContext) IntegerLiteral() IIntegerLiteralContext
- func (*ProcedureSectionHeaderContext) IsProcedureSectionHeaderContext()
- func (s *ProcedureSectionHeaderContext) SECTION() antlr.TerminalNode
- func (s *ProcedureSectionHeaderContext) SectionName() ISectionNameContext
- func (s *ProcedureSectionHeaderContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProgramIdParagraphContext
- func (s *ProgramIdParagraphContext) AllDOT_FS() []antlr.TerminalNode
- func (s *ProgramIdParagraphContext) COMMON() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) CommentEntry() ICommentEntryContext
- func (s *ProgramIdParagraphContext) DEFINITION() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) DOT_FS(i int) antlr.TerminalNode
- func (s *ProgramIdParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProgramIdParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProgramIdParagraphContext) GetParser() antlr.Parser
- func (s *ProgramIdParagraphContext) GetRuleContext() antlr.RuleContext
- func (s *ProgramIdParagraphContext) INITIAL() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) IS() antlr.TerminalNode
- func (*ProgramIdParagraphContext) IsProgramIdParagraphContext()
- func (s *ProgramIdParagraphContext) LIBRARY() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) PROGRAM() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) PROGRAM_ID() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) ProgramName() IProgramNameContext
- func (s *ProgramIdParagraphContext) RECURSIVE() antlr.TerminalNode
- func (s *ProgramIdParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProgramLibrarySectionContext
- func (s *ProgramLibrarySectionContext) AllLibraryDescriptionEntry() []ILibraryDescriptionEntryContext
- func (s *ProgramLibrarySectionContext) DOT_FS() antlr.TerminalNode
- func (s *ProgramLibrarySectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProgramLibrarySectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProgramLibrarySectionContext) GetParser() antlr.Parser
- func (s *ProgramLibrarySectionContext) GetRuleContext() antlr.RuleContext
- func (*ProgramLibrarySectionContext) IsProgramLibrarySectionContext()
- func (s *ProgramLibrarySectionContext) LibraryDescriptionEntry(i int) ILibraryDescriptionEntryContext
- func (s *ProgramLibrarySectionContext) PROGRAM_LIBRARY() antlr.TerminalNode
- func (s *ProgramLibrarySectionContext) SECTION() antlr.TerminalNode
- func (s *ProgramLibrarySectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProgramNameContext
- func (s *ProgramNameContext) CobolWord() ICobolWordContext
- func (s *ProgramNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProgramNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProgramNameContext) GetParser() antlr.Parser
- func (s *ProgramNameContext) GetRuleContext() antlr.RuleContext
- func (*ProgramNameContext) IsProgramNameContext()
- func (s *ProgramNameContext) NONNUMERICLITERAL() antlr.TerminalNode
- func (s *ProgramNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ProgramUnitContext
- func (s *ProgramUnitContext) AllProgramUnit() []IProgramUnitContext
- func (s *ProgramUnitContext) DataDivision() IDataDivisionContext
- func (s *ProgramUnitContext) EndProgramStatement() IEndProgramStatementContext
- func (s *ProgramUnitContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ProgramUnitContext) EnvironmentDivision() IEnvironmentDivisionContext
- func (s *ProgramUnitContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ProgramUnitContext) GetParser() antlr.Parser
- func (s *ProgramUnitContext) GetRuleContext() antlr.RuleContext
- func (s *ProgramUnitContext) IdentificationDivision() IIdentificationDivisionContext
- func (*ProgramUnitContext) IsProgramUnitContext()
- func (s *ProgramUnitContext) ProcedureDivision() IProcedureDivisionContext
- func (s *ProgramUnitContext) ProgramUnit(i int) IProgramUnitContext
- func (s *ProgramUnitContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type PurgeStatementContext
- func (s *PurgeStatementContext) AllCdName() []ICdNameContext
- func (s *PurgeStatementContext) CdName(i int) ICdNameContext
- func (s *PurgeStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *PurgeStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *PurgeStatementContext) GetParser() antlr.Parser
- func (s *PurgeStatementContext) GetRuleContext() antlr.RuleContext
- func (*PurgeStatementContext) IsPurgeStatementContext()
- func (s *PurgeStatementContext) PURGE() antlr.TerminalNode
- func (s *PurgeStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type QualifiedDataNameContext
- func (s *QualifiedDataNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameContext) GetParser() antlr.Parser
- func (s *QualifiedDataNameContext) GetRuleContext() antlr.RuleContext
- func (*QualifiedDataNameContext) IsQualifiedDataNameContext()
- func (s *QualifiedDataNameContext) QualifiedDataNameFormat1() IQualifiedDataNameFormat1Context
- func (s *QualifiedDataNameContext) QualifiedDataNameFormat2() IQualifiedDataNameFormat2Context
- func (s *QualifiedDataNameContext) QualifiedDataNameFormat3() IQualifiedDataNameFormat3Context
- func (s *QualifiedDataNameContext) QualifiedDataNameFormat4() IQualifiedDataNameFormat4Context
- func (s *QualifiedDataNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type QualifiedDataNameFormat1Context
- func (s *QualifiedDataNameFormat1Context) AllQualifiedInData() []IQualifiedInDataContext
- func (s *QualifiedDataNameFormat1Context) ConditionName() IConditionNameContext
- func (s *QualifiedDataNameFormat1Context) DataName() IDataNameContext
- func (s *QualifiedDataNameFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat1Context) GetParser() antlr.Parser
- func (s *QualifiedDataNameFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *QualifiedDataNameFormat1Context) InFile() IInFileContext
- func (*QualifiedDataNameFormat1Context) IsQualifiedDataNameFormat1Context()
- func (s *QualifiedDataNameFormat1Context) QualifiedInData(i int) IQualifiedInDataContext
- func (s *QualifiedDataNameFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type QualifiedDataNameFormat2Context
- func (s *QualifiedDataNameFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat2Context) GetParser() antlr.Parser
- func (s *QualifiedDataNameFormat2Context) GetRuleContext() antlr.RuleContext
- func (s *QualifiedDataNameFormat2Context) InSection() IInSectionContext
- func (*QualifiedDataNameFormat2Context) IsQualifiedDataNameFormat2Context()
- func (s *QualifiedDataNameFormat2Context) ParagraphName() IParagraphNameContext
- func (s *QualifiedDataNameFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type QualifiedDataNameFormat3Context
- func (s *QualifiedDataNameFormat3Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat3Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat3Context) GetParser() antlr.Parser
- func (s *QualifiedDataNameFormat3Context) GetRuleContext() antlr.RuleContext
- func (s *QualifiedDataNameFormat3Context) InLibrary() IInLibraryContext
- func (*QualifiedDataNameFormat3Context) IsQualifiedDataNameFormat3Context()
- func (s *QualifiedDataNameFormat3Context) TextName() ITextNameContext
- func (s *QualifiedDataNameFormat3Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type QualifiedDataNameFormat4Context
- func (s *QualifiedDataNameFormat4Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat4Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *QualifiedDataNameFormat4Context) GetParser() antlr.Parser
- func (s *QualifiedDataNameFormat4Context) GetRuleContext() antlr.RuleContext
- func (s *QualifiedDataNameFormat4Context) InFile() IInFileContext
- func (*QualifiedDataNameFormat4Context) IsQualifiedDataNameFormat4Context()
- func (s *QualifiedDataNameFormat4Context) LINAGE_COUNTER() antlr.TerminalNode
- func (s *QualifiedDataNameFormat4Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type QualifiedInDataContext
- func (s *QualifiedInDataContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *QualifiedInDataContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *QualifiedInDataContext) GetParser() antlr.Parser
- func (s *QualifiedInDataContext) GetRuleContext() antlr.RuleContext
- func (s *QualifiedInDataContext) InData() IInDataContext
- func (s *QualifiedInDataContext) InTable() IInTableContext
- func (*QualifiedInDataContext) IsQualifiedInDataContext()
- func (s *QualifiedInDataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReadIntoContext
- func (s *ReadIntoContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReadIntoContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReadIntoContext) GetParser() antlr.Parser
- func (s *ReadIntoContext) GetRuleContext() antlr.RuleContext
- func (s *ReadIntoContext) INTO() antlr.TerminalNode
- func (s *ReadIntoContext) Identifier() IIdentifierContext
- func (*ReadIntoContext) IsReadIntoContext()
- func (s *ReadIntoContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReadKeyContext
- func (s *ReadKeyContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReadKeyContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReadKeyContext) GetParser() antlr.Parser
- func (s *ReadKeyContext) GetRuleContext() antlr.RuleContext
- func (s *ReadKeyContext) IS() antlr.TerminalNode
- func (*ReadKeyContext) IsReadKeyContext()
- func (s *ReadKeyContext) KEY() antlr.TerminalNode
- func (s *ReadKeyContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *ReadKeyContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReadStatementContext
- func (s *ReadStatementContext) AtEndPhrase() IAtEndPhraseContext
- func (s *ReadStatementContext) END_READ() antlr.TerminalNode
- func (s *ReadStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReadStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReadStatementContext) FileName() IFileNameContext
- func (s *ReadStatementContext) GetParser() antlr.Parser
- func (s *ReadStatementContext) GetRuleContext() antlr.RuleContext
- func (s *ReadStatementContext) InvalidKeyPhrase() IInvalidKeyPhraseContext
- func (*ReadStatementContext) IsReadStatementContext()
- func (s *ReadStatementContext) NEXT() antlr.TerminalNode
- func (s *ReadStatementContext) NotAtEndPhrase() INotAtEndPhraseContext
- func (s *ReadStatementContext) NotInvalidKeyPhrase() INotInvalidKeyPhraseContext
- func (s *ReadStatementContext) READ() antlr.TerminalNode
- func (s *ReadStatementContext) RECORD() antlr.TerminalNode
- func (s *ReadStatementContext) ReadInto() IReadIntoContext
- func (s *ReadStatementContext) ReadKey() IReadKeyContext
- func (s *ReadStatementContext) ReadWith() IReadWithContext
- func (s *ReadStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReadWithContext
- func (s *ReadWithContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReadWithContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReadWithContext) GetParser() antlr.Parser
- func (s *ReadWithContext) GetRuleContext() antlr.RuleContext
- func (*ReadWithContext) IsReadWithContext()
- func (s *ReadWithContext) KEPT() antlr.TerminalNode
- func (s *ReadWithContext) LOCK() antlr.TerminalNode
- func (s *ReadWithContext) NO() antlr.TerminalNode
- func (s *ReadWithContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReadWithContext) WAIT() antlr.TerminalNode
- func (s *ReadWithContext) WITH() antlr.TerminalNode
- type ReceiveBeforeContext
- func (s *ReceiveBeforeContext) BEFORE() antlr.TerminalNode
- func (s *ReceiveBeforeContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveBeforeContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveBeforeContext) GetParser() antlr.Parser
- func (s *ReceiveBeforeContext) GetRuleContext() antlr.RuleContext
- func (s *ReceiveBeforeContext) Identifier() IIdentifierContext
- func (*ReceiveBeforeContext) IsReceiveBeforeContext()
- func (s *ReceiveBeforeContext) NumericLiteral() INumericLiteralContext
- func (s *ReceiveBeforeContext) TIME() antlr.TerminalNode
- func (s *ReceiveBeforeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveFromContext
- func (s *ReceiveFromContext) ANY() antlr.TerminalNode
- func (s *ReceiveFromContext) DataName() IDataNameContext
- func (s *ReceiveFromContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveFromContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveFromContext) GetParser() antlr.Parser
- func (s *ReceiveFromContext) GetRuleContext() antlr.RuleContext
- func (*ReceiveFromContext) IsReceiveFromContext()
- func (s *ReceiveFromContext) LAST() antlr.TerminalNode
- func (s *ReceiveFromContext) THREAD() antlr.TerminalNode
- func (s *ReceiveFromContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveFromStatementContext
- func (s *ReceiveFromStatementContext) AllReceiveBefore() []IReceiveBeforeContext
- func (s *ReceiveFromStatementContext) AllReceiveSize() []IReceiveSizeContext
- func (s *ReceiveFromStatementContext) AllReceiveStatus() []IReceiveStatusContext
- func (s *ReceiveFromStatementContext) AllReceiveThread() []IReceiveThreadContext
- func (s *ReceiveFromStatementContext) AllReceiveWith() []IReceiveWithContext
- func (s *ReceiveFromStatementContext) DataName() IDataNameContext
- func (s *ReceiveFromStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveFromStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveFromStatementContext) FROM() antlr.TerminalNode
- func (s *ReceiveFromStatementContext) GetParser() antlr.Parser
- func (s *ReceiveFromStatementContext) GetRuleContext() antlr.RuleContext
- func (*ReceiveFromStatementContext) IsReceiveFromStatementContext()
- func (s *ReceiveFromStatementContext) ReceiveBefore(i int) IReceiveBeforeContext
- func (s *ReceiveFromStatementContext) ReceiveFrom() IReceiveFromContext
- func (s *ReceiveFromStatementContext) ReceiveSize(i int) IReceiveSizeContext
- func (s *ReceiveFromStatementContext) ReceiveStatus(i int) IReceiveStatusContext
- func (s *ReceiveFromStatementContext) ReceiveThread(i int) IReceiveThreadContext
- func (s *ReceiveFromStatementContext) ReceiveWith(i int) IReceiveWithContext
- func (s *ReceiveFromStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveIntoStatementContext
- func (s *ReceiveIntoStatementContext) CdName() ICdNameContext
- func (s *ReceiveIntoStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveIntoStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveIntoStatementContext) GetParser() antlr.Parser
- func (s *ReceiveIntoStatementContext) GetRuleContext() antlr.RuleContext
- func (s *ReceiveIntoStatementContext) INTO() antlr.TerminalNode
- func (s *ReceiveIntoStatementContext) Identifier() IIdentifierContext
- func (*ReceiveIntoStatementContext) IsReceiveIntoStatementContext()
- func (s *ReceiveIntoStatementContext) MESSAGE() antlr.TerminalNode
- func (s *ReceiveIntoStatementContext) ReceiveNoData() IReceiveNoDataContext
- func (s *ReceiveIntoStatementContext) ReceiveWithData() IReceiveWithDataContext
- func (s *ReceiveIntoStatementContext) SEGMENT() antlr.TerminalNode
- func (s *ReceiveIntoStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveNoDataContext
- func (s *ReceiveNoDataContext) AllStatement() []IStatementContext
- func (s *ReceiveNoDataContext) DATA() antlr.TerminalNode
- func (s *ReceiveNoDataContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveNoDataContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveNoDataContext) GetParser() antlr.Parser
- func (s *ReceiveNoDataContext) GetRuleContext() antlr.RuleContext
- func (*ReceiveNoDataContext) IsReceiveNoDataContext()
- func (s *ReceiveNoDataContext) NO() antlr.TerminalNode
- func (s *ReceiveNoDataContext) Statement(i int) IStatementContext
- func (s *ReceiveNoDataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveSizeContext
- func (s *ReceiveSizeContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveSizeContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveSizeContext) GetParser() antlr.Parser
- func (s *ReceiveSizeContext) GetRuleContext() antlr.RuleContext
- func (s *ReceiveSizeContext) IN() antlr.TerminalNode
- func (s *ReceiveSizeContext) Identifier() IIdentifierContext
- func (*ReceiveSizeContext) IsReceiveSizeContext()
- func (s *ReceiveSizeContext) NumericLiteral() INumericLiteralContext
- func (s *ReceiveSizeContext) SIZE() antlr.TerminalNode
- func (s *ReceiveSizeContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveStatementContext
- func (s *ReceiveStatementContext) END_RECEIVE() antlr.TerminalNode
- func (s *ReceiveStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveStatementContext) GetParser() antlr.Parser
- func (s *ReceiveStatementContext) GetRuleContext() antlr.RuleContext
- func (*ReceiveStatementContext) IsReceiveStatementContext()
- func (s *ReceiveStatementContext) NotOnExceptionClause() INotOnExceptionClauseContext
- func (s *ReceiveStatementContext) OnExceptionClause() IOnExceptionClauseContext
- func (s *ReceiveStatementContext) RECEIVE() antlr.TerminalNode
- func (s *ReceiveStatementContext) ReceiveFromStatement() IReceiveFromStatementContext
- func (s *ReceiveStatementContext) ReceiveIntoStatement() IReceiveIntoStatementContext
- func (s *ReceiveStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveStatusContext
- func (s *ReceiveStatusContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveStatusContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveStatusContext) GetParser() antlr.Parser
- func (s *ReceiveStatusContext) GetRuleContext() antlr.RuleContext
- func (s *ReceiveStatusContext) IN() antlr.TerminalNode
- func (s *ReceiveStatusContext) Identifier() IIdentifierContext
- func (*ReceiveStatusContext) IsReceiveStatusContext()
- func (s *ReceiveStatusContext) STATUS() antlr.TerminalNode
- func (s *ReceiveStatusContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveThreadContext
- func (s *ReceiveThreadContext) DataName() IDataNameContext
- func (s *ReceiveThreadContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveThreadContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveThreadContext) GetParser() antlr.Parser
- func (s *ReceiveThreadContext) GetRuleContext() antlr.RuleContext
- func (s *ReceiveThreadContext) IN() antlr.TerminalNode
- func (*ReceiveThreadContext) IsReceiveThreadContext()
- func (s *ReceiveThreadContext) THREAD() antlr.TerminalNode
- func (s *ReceiveThreadContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReceiveWithContext
- func (s *ReceiveWithContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveWithContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveWithContext) GetParser() antlr.Parser
- func (s *ReceiveWithContext) GetRuleContext() antlr.RuleContext
- func (*ReceiveWithContext) IsReceiveWithContext()
- func (s *ReceiveWithContext) NO() antlr.TerminalNode
- func (s *ReceiveWithContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReceiveWithContext) WAIT() antlr.TerminalNode
- func (s *ReceiveWithContext) WITH() antlr.TerminalNode
- type ReceiveWithDataContext
- func (s *ReceiveWithDataContext) AllStatement() []IStatementContext
- func (s *ReceiveWithDataContext) DATA() antlr.TerminalNode
- func (s *ReceiveWithDataContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReceiveWithDataContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReceiveWithDataContext) GetParser() antlr.Parser
- func (s *ReceiveWithDataContext) GetRuleContext() antlr.RuleContext
- func (*ReceiveWithDataContext) IsReceiveWithDataContext()
- func (s *ReceiveWithDataContext) Statement(i int) IStatementContext
- func (s *ReceiveWithDataContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReceiveWithDataContext) WITH() antlr.TerminalNode
- type RecordContainsClauseContext
- func (s *RecordContainsClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseContext) GetParser() antlr.Parser
- func (s *RecordContainsClauseContext) GetRuleContext() antlr.RuleContext
- func (*RecordContainsClauseContext) IsRecordContainsClauseContext()
- func (s *RecordContainsClauseContext) RECORD() antlr.TerminalNode
- func (s *RecordContainsClauseContext) RecordContainsClauseFormat1() IRecordContainsClauseFormat1Context
- func (s *RecordContainsClauseContext) RecordContainsClauseFormat2() IRecordContainsClauseFormat2Context
- func (s *RecordContainsClauseContext) RecordContainsClauseFormat3() IRecordContainsClauseFormat3Context
- func (s *RecordContainsClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RecordContainsClauseFormat1Context
- func (s *RecordContainsClauseFormat1Context) CHARACTERS() antlr.TerminalNode
- func (s *RecordContainsClauseFormat1Context) CONTAINS() antlr.TerminalNode
- func (s *RecordContainsClauseFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseFormat1Context) GetParser() antlr.Parser
- func (s *RecordContainsClauseFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *RecordContainsClauseFormat1Context) IntegerLiteral() IIntegerLiteralContext
- func (*RecordContainsClauseFormat1Context) IsRecordContainsClauseFormat1Context()
- func (s *RecordContainsClauseFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RecordContainsClauseFormat2Context
- func (s *RecordContainsClauseFormat2Context) CHARACTERS() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) DEPENDING() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseFormat2Context) FROM() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) GetParser() antlr.Parser
- func (s *RecordContainsClauseFormat2Context) GetRuleContext() antlr.RuleContext
- func (s *RecordContainsClauseFormat2Context) IN() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) IS() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) IntegerLiteral() IIntegerLiteralContext
- func (*RecordContainsClauseFormat2Context) IsRecordContainsClauseFormat2Context()
- func (s *RecordContainsClauseFormat2Context) ON() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) QualifiedDataName() IQualifiedDataNameContext
- func (s *RecordContainsClauseFormat2Context) RecordContainsTo() IRecordContainsToContext
- func (s *RecordContainsClauseFormat2Context) SIZE() antlr.TerminalNode
- func (s *RecordContainsClauseFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *RecordContainsClauseFormat2Context) VARYING() antlr.TerminalNode
- type RecordContainsClauseFormat3Context
- func (s *RecordContainsClauseFormat3Context) CHARACTERS() antlr.TerminalNode
- func (s *RecordContainsClauseFormat3Context) CONTAINS() antlr.TerminalNode
- func (s *RecordContainsClauseFormat3Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseFormat3Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsClauseFormat3Context) GetParser() antlr.Parser
- func (s *RecordContainsClauseFormat3Context) GetRuleContext() antlr.RuleContext
- func (s *RecordContainsClauseFormat3Context) IntegerLiteral() IIntegerLiteralContext
- func (*RecordContainsClauseFormat3Context) IsRecordContainsClauseFormat3Context()
- func (s *RecordContainsClauseFormat3Context) RecordContainsTo() IRecordContainsToContext
- func (s *RecordContainsClauseFormat3Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RecordContainsToContext
- func (s *RecordContainsToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordContainsToContext) GetParser() antlr.Parser
- func (s *RecordContainsToContext) GetRuleContext() antlr.RuleContext
- func (s *RecordContainsToContext) IntegerLiteral() IIntegerLiteralContext
- func (*RecordContainsToContext) IsRecordContainsToContext()
- func (s *RecordContainsToContext) TO() antlr.TerminalNode
- func (s *RecordContainsToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RecordDelimiterClauseContext
- func (s *RecordDelimiterClauseContext) AssignmentName() IAssignmentNameContext
- func (s *RecordDelimiterClauseContext) DELIMITER() antlr.TerminalNode
- func (s *RecordDelimiterClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordDelimiterClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordDelimiterClauseContext) GetParser() antlr.Parser
- func (s *RecordDelimiterClauseContext) GetRuleContext() antlr.RuleContext
- func (s *RecordDelimiterClauseContext) IMPLICIT() antlr.TerminalNode
- func (s *RecordDelimiterClauseContext) IS() antlr.TerminalNode
- func (*RecordDelimiterClauseContext) IsRecordDelimiterClauseContext()
- func (s *RecordDelimiterClauseContext) RECORD() antlr.TerminalNode
- func (s *RecordDelimiterClauseContext) STANDARD_1() antlr.TerminalNode
- func (s *RecordDelimiterClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RecordKeyClauseContext
- func (s *RecordKeyClauseContext) DUPLICATES() antlr.TerminalNode
- func (s *RecordKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordKeyClauseContext) GetParser() antlr.Parser
- func (s *RecordKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (s *RecordKeyClauseContext) IS() antlr.TerminalNode
- func (*RecordKeyClauseContext) IsRecordKeyClauseContext()
- func (s *RecordKeyClauseContext) KEY() antlr.TerminalNode
- func (s *RecordKeyClauseContext) PasswordClause() IPasswordClauseContext
- func (s *RecordKeyClauseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *RecordKeyClauseContext) RECORD() antlr.TerminalNode
- func (s *RecordKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *RecordKeyClauseContext) WITH() antlr.TerminalNode
- type RecordNameContext
- func (s *RecordNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordNameContext) GetParser() antlr.Parser
- func (s *RecordNameContext) GetRuleContext() antlr.RuleContext
- func (*RecordNameContext) IsRecordNameContext()
- func (s *RecordNameContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *RecordNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RecordingModeClauseContext
- func (s *RecordingModeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RecordingModeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RecordingModeClauseContext) GetParser() antlr.Parser
- func (s *RecordingModeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *RecordingModeClauseContext) IS() antlr.TerminalNode
- func (*RecordingModeClauseContext) IsRecordingModeClauseContext()
- func (s *RecordingModeClauseContext) MODE() antlr.TerminalNode
- func (s *RecordingModeClauseContext) ModeStatement() IModeStatementContext
- func (s *RecordingModeClauseContext) RECORDING() antlr.TerminalNode
- func (s *RecordingModeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReferenceModifierContext
- func (s *ReferenceModifierContext) COLONCHAR() antlr.TerminalNode
- func (s *ReferenceModifierContext) CharacterPosition() ICharacterPositionContext
- func (s *ReferenceModifierContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReferenceModifierContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReferenceModifierContext) GetParser() antlr.Parser
- func (s *ReferenceModifierContext) GetRuleContext() antlr.RuleContext
- func (*ReferenceModifierContext) IsReferenceModifierContext()
- func (s *ReferenceModifierContext) LPARENCHAR() antlr.TerminalNode
- func (s *ReferenceModifierContext) Length() ILengthContext
- func (s *ReferenceModifierContext) RPARENCHAR() antlr.TerminalNode
- func (s *ReferenceModifierContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RelationArithmeticComparisonContext
- func (s *RelationArithmeticComparisonContext) AllArithmeticExpression() []IArithmeticExpressionContext
- func (s *RelationArithmeticComparisonContext) ArithmeticExpression(i int) IArithmeticExpressionContext
- func (s *RelationArithmeticComparisonContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelationArithmeticComparisonContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelationArithmeticComparisonContext) GetParser() antlr.Parser
- func (s *RelationArithmeticComparisonContext) GetRuleContext() antlr.RuleContext
- func (*RelationArithmeticComparisonContext) IsRelationArithmeticComparisonContext()
- func (s *RelationArithmeticComparisonContext) RelationalOperator() IRelationalOperatorContext
- func (s *RelationArithmeticComparisonContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RelationCombinedComparisonContext
- func (s *RelationCombinedComparisonContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *RelationCombinedComparisonContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelationCombinedComparisonContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelationCombinedComparisonContext) GetParser() antlr.Parser
- func (s *RelationCombinedComparisonContext) GetRuleContext() antlr.RuleContext
- func (*RelationCombinedComparisonContext) IsRelationCombinedComparisonContext()
- func (s *RelationCombinedComparisonContext) LPARENCHAR() antlr.TerminalNode
- func (s *RelationCombinedComparisonContext) RPARENCHAR() antlr.TerminalNode
- func (s *RelationCombinedComparisonContext) RelationCombinedCondition() IRelationCombinedConditionContext
- func (s *RelationCombinedComparisonContext) RelationalOperator() IRelationalOperatorContext
- func (s *RelationCombinedComparisonContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RelationCombinedConditionContext
- func (s *RelationCombinedConditionContext) AND(i int) antlr.TerminalNode
- func (s *RelationCombinedConditionContext) AllAND() []antlr.TerminalNode
- func (s *RelationCombinedConditionContext) AllArithmeticExpression() []IArithmeticExpressionContext
- func (s *RelationCombinedConditionContext) AllOR() []antlr.TerminalNode
- func (s *RelationCombinedConditionContext) ArithmeticExpression(i int) IArithmeticExpressionContext
- func (s *RelationCombinedConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelationCombinedConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelationCombinedConditionContext) GetParser() antlr.Parser
- func (s *RelationCombinedConditionContext) GetRuleContext() antlr.RuleContext
- func (*RelationCombinedConditionContext) IsRelationCombinedConditionContext()
- func (s *RelationCombinedConditionContext) OR(i int) antlr.TerminalNode
- func (s *RelationCombinedConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RelationConditionContext
- func (s *RelationConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelationConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelationConditionContext) GetParser() antlr.Parser
- func (s *RelationConditionContext) GetRuleContext() antlr.RuleContext
- func (*RelationConditionContext) IsRelationConditionContext()
- func (s *RelationConditionContext) RelationArithmeticComparison() IRelationArithmeticComparisonContext
- func (s *RelationConditionContext) RelationCombinedComparison() IRelationCombinedComparisonContext
- func (s *RelationConditionContext) RelationSignCondition() IRelationSignConditionContext
- func (s *RelationConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RelationSignConditionContext
- func (s *RelationSignConditionContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *RelationSignConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelationSignConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelationSignConditionContext) GetParser() antlr.Parser
- func (s *RelationSignConditionContext) GetRuleContext() antlr.RuleContext
- func (s *RelationSignConditionContext) IS() antlr.TerminalNode
- func (*RelationSignConditionContext) IsRelationSignConditionContext()
- func (s *RelationSignConditionContext) NEGATIVE() antlr.TerminalNode
- func (s *RelationSignConditionContext) NOT() antlr.TerminalNode
- func (s *RelationSignConditionContext) POSITIVE() antlr.TerminalNode
- func (s *RelationSignConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *RelationSignConditionContext) ZERO() antlr.TerminalNode
- type RelationalOperatorContext
- func (s *RelationalOperatorContext) ARE() antlr.TerminalNode
- func (s *RelationalOperatorContext) EQUAL() antlr.TerminalNode
- func (s *RelationalOperatorContext) EQUALCHAR() antlr.TerminalNode
- func (s *RelationalOperatorContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelationalOperatorContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelationalOperatorContext) GREATER() antlr.TerminalNode
- func (s *RelationalOperatorContext) GetParser() antlr.Parser
- func (s *RelationalOperatorContext) GetRuleContext() antlr.RuleContext
- func (s *RelationalOperatorContext) IS() antlr.TerminalNode
- func (*RelationalOperatorContext) IsRelationalOperatorContext()
- func (s *RelationalOperatorContext) LESS() antlr.TerminalNode
- func (s *RelationalOperatorContext) LESSTHANCHAR() antlr.TerminalNode
- func (s *RelationalOperatorContext) LESSTHANOREQUAL() antlr.TerminalNode
- func (s *RelationalOperatorContext) MORETHANCHAR() antlr.TerminalNode
- func (s *RelationalOperatorContext) MORETHANOREQUAL() antlr.TerminalNode
- func (s *RelationalOperatorContext) NOT() antlr.TerminalNode
- func (s *RelationalOperatorContext) NOTEQUALCHAR() antlr.TerminalNode
- func (s *RelationalOperatorContext) OR() antlr.TerminalNode
- func (s *RelationalOperatorContext) THAN() antlr.TerminalNode
- func (s *RelationalOperatorContext) TO() antlr.TerminalNode
- func (s *RelationalOperatorContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RelativeKeyClauseContext
- func (s *RelativeKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RelativeKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RelativeKeyClauseContext) GetParser() antlr.Parser
- func (s *RelativeKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (s *RelativeKeyClauseContext) IS() antlr.TerminalNode
- func (*RelativeKeyClauseContext) IsRelativeKeyClauseContext()
- func (s *RelativeKeyClauseContext) KEY() antlr.TerminalNode
- func (s *RelativeKeyClauseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *RelativeKeyClauseContext) RELATIVE() antlr.TerminalNode
- func (s *RelativeKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReleaseStatementContext
- func (s *ReleaseStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReleaseStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReleaseStatementContext) FROM() antlr.TerminalNode
- func (s *ReleaseStatementContext) GetParser() antlr.Parser
- func (s *ReleaseStatementContext) GetRuleContext() antlr.RuleContext
- func (*ReleaseStatementContext) IsReleaseStatementContext()
- func (s *ReleaseStatementContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *ReleaseStatementContext) RELEASE() antlr.TerminalNode
- func (s *ReleaseStatementContext) RecordName() IRecordNameContext
- func (s *ReleaseStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RemarksParagraphContext
- func (s *RemarksParagraphContext) CommentEntry() ICommentEntryContext
- func (s *RemarksParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *RemarksParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RemarksParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RemarksParagraphContext) GetParser() antlr.Parser
- func (s *RemarksParagraphContext) GetRuleContext() antlr.RuleContext
- func (*RemarksParagraphContext) IsRemarksParagraphContext()
- func (s *RemarksParagraphContext) REMARKS() antlr.TerminalNode
- func (s *RemarksParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportClauseContext
- func (s *ReportClauseContext) ARE() antlr.TerminalNode
- func (s *ReportClauseContext) AllReportName() []IReportNameContext
- func (s *ReportClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportClauseContext) GetParser() antlr.Parser
- func (s *ReportClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportClauseContext) IS() antlr.TerminalNode
- func (*ReportClauseContext) IsReportClauseContext()
- func (s *ReportClauseContext) REPORT() antlr.TerminalNode
- func (s *ReportClauseContext) REPORTS() antlr.TerminalNode
- func (s *ReportClauseContext) ReportName(i int) IReportNameContext
- func (s *ReportClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionContext
- func (s *ReportDescriptionContext) AllReportGroupDescriptionEntry() []IReportGroupDescriptionEntryContext
- func (s *ReportDescriptionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionContext) GetParser() antlr.Parser
- func (s *ReportDescriptionContext) GetRuleContext() antlr.RuleContext
- func (*ReportDescriptionContext) IsReportDescriptionContext()
- func (s *ReportDescriptionContext) ReportDescriptionEntry() IReportDescriptionEntryContext
- func (s *ReportDescriptionContext) ReportGroupDescriptionEntry(i int) IReportGroupDescriptionEntryContext
- func (s *ReportDescriptionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionEntryContext
- func (s *ReportDescriptionEntryContext) DOT_FS() antlr.TerminalNode
- func (s *ReportDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionEntryContext) GetParser() antlr.Parser
- func (s *ReportDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (*ReportDescriptionEntryContext) IsReportDescriptionEntryContext()
- func (s *ReportDescriptionEntryContext) RD() antlr.TerminalNode
- func (s *ReportDescriptionEntryContext) ReportDescriptionFirstDetailClause() IReportDescriptionFirstDetailClauseContext
- func (s *ReportDescriptionEntryContext) ReportDescriptionFootingClause() IReportDescriptionFootingClauseContext
- func (s *ReportDescriptionEntryContext) ReportDescriptionGlobalClause() IReportDescriptionGlobalClauseContext
- func (s *ReportDescriptionEntryContext) ReportDescriptionHeadingClause() IReportDescriptionHeadingClauseContext
- func (s *ReportDescriptionEntryContext) ReportDescriptionLastDetailClause() IReportDescriptionLastDetailClauseContext
- func (s *ReportDescriptionEntryContext) ReportDescriptionPageLimitClause() IReportDescriptionPageLimitClauseContext
- func (s *ReportDescriptionEntryContext) ReportName() IReportNameContext
- func (s *ReportDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionFirstDetailClauseContext
- func (s *ReportDescriptionFirstDetailClauseContext) DETAIL() antlr.TerminalNode
- func (s *ReportDescriptionFirstDetailClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionFirstDetailClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionFirstDetailClauseContext) FIRST() antlr.TerminalNode
- func (s *ReportDescriptionFirstDetailClauseContext) GetParser() antlr.Parser
- func (s *ReportDescriptionFirstDetailClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportDescriptionFirstDetailClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportDescriptionFirstDetailClauseContext) IsReportDescriptionFirstDetailClauseContext()
- func (s *ReportDescriptionFirstDetailClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionFootingClauseContext
- func (s *ReportDescriptionFootingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionFootingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionFootingClauseContext) FOOTING() antlr.TerminalNode
- func (s *ReportDescriptionFootingClauseContext) GetParser() antlr.Parser
- func (s *ReportDescriptionFootingClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportDescriptionFootingClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportDescriptionFootingClauseContext) IsReportDescriptionFootingClauseContext()
- func (s *ReportDescriptionFootingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionGlobalClauseContext
- func (s *ReportDescriptionGlobalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionGlobalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionGlobalClauseContext) GLOBAL() antlr.TerminalNode
- func (s *ReportDescriptionGlobalClauseContext) GetParser() antlr.Parser
- func (s *ReportDescriptionGlobalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportDescriptionGlobalClauseContext) IS() antlr.TerminalNode
- func (*ReportDescriptionGlobalClauseContext) IsReportDescriptionGlobalClauseContext()
- func (s *ReportDescriptionGlobalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionHeadingClauseContext
- func (s *ReportDescriptionHeadingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionHeadingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionHeadingClauseContext) GetParser() antlr.Parser
- func (s *ReportDescriptionHeadingClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportDescriptionHeadingClauseContext) HEADING() antlr.TerminalNode
- func (s *ReportDescriptionHeadingClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportDescriptionHeadingClauseContext) IsReportDescriptionHeadingClauseContext()
- func (s *ReportDescriptionHeadingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionLastDetailClauseContext
- func (s *ReportDescriptionLastDetailClauseContext) DETAIL() antlr.TerminalNode
- func (s *ReportDescriptionLastDetailClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionLastDetailClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionLastDetailClauseContext) GetParser() antlr.Parser
- func (s *ReportDescriptionLastDetailClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportDescriptionLastDetailClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportDescriptionLastDetailClauseContext) IsReportDescriptionLastDetailClauseContext()
- func (s *ReportDescriptionLastDetailClauseContext) LAST() antlr.TerminalNode
- func (s *ReportDescriptionLastDetailClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportDescriptionPageLimitClauseContext
- func (s *ReportDescriptionPageLimitClauseContext) ARE() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionPageLimitClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportDescriptionPageLimitClauseContext) GetParser() antlr.Parser
- func (s *ReportDescriptionPageLimitClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportDescriptionPageLimitClauseContext) IS() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportDescriptionPageLimitClauseContext) IsReportDescriptionPageLimitClauseContext()
- func (s *ReportDescriptionPageLimitClauseContext) LIMIT() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) LIMITS() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) LINE() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) LINES() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) PAGE() antlr.TerminalNode
- func (s *ReportDescriptionPageLimitClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupBlankWhenZeroClauseContext
- func (s *ReportGroupBlankWhenZeroClauseContext) BLANK() antlr.TerminalNode
- func (s *ReportGroupBlankWhenZeroClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupBlankWhenZeroClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupBlankWhenZeroClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupBlankWhenZeroClauseContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupBlankWhenZeroClauseContext) IsReportGroupBlankWhenZeroClauseContext()
- func (s *ReportGroupBlankWhenZeroClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReportGroupBlankWhenZeroClauseContext) WHEN() antlr.TerminalNode
- func (s *ReportGroupBlankWhenZeroClauseContext) ZERO() antlr.TerminalNode
- type ReportGroupColumnNumberClauseContext
- func (s *ReportGroupColumnNumberClauseContext) COLUMN() antlr.TerminalNode
- func (s *ReportGroupColumnNumberClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupColumnNumberClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupColumnNumberClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupColumnNumberClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupColumnNumberClauseContext) IS() antlr.TerminalNode
- func (s *ReportGroupColumnNumberClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupColumnNumberClauseContext) IsReportGroupColumnNumberClauseContext()
- func (s *ReportGroupColumnNumberClauseContext) NUMBER() antlr.TerminalNode
- func (s *ReportGroupColumnNumberClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupDescriptionEntryContext
- func (s *ReportGroupDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryContext) GetParser() antlr.Parser
- func (s *ReportGroupDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupDescriptionEntryContext) IsReportGroupDescriptionEntryContext()
- func (s *ReportGroupDescriptionEntryContext) ReportGroupDescriptionEntryFormat1() IReportGroupDescriptionEntryFormat1Context
- func (s *ReportGroupDescriptionEntryContext) ReportGroupDescriptionEntryFormat2() IReportGroupDescriptionEntryFormat2Context
- func (s *ReportGroupDescriptionEntryContext) ReportGroupDescriptionEntryFormat3() IReportGroupDescriptionEntryFormat3Context
- func (s *ReportGroupDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupDescriptionEntryFormat1Context
- func (s *ReportGroupDescriptionEntryFormat1Context) DOT_FS() antlr.TerminalNode
- func (s *ReportGroupDescriptionEntryFormat1Context) DataName() IDataNameContext
- func (s *ReportGroupDescriptionEntryFormat1Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryFormat1Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryFormat1Context) GetParser() antlr.Parser
- func (s *ReportGroupDescriptionEntryFormat1Context) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupDescriptionEntryFormat1Context) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupDescriptionEntryFormat1Context) IsReportGroupDescriptionEntryFormat1Context()
- func (s *ReportGroupDescriptionEntryFormat1Context) ReportGroupLineNumberClause() IReportGroupLineNumberClauseContext
- func (s *ReportGroupDescriptionEntryFormat1Context) ReportGroupNextGroupClause() IReportGroupNextGroupClauseContext
- func (s *ReportGroupDescriptionEntryFormat1Context) ReportGroupTypeClause() IReportGroupTypeClauseContext
- func (s *ReportGroupDescriptionEntryFormat1Context) ReportGroupUsageClause() IReportGroupUsageClauseContext
- func (s *ReportGroupDescriptionEntryFormat1Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupDescriptionEntryFormat2Context
- func (s *ReportGroupDescriptionEntryFormat2Context) DOT_FS() antlr.TerminalNode
- func (s *ReportGroupDescriptionEntryFormat2Context) DataName() IDataNameContext
- func (s *ReportGroupDescriptionEntryFormat2Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryFormat2Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryFormat2Context) GetParser() antlr.Parser
- func (s *ReportGroupDescriptionEntryFormat2Context) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupDescriptionEntryFormat2Context) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupDescriptionEntryFormat2Context) IsReportGroupDescriptionEntryFormat2Context()
- func (s *ReportGroupDescriptionEntryFormat2Context) ReportGroupLineNumberClause() IReportGroupLineNumberClauseContext
- func (s *ReportGroupDescriptionEntryFormat2Context) ReportGroupUsageClause() IReportGroupUsageClauseContext
- func (s *ReportGroupDescriptionEntryFormat2Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupDescriptionEntryFormat3Context
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupBlankWhenZeroClause() []IReportGroupBlankWhenZeroClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupColumnNumberClause() []IReportGroupColumnNumberClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupIndicateClause() []IReportGroupIndicateClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupJustifiedClause() []IReportGroupJustifiedClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupLineNumberClause() []IReportGroupLineNumberClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupPictureClause() []IReportGroupPictureClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupResetClause() []IReportGroupResetClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupSignClause() []IReportGroupSignClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupSourceClause() []IReportGroupSourceClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupSumClause() []IReportGroupSumClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupUsageClause() []IReportGroupUsageClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) AllReportGroupValueClause() []IReportGroupValueClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) DOT_FS() antlr.TerminalNode
- func (s *ReportGroupDescriptionEntryFormat3Context) DataName() IDataNameContext
- func (s *ReportGroupDescriptionEntryFormat3Context) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryFormat3Context) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupDescriptionEntryFormat3Context) GetParser() antlr.Parser
- func (s *ReportGroupDescriptionEntryFormat3Context) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupDescriptionEntryFormat3Context) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupDescriptionEntryFormat3Context) IsReportGroupDescriptionEntryFormat3Context()
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupBlankWhenZeroClause(i int) IReportGroupBlankWhenZeroClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupColumnNumberClause(i int) IReportGroupColumnNumberClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupIndicateClause(i int) IReportGroupIndicateClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupJustifiedClause(i int) IReportGroupJustifiedClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupLineNumberClause(i int) IReportGroupLineNumberClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupPictureClause(i int) IReportGroupPictureClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupResetClause(i int) IReportGroupResetClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupSignClause(i int) IReportGroupSignClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupSourceClause(i int) IReportGroupSourceClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupSumClause(i int) IReportGroupSumClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupUsageClause(i int) IReportGroupUsageClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ReportGroupValueClause(i int) IReportGroupValueClauseContext
- func (s *ReportGroupDescriptionEntryFormat3Context) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupIndicateClauseContext
- func (s *ReportGroupIndicateClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupIndicateClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupIndicateClauseContext) GROUP() antlr.TerminalNode
- func (s *ReportGroupIndicateClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupIndicateClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupIndicateClauseContext) INDICATE() antlr.TerminalNode
- func (*ReportGroupIndicateClauseContext) IsReportGroupIndicateClauseContext()
- func (s *ReportGroupIndicateClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupJustifiedClauseContext
- func (s *ReportGroupJustifiedClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupJustifiedClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupJustifiedClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupJustifiedClauseContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupJustifiedClauseContext) IsReportGroupJustifiedClauseContext()
- func (s *ReportGroupJustifiedClauseContext) JUST() antlr.TerminalNode
- func (s *ReportGroupJustifiedClauseContext) JUSTIFIED() antlr.TerminalNode
- func (s *ReportGroupJustifiedClauseContext) RIGHT() antlr.TerminalNode
- func (s *ReportGroupJustifiedClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupLineNumberClauseContext
- func (s *ReportGroupLineNumberClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupLineNumberClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupLineNumberClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupLineNumberClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupLineNumberClauseContext) IS() antlr.TerminalNode
- func (*ReportGroupLineNumberClauseContext) IsReportGroupLineNumberClauseContext()
- func (s *ReportGroupLineNumberClauseContext) LINE() antlr.TerminalNode
- func (s *ReportGroupLineNumberClauseContext) NUMBER() antlr.TerminalNode
- func (s *ReportGroupLineNumberClauseContext) ReportGroupLineNumberNextPage() IReportGroupLineNumberNextPageContext
- func (s *ReportGroupLineNumberClauseContext) ReportGroupLineNumberPlus() IReportGroupLineNumberPlusContext
- func (s *ReportGroupLineNumberClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupLineNumberNextPageContext
- func (s *ReportGroupLineNumberNextPageContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupLineNumberNextPageContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupLineNumberNextPageContext) GetParser() antlr.Parser
- func (s *ReportGroupLineNumberNextPageContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupLineNumberNextPageContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupLineNumberNextPageContext) IsReportGroupLineNumberNextPageContext()
- func (s *ReportGroupLineNumberNextPageContext) NEXT() antlr.TerminalNode
- func (s *ReportGroupLineNumberNextPageContext) ON() antlr.TerminalNode
- func (s *ReportGroupLineNumberNextPageContext) PAGE() antlr.TerminalNode
- func (s *ReportGroupLineNumberNextPageContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupLineNumberPlusContext
- func (s *ReportGroupLineNumberPlusContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupLineNumberPlusContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupLineNumberPlusContext) GetParser() antlr.Parser
- func (s *ReportGroupLineNumberPlusContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupLineNumberPlusContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupLineNumberPlusContext) IsReportGroupLineNumberPlusContext()
- func (s *ReportGroupLineNumberPlusContext) PLUS() antlr.TerminalNode
- func (s *ReportGroupLineNumberPlusContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupNextGroupClauseContext
- func (s *ReportGroupNextGroupClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupNextGroupClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupNextGroupClauseContext) GROUP() antlr.TerminalNode
- func (s *ReportGroupNextGroupClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupNextGroupClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupNextGroupClauseContext) IS() antlr.TerminalNode
- func (s *ReportGroupNextGroupClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupNextGroupClauseContext) IsReportGroupNextGroupClauseContext()
- func (s *ReportGroupNextGroupClauseContext) NEXT() antlr.TerminalNode
- func (s *ReportGroupNextGroupClauseContext) ReportGroupNextGroupNextPage() IReportGroupNextGroupNextPageContext
- func (s *ReportGroupNextGroupClauseContext) ReportGroupNextGroupPlus() IReportGroupNextGroupPlusContext
- func (s *ReportGroupNextGroupClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupNextGroupNextPageContext
- func (s *ReportGroupNextGroupNextPageContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupNextGroupNextPageContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupNextGroupNextPageContext) GetParser() antlr.Parser
- func (s *ReportGroupNextGroupNextPageContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupNextGroupNextPageContext) IsReportGroupNextGroupNextPageContext()
- func (s *ReportGroupNextGroupNextPageContext) NEXT() antlr.TerminalNode
- func (s *ReportGroupNextGroupNextPageContext) PAGE() antlr.TerminalNode
- func (s *ReportGroupNextGroupNextPageContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupNextGroupPlusContext
- func (s *ReportGroupNextGroupPlusContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupNextGroupPlusContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupNextGroupPlusContext) GetParser() antlr.Parser
- func (s *ReportGroupNextGroupPlusContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupNextGroupPlusContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReportGroupNextGroupPlusContext) IsReportGroupNextGroupPlusContext()
- func (s *ReportGroupNextGroupPlusContext) PLUS() antlr.TerminalNode
- func (s *ReportGroupNextGroupPlusContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupPictureClauseContext
- func (s *ReportGroupPictureClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupPictureClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupPictureClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupPictureClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupPictureClauseContext) IS() antlr.TerminalNode
- func (*ReportGroupPictureClauseContext) IsReportGroupPictureClauseContext()
- func (s *ReportGroupPictureClauseContext) PIC() antlr.TerminalNode
- func (s *ReportGroupPictureClauseContext) PICTURE() antlr.TerminalNode
- func (s *ReportGroupPictureClauseContext) PictureString() IPictureStringContext
- func (s *ReportGroupPictureClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupResetClauseContext
- func (s *ReportGroupResetClauseContext) DataName() IDataNameContext
- func (s *ReportGroupResetClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupResetClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupResetClauseContext) FINAL() antlr.TerminalNode
- func (s *ReportGroupResetClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupResetClauseContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupResetClauseContext) IsReportGroupResetClauseContext()
- func (s *ReportGroupResetClauseContext) ON() antlr.TerminalNode
- func (s *ReportGroupResetClauseContext) RESET() antlr.TerminalNode
- func (s *ReportGroupResetClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupSignClauseContext
- func (s *ReportGroupSignClauseContext) CHARACTER() antlr.TerminalNode
- func (s *ReportGroupSignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupSignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupSignClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupSignClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupSignClauseContext) IS() antlr.TerminalNode
- func (*ReportGroupSignClauseContext) IsReportGroupSignClauseContext()
- func (s *ReportGroupSignClauseContext) LEADING() antlr.TerminalNode
- func (s *ReportGroupSignClauseContext) SEPARATE() antlr.TerminalNode
- func (s *ReportGroupSignClauseContext) SIGN() antlr.TerminalNode
- func (s *ReportGroupSignClauseContext) TRAILING() antlr.TerminalNode
- func (s *ReportGroupSignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupSourceClauseContext
- func (s *ReportGroupSourceClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupSourceClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupSourceClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupSourceClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupSourceClauseContext) IS() antlr.TerminalNode
- func (s *ReportGroupSourceClauseContext) Identifier() IIdentifierContext
- func (*ReportGroupSourceClauseContext) IsReportGroupSourceClauseContext()
- func (s *ReportGroupSourceClauseContext) SOURCE() antlr.TerminalNode
- func (s *ReportGroupSourceClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupSumClauseContext
- func (s *ReportGroupSumClauseContext) AllCOMMACHAR() []antlr.TerminalNode
- func (s *ReportGroupSumClauseContext) AllDataName() []IDataNameContext
- func (s *ReportGroupSumClauseContext) AllIdentifier() []IIdentifierContext
- func (s *ReportGroupSumClauseContext) COMMACHAR(i int) antlr.TerminalNode
- func (s *ReportGroupSumClauseContext) DataName(i int) IDataNameContext
- func (s *ReportGroupSumClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupSumClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupSumClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupSumClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupSumClauseContext) Identifier(i int) IIdentifierContext
- func (*ReportGroupSumClauseContext) IsReportGroupSumClauseContext()
- func (s *ReportGroupSumClauseContext) SUM() antlr.TerminalNode
- func (s *ReportGroupSumClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReportGroupSumClauseContext) UPON() antlr.TerminalNode
- type ReportGroupTypeClauseContext
- func (s *ReportGroupTypeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupTypeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupTypeClauseContext) IS() antlr.TerminalNode
- func (*ReportGroupTypeClauseContext) IsReportGroupTypeClauseContext()
- func (s *ReportGroupTypeClauseContext) ReportGroupTypeControlFooting() IReportGroupTypeControlFootingContext
- func (s *ReportGroupTypeClauseContext) ReportGroupTypeControlHeading() IReportGroupTypeControlHeadingContext
- func (s *ReportGroupTypeClauseContext) ReportGroupTypeDetail() IReportGroupTypeDetailContext
- func (s *ReportGroupTypeClauseContext) ReportGroupTypePageFooting() IReportGroupTypePageFootingContext
- func (s *ReportGroupTypeClauseContext) ReportGroupTypePageHeading() IReportGroupTypePageHeadingContext
- func (s *ReportGroupTypeClauseContext) ReportGroupTypeReportFooting() IReportGroupTypeReportFootingContext
- func (s *ReportGroupTypeClauseContext) ReportGroupTypeReportHeading() IReportGroupTypeReportHeadingContext
- func (s *ReportGroupTypeClauseContext) TYPE() antlr.TerminalNode
- func (s *ReportGroupTypeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypeControlFootingContext
- func (s *ReportGroupTypeControlFootingContext) CF() antlr.TerminalNode
- func (s *ReportGroupTypeControlFootingContext) CONTROL() antlr.TerminalNode
- func (s *ReportGroupTypeControlFootingContext) DataName() IDataNameContext
- func (s *ReportGroupTypeControlFootingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeControlFootingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeControlFootingContext) FINAL() antlr.TerminalNode
- func (s *ReportGroupTypeControlFootingContext) FOOTING() antlr.TerminalNode
- func (s *ReportGroupTypeControlFootingContext) GetParser() antlr.Parser
- func (s *ReportGroupTypeControlFootingContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupTypeControlFootingContext) IsReportGroupTypeControlFootingContext()
- func (s *ReportGroupTypeControlFootingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypeControlHeadingContext
- func (s *ReportGroupTypeControlHeadingContext) CH() antlr.TerminalNode
- func (s *ReportGroupTypeControlHeadingContext) CONTROL() antlr.TerminalNode
- func (s *ReportGroupTypeControlHeadingContext) DataName() IDataNameContext
- func (s *ReportGroupTypeControlHeadingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeControlHeadingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeControlHeadingContext) FINAL() antlr.TerminalNode
- func (s *ReportGroupTypeControlHeadingContext) GetParser() antlr.Parser
- func (s *ReportGroupTypeControlHeadingContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupTypeControlHeadingContext) HEADING() antlr.TerminalNode
- func (*ReportGroupTypeControlHeadingContext) IsReportGroupTypeControlHeadingContext()
- func (s *ReportGroupTypeControlHeadingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypeDetailContext
- func (s *ReportGroupTypeDetailContext) DE() antlr.TerminalNode
- func (s *ReportGroupTypeDetailContext) DETAIL() antlr.TerminalNode
- func (s *ReportGroupTypeDetailContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeDetailContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeDetailContext) GetParser() antlr.Parser
- func (s *ReportGroupTypeDetailContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupTypeDetailContext) IsReportGroupTypeDetailContext()
- func (s *ReportGroupTypeDetailContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypePageFootingContext
- func (s *ReportGroupTypePageFootingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypePageFootingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypePageFootingContext) FOOTING() antlr.TerminalNode
- func (s *ReportGroupTypePageFootingContext) GetParser() antlr.Parser
- func (s *ReportGroupTypePageFootingContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupTypePageFootingContext) IsReportGroupTypePageFootingContext()
- func (s *ReportGroupTypePageFootingContext) PAGE() antlr.TerminalNode
- func (s *ReportGroupTypePageFootingContext) PF() antlr.TerminalNode
- func (s *ReportGroupTypePageFootingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypePageHeadingContext
- func (s *ReportGroupTypePageHeadingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypePageHeadingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypePageHeadingContext) GetParser() antlr.Parser
- func (s *ReportGroupTypePageHeadingContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupTypePageHeadingContext) HEADING() antlr.TerminalNode
- func (*ReportGroupTypePageHeadingContext) IsReportGroupTypePageHeadingContext()
- func (s *ReportGroupTypePageHeadingContext) PAGE() antlr.TerminalNode
- func (s *ReportGroupTypePageHeadingContext) PH() antlr.TerminalNode
- func (s *ReportGroupTypePageHeadingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypeReportFootingContext
- func (s *ReportGroupTypeReportFootingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeReportFootingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeReportFootingContext) FOOTING() antlr.TerminalNode
- func (s *ReportGroupTypeReportFootingContext) GetParser() antlr.Parser
- func (s *ReportGroupTypeReportFootingContext) GetRuleContext() antlr.RuleContext
- func (*ReportGroupTypeReportFootingContext) IsReportGroupTypeReportFootingContext()
- func (s *ReportGroupTypeReportFootingContext) REPORT() antlr.TerminalNode
- func (s *ReportGroupTypeReportFootingContext) RF() antlr.TerminalNode
- func (s *ReportGroupTypeReportFootingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupTypeReportHeadingContext
- func (s *ReportGroupTypeReportHeadingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeReportHeadingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupTypeReportHeadingContext) GetParser() antlr.Parser
- func (s *ReportGroupTypeReportHeadingContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupTypeReportHeadingContext) HEADING() antlr.TerminalNode
- func (*ReportGroupTypeReportHeadingContext) IsReportGroupTypeReportHeadingContext()
- func (s *ReportGroupTypeReportHeadingContext) REPORT() antlr.TerminalNode
- func (s *ReportGroupTypeReportHeadingContext) RH() antlr.TerminalNode
- func (s *ReportGroupTypeReportHeadingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportGroupUsageClauseContext
- func (s *ReportGroupUsageClauseContext) DISPLAY() antlr.TerminalNode
- func (s *ReportGroupUsageClauseContext) DISPLAY_1() antlr.TerminalNode
- func (s *ReportGroupUsageClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupUsageClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupUsageClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupUsageClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupUsageClauseContext) IS() antlr.TerminalNode
- func (*ReportGroupUsageClauseContext) IsReportGroupUsageClauseContext()
- func (s *ReportGroupUsageClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReportGroupUsageClauseContext) USAGE() antlr.TerminalNode
- type ReportGroupValueClauseContext
- func (s *ReportGroupValueClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupValueClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportGroupValueClauseContext) GetParser() antlr.Parser
- func (s *ReportGroupValueClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReportGroupValueClauseContext) IS() antlr.TerminalNode
- func (*ReportGroupValueClauseContext) IsReportGroupValueClauseContext()
- func (s *ReportGroupValueClauseContext) Literal() ILiteralContext
- func (s *ReportGroupValueClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReportGroupValueClauseContext) VALUE() antlr.TerminalNode
- type ReportNameContext
- func (s *ReportNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportNameContext) GetParser() antlr.Parser
- func (s *ReportNameContext) GetRuleContext() antlr.RuleContext
- func (*ReportNameContext) IsReportNameContext()
- func (s *ReportNameContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *ReportNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReportSectionContext
- func (s *ReportSectionContext) AllReportDescription() []IReportDescriptionContext
- func (s *ReportSectionContext) DOT_FS() antlr.TerminalNode
- func (s *ReportSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReportSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReportSectionContext) GetParser() antlr.Parser
- func (s *ReportSectionContext) GetRuleContext() antlr.RuleContext
- func (*ReportSectionContext) IsReportSectionContext()
- func (s *ReportSectionContext) REPORT() antlr.TerminalNode
- func (s *ReportSectionContext) ReportDescription(i int) IReportDescriptionContext
- func (s *ReportSectionContext) SECTION() antlr.TerminalNode
- func (s *ReportSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RerunClauseContext
- func (s *RerunClauseContext) AssignmentName() IAssignmentNameContext
- func (s *RerunClauseContext) EVERY() antlr.TerminalNode
- func (s *RerunClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RerunClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RerunClauseContext) FileName() IFileNameContext
- func (s *RerunClauseContext) GetParser() antlr.Parser
- func (s *RerunClauseContext) GetRuleContext() antlr.RuleContext
- func (*RerunClauseContext) IsRerunClauseContext()
- func (s *RerunClauseContext) ON() antlr.TerminalNode
- func (s *RerunClauseContext) RERUN() antlr.TerminalNode
- func (s *RerunClauseContext) RerunEveryClock() IRerunEveryClockContext
- func (s *RerunClauseContext) RerunEveryOf() IRerunEveryOfContext
- func (s *RerunClauseContext) RerunEveryRecords() IRerunEveryRecordsContext
- func (s *RerunClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RerunEveryClockContext
- func (s *RerunEveryClockContext) CLOCK_UNITS() antlr.TerminalNode
- func (s *RerunEveryClockContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RerunEveryClockContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RerunEveryClockContext) GetParser() antlr.Parser
- func (s *RerunEveryClockContext) GetRuleContext() antlr.RuleContext
- func (s *RerunEveryClockContext) IntegerLiteral() IIntegerLiteralContext
- func (*RerunEveryClockContext) IsRerunEveryClockContext()
- func (s *RerunEveryClockContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RerunEveryOfContext
- func (s *RerunEveryOfContext) AllOF() []antlr.TerminalNode
- func (s *RerunEveryOfContext) END() antlr.TerminalNode
- func (s *RerunEveryOfContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RerunEveryOfContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RerunEveryOfContext) FileName() IFileNameContext
- func (s *RerunEveryOfContext) GetParser() antlr.Parser
- func (s *RerunEveryOfContext) GetRuleContext() antlr.RuleContext
- func (*RerunEveryOfContext) IsRerunEveryOfContext()
- func (s *RerunEveryOfContext) OF(i int) antlr.TerminalNode
- func (s *RerunEveryOfContext) REEL() antlr.TerminalNode
- func (s *RerunEveryOfContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *RerunEveryOfContext) UNIT() antlr.TerminalNode
- type RerunEveryRecordsContext
- func (s *RerunEveryRecordsContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RerunEveryRecordsContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RerunEveryRecordsContext) GetParser() antlr.Parser
- func (s *RerunEveryRecordsContext) GetRuleContext() antlr.RuleContext
- func (s *RerunEveryRecordsContext) IntegerLiteral() IIntegerLiteralContext
- func (*RerunEveryRecordsContext) IsRerunEveryRecordsContext()
- func (s *RerunEveryRecordsContext) RECORDS() antlr.TerminalNode
- func (s *RerunEveryRecordsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReserveClauseContext
- func (s *ReserveClauseContext) ALTERNATE() antlr.TerminalNode
- func (s *ReserveClauseContext) AREA() antlr.TerminalNode
- func (s *ReserveClauseContext) AREAS() antlr.TerminalNode
- func (s *ReserveClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReserveClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReserveClauseContext) GetParser() antlr.Parser
- func (s *ReserveClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReserveClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ReserveClauseContext) IsReserveClauseContext()
- func (s *ReserveClauseContext) NO() antlr.TerminalNode
- func (s *ReserveClauseContext) RESERVE() antlr.TerminalNode
- func (s *ReserveClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReserveNetworkClauseContext
- func (s *ReserveNetworkClauseContext) CAPABLE() antlr.TerminalNode
- func (s *ReserveNetworkClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReserveNetworkClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReserveNetworkClauseContext) GetParser() antlr.Parser
- func (s *ReserveNetworkClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ReserveNetworkClauseContext) IS() antlr.TerminalNode
- func (*ReserveNetworkClauseContext) IsReserveNetworkClauseContext()
- func (s *ReserveNetworkClauseContext) LIST() antlr.TerminalNode
- func (s *ReserveNetworkClauseContext) NETWORK() antlr.TerminalNode
- func (s *ReserveNetworkClauseContext) RESERVE() antlr.TerminalNode
- func (s *ReserveNetworkClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ReserveNetworkClauseContext) WORDS() antlr.TerminalNode
- type ReturnIntoContext
- func (s *ReturnIntoContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReturnIntoContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReturnIntoContext) GetParser() antlr.Parser
- func (s *ReturnIntoContext) GetRuleContext() antlr.RuleContext
- func (s *ReturnIntoContext) INTO() antlr.TerminalNode
- func (*ReturnIntoContext) IsReturnIntoContext()
- func (s *ReturnIntoContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *ReturnIntoContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ReturnStatementContext
- func (s *ReturnStatementContext) AtEndPhrase() IAtEndPhraseContext
- func (s *ReturnStatementContext) END_RETURN() antlr.TerminalNode
- func (s *ReturnStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ReturnStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ReturnStatementContext) FileName() IFileNameContext
- func (s *ReturnStatementContext) GetParser() antlr.Parser
- func (s *ReturnStatementContext) GetRuleContext() antlr.RuleContext
- func (*ReturnStatementContext) IsReturnStatementContext()
- func (s *ReturnStatementContext) NotAtEndPhrase() INotAtEndPhraseContext
- func (s *ReturnStatementContext) RECORD() antlr.TerminalNode
- func (s *ReturnStatementContext) RETURN() antlr.TerminalNode
- func (s *ReturnStatementContext) ReturnInto() IReturnIntoContext
- func (s *ReturnStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RewriteFromContext
- func (s *RewriteFromContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RewriteFromContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RewriteFromContext) FROM() antlr.TerminalNode
- func (s *RewriteFromContext) GetParser() antlr.Parser
- func (s *RewriteFromContext) GetRuleContext() antlr.RuleContext
- func (s *RewriteFromContext) Identifier() IIdentifierContext
- func (*RewriteFromContext) IsRewriteFromContext()
- func (s *RewriteFromContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RewriteStatementContext
- func (s *RewriteStatementContext) END_REWRITE() antlr.TerminalNode
- func (s *RewriteStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RewriteStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RewriteStatementContext) GetParser() antlr.Parser
- func (s *RewriteStatementContext) GetRuleContext() antlr.RuleContext
- func (s *RewriteStatementContext) InvalidKeyPhrase() IInvalidKeyPhraseContext
- func (*RewriteStatementContext) IsRewriteStatementContext()
- func (s *RewriteStatementContext) NotInvalidKeyPhrase() INotInvalidKeyPhraseContext
- func (s *RewriteStatementContext) REWRITE() antlr.TerminalNode
- func (s *RewriteStatementContext) RecordName() IRecordNameContext
- func (s *RewriteStatementContext) RewriteFrom() IRewriteFromContext
- func (s *RewriteStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type RoutineNameContext
- func (s *RoutineNameContext) CobolWord() ICobolWordContext
- func (s *RoutineNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *RoutineNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *RoutineNameContext) GetParser() antlr.Parser
- func (s *RoutineNameContext) GetRuleContext() antlr.RuleContext
- func (*RoutineNameContext) IsRoutineNameContext()
- func (s *RoutineNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SameClauseContext
- func (s *SameClauseContext) AREA() antlr.TerminalNode
- func (s *SameClauseContext) AllFileName() []IFileNameContext
- func (s *SameClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SameClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SameClauseContext) FOR() antlr.TerminalNode
- func (s *SameClauseContext) FileName(i int) IFileNameContext
- func (s *SameClauseContext) GetParser() antlr.Parser
- func (s *SameClauseContext) GetRuleContext() antlr.RuleContext
- func (*SameClauseContext) IsSameClauseContext()
- func (s *SameClauseContext) RECORD() antlr.TerminalNode
- func (s *SameClauseContext) SAME() antlr.TerminalNode
- func (s *SameClauseContext) SORT() antlr.TerminalNode
- func (s *SameClauseContext) SORT_MERGE() antlr.TerminalNode
- func (s *SameClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionAutoClauseContext
- func (s *ScreenDescriptionAutoClauseContext) AUTO() antlr.TerminalNode
- func (s *ScreenDescriptionAutoClauseContext) AUTO_SKIP() antlr.TerminalNode
- func (s *ScreenDescriptionAutoClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionAutoClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionAutoClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionAutoClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionAutoClauseContext) IsScreenDescriptionAutoClauseContext()
- func (s *ScreenDescriptionAutoClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionBackgroundColorClauseContext
- func (s *ScreenDescriptionBackgroundColorClauseContext) BACKGROUND_COLOR() antlr.TerminalNode
- func (s *ScreenDescriptionBackgroundColorClauseContext) BACKGROUND_COLOUR() antlr.TerminalNode
- func (s *ScreenDescriptionBackgroundColorClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBackgroundColorClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBackgroundColorClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionBackgroundColorClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionBackgroundColorClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionBackgroundColorClauseContext) Identifier() IIdentifierContext
- func (s *ScreenDescriptionBackgroundColorClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ScreenDescriptionBackgroundColorClauseContext) IsScreenDescriptionBackgroundColorClauseContext()
- func (s *ScreenDescriptionBackgroundColorClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionBellClauseContext
- func (s *ScreenDescriptionBellClauseContext) BEEP() antlr.TerminalNode
- func (s *ScreenDescriptionBellClauseContext) BELL() antlr.TerminalNode
- func (s *ScreenDescriptionBellClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBellClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBellClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionBellClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionBellClauseContext) IsScreenDescriptionBellClauseContext()
- func (s *ScreenDescriptionBellClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionBlankClauseContext
- func (s *ScreenDescriptionBlankClauseContext) BLANK() antlr.TerminalNode
- func (s *ScreenDescriptionBlankClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBlankClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBlankClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionBlankClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionBlankClauseContext) IsScreenDescriptionBlankClauseContext()
- func (s *ScreenDescriptionBlankClauseContext) LINE() antlr.TerminalNode
- func (s *ScreenDescriptionBlankClauseContext) SCREEN() antlr.TerminalNode
- func (s *ScreenDescriptionBlankClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionBlankWhenZeroClauseContext
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) BLANK() antlr.TerminalNode
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionBlankWhenZeroClauseContext) IsScreenDescriptionBlankWhenZeroClauseContext()
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) WHEN() antlr.TerminalNode
- func (s *ScreenDescriptionBlankWhenZeroClauseContext) ZERO() antlr.TerminalNode
- type ScreenDescriptionBlinkClauseContext
- func (s *ScreenDescriptionBlinkClauseContext) BLINK() antlr.TerminalNode
- func (s *ScreenDescriptionBlinkClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBlinkClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionBlinkClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionBlinkClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionBlinkClauseContext) IsScreenDescriptionBlinkClauseContext()
- func (s *ScreenDescriptionBlinkClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionColumnClauseContext
- func (s *ScreenDescriptionColumnClauseContext) COL() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) COLUMN() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionColumnClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionColumnClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionColumnClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionColumnClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) Identifier() IIdentifierContext
- func (s *ScreenDescriptionColumnClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ScreenDescriptionColumnClauseContext) IsScreenDescriptionColumnClauseContext()
- func (s *ScreenDescriptionColumnClauseContext) MINUSCHAR() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) NUMBER() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) PLUS() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) PLUSCHAR() antlr.TerminalNode
- func (s *ScreenDescriptionColumnClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionControlClauseContext
- func (s *ScreenDescriptionControlClauseContext) CONTROL() antlr.TerminalNode
- func (s *ScreenDescriptionControlClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionControlClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionControlClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionControlClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionControlClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionControlClauseContext) Identifier() IIdentifierContext
- func (*ScreenDescriptionControlClauseContext) IsScreenDescriptionControlClauseContext()
- func (s *ScreenDescriptionControlClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionEntryContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionAutoClause() []IScreenDescriptionAutoClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionBackgroundColorClause() []IScreenDescriptionBackgroundColorClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionBellClause() []IScreenDescriptionBellClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionBlankClause() []IScreenDescriptionBlankClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionBlankWhenZeroClause() []IScreenDescriptionBlankWhenZeroClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionBlinkClause() []IScreenDescriptionBlinkClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionColumnClause() []IScreenDescriptionColumnClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionControlClause() []IScreenDescriptionControlClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionEraseClause() []IScreenDescriptionEraseClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionForegroundColorClause() []IScreenDescriptionForegroundColorClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionFromClause() []IScreenDescriptionFromClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionFullClause() []IScreenDescriptionFullClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionGridClause() []IScreenDescriptionGridClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionJustifiedClause() []IScreenDescriptionJustifiedClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionLightClause() []IScreenDescriptionLightClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionLineClause() []IScreenDescriptionLineClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionPictureClause() []IScreenDescriptionPictureClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionPromptClause() []IScreenDescriptionPromptClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionRequiredClause() []IScreenDescriptionRequiredClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionReverseVideoClause() []IScreenDescriptionReverseVideoClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionSecureClause() []IScreenDescriptionSecureClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionSignClause() []IScreenDescriptionSignClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionSizeClause() []IScreenDescriptionSizeClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionUnderlineClause() []IScreenDescriptionUnderlineClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionUsageClause() []IScreenDescriptionUsageClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionUsingClause() []IScreenDescriptionUsingClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionValueClause() []IScreenDescriptionValueClauseContext
- func (s *ScreenDescriptionEntryContext) AllScreenDescriptionZeroFillClause() []IScreenDescriptionZeroFillClauseContext
- func (s *ScreenDescriptionEntryContext) DOT_FS() antlr.TerminalNode
- func (s *ScreenDescriptionEntryContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionEntryContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionEntryContext) FILLER() antlr.TerminalNode
- func (s *ScreenDescriptionEntryContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionEntryContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionEntryContext) INTEGERLITERAL() antlr.TerminalNode
- func (*ScreenDescriptionEntryContext) IsScreenDescriptionEntryContext()
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionAutoClause(i int) IScreenDescriptionAutoClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionBackgroundColorClause(i int) IScreenDescriptionBackgroundColorClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionBellClause(i int) IScreenDescriptionBellClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionBlankClause(i int) IScreenDescriptionBlankClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionBlankWhenZeroClause(i int) IScreenDescriptionBlankWhenZeroClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionBlinkClause(i int) IScreenDescriptionBlinkClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionColumnClause(i int) IScreenDescriptionColumnClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionControlClause(i int) IScreenDescriptionControlClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionEraseClause(i int) IScreenDescriptionEraseClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionForegroundColorClause(i int) IScreenDescriptionForegroundColorClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionFromClause(i int) IScreenDescriptionFromClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionFullClause(i int) IScreenDescriptionFullClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionGridClause(i int) IScreenDescriptionGridClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionJustifiedClause(i int) IScreenDescriptionJustifiedClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionLightClause(i int) IScreenDescriptionLightClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionLineClause(i int) IScreenDescriptionLineClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionPictureClause(i int) IScreenDescriptionPictureClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionPromptClause(i int) IScreenDescriptionPromptClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionRequiredClause(i int) IScreenDescriptionRequiredClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionReverseVideoClause(i int) IScreenDescriptionReverseVideoClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionSecureClause(i int) IScreenDescriptionSecureClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionSignClause(i int) IScreenDescriptionSignClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionSizeClause(i int) IScreenDescriptionSizeClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionUnderlineClause(i int) IScreenDescriptionUnderlineClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionUsageClause(i int) IScreenDescriptionUsageClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionUsingClause(i int) IScreenDescriptionUsingClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionValueClause(i int) IScreenDescriptionValueClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenDescriptionZeroFillClause(i int) IScreenDescriptionZeroFillClauseContext
- func (s *ScreenDescriptionEntryContext) ScreenName() IScreenNameContext
- func (s *ScreenDescriptionEntryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionEraseClauseContext
- func (s *ScreenDescriptionEraseClauseContext) EOL() antlr.TerminalNode
- func (s *ScreenDescriptionEraseClauseContext) EOS() antlr.TerminalNode
- func (s *ScreenDescriptionEraseClauseContext) ERASE() antlr.TerminalNode
- func (s *ScreenDescriptionEraseClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionEraseClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionEraseClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionEraseClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionEraseClauseContext) IsScreenDescriptionEraseClauseContext()
- func (s *ScreenDescriptionEraseClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionForegroundColorClauseContext
- func (s *ScreenDescriptionForegroundColorClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionForegroundColorClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionForegroundColorClauseContext) FOREGROUND_COLOR() antlr.TerminalNode
- func (s *ScreenDescriptionForegroundColorClauseContext) FOREGROUND_COLOUR() antlr.TerminalNode
- func (s *ScreenDescriptionForegroundColorClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionForegroundColorClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionForegroundColorClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionForegroundColorClauseContext) Identifier() IIdentifierContext
- func (s *ScreenDescriptionForegroundColorClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ScreenDescriptionForegroundColorClauseContext) IsScreenDescriptionForegroundColorClauseContext()
- func (s *ScreenDescriptionForegroundColorClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionFromClauseContext
- func (s *ScreenDescriptionFromClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionFromClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionFromClauseContext) FROM() antlr.TerminalNode
- func (s *ScreenDescriptionFromClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionFromClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionFromClauseContext) Identifier() IIdentifierContext
- func (*ScreenDescriptionFromClauseContext) IsScreenDescriptionFromClauseContext()
- func (s *ScreenDescriptionFromClauseContext) Literal() ILiteralContext
- func (s *ScreenDescriptionFromClauseContext) ScreenDescriptionToClause() IScreenDescriptionToClauseContext
- func (s *ScreenDescriptionFromClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionFullClauseContext
- func (s *ScreenDescriptionFullClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionFullClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionFullClauseContext) FULL() antlr.TerminalNode
- func (s *ScreenDescriptionFullClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionFullClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionFullClauseContext) IsScreenDescriptionFullClauseContext()
- func (s *ScreenDescriptionFullClauseContext) LENGTH_CHECK() antlr.TerminalNode
- func (s *ScreenDescriptionFullClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionGridClauseContext
- func (s *ScreenDescriptionGridClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionGridClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionGridClauseContext) GRID() antlr.TerminalNode
- func (s *ScreenDescriptionGridClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionGridClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionGridClauseContext) IsScreenDescriptionGridClauseContext()
- func (s *ScreenDescriptionGridClauseContext) LEFTLINE() antlr.TerminalNode
- func (s *ScreenDescriptionGridClauseContext) OVERLINE() antlr.TerminalNode
- func (s *ScreenDescriptionGridClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionJustifiedClauseContext
- func (s *ScreenDescriptionJustifiedClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionJustifiedClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionJustifiedClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionJustifiedClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionJustifiedClauseContext) IsScreenDescriptionJustifiedClauseContext()
- func (s *ScreenDescriptionJustifiedClauseContext) JUST() antlr.TerminalNode
- func (s *ScreenDescriptionJustifiedClauseContext) JUSTIFIED() antlr.TerminalNode
- func (s *ScreenDescriptionJustifiedClauseContext) RIGHT() antlr.TerminalNode
- func (s *ScreenDescriptionJustifiedClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionLightClauseContext
- func (s *ScreenDescriptionLightClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionLightClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionLightClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionLightClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionLightClauseContext) HIGHLIGHT() antlr.TerminalNode
- func (*ScreenDescriptionLightClauseContext) IsScreenDescriptionLightClauseContext()
- func (s *ScreenDescriptionLightClauseContext) LOWLIGHT() antlr.TerminalNode
- func (s *ScreenDescriptionLightClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionLineClauseContext
- func (s *ScreenDescriptionLineClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionLineClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionLineClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionLineClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionLineClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionLineClauseContext) Identifier() IIdentifierContext
- func (s *ScreenDescriptionLineClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ScreenDescriptionLineClauseContext) IsScreenDescriptionLineClauseContext()
- func (s *ScreenDescriptionLineClauseContext) LINE() antlr.TerminalNode
- func (s *ScreenDescriptionLineClauseContext) MINUSCHAR() antlr.TerminalNode
- func (s *ScreenDescriptionLineClauseContext) NUMBER() antlr.TerminalNode
- func (s *ScreenDescriptionLineClauseContext) PLUS() antlr.TerminalNode
- func (s *ScreenDescriptionLineClauseContext) PLUSCHAR() antlr.TerminalNode
- func (s *ScreenDescriptionLineClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionPictureClauseContext
- func (s *ScreenDescriptionPictureClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionPictureClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionPictureClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionPictureClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionPictureClauseContext) IS() antlr.TerminalNode
- func (*ScreenDescriptionPictureClauseContext) IsScreenDescriptionPictureClauseContext()
- func (s *ScreenDescriptionPictureClauseContext) PIC() antlr.TerminalNode
- func (s *ScreenDescriptionPictureClauseContext) PICTURE() antlr.TerminalNode
- func (s *ScreenDescriptionPictureClauseContext) PictureString() IPictureStringContext
- func (s *ScreenDescriptionPictureClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionPromptClauseContext
- func (s *ScreenDescriptionPromptClauseContext) CHARACTER() antlr.TerminalNode
- func (s *ScreenDescriptionPromptClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionPromptClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionPromptClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionPromptClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionPromptClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionPromptClauseContext) Identifier() IIdentifierContext
- func (*ScreenDescriptionPromptClauseContext) IsScreenDescriptionPromptClauseContext()
- func (s *ScreenDescriptionPromptClauseContext) Literal() ILiteralContext
- func (s *ScreenDescriptionPromptClauseContext) PROMPT() antlr.TerminalNode
- func (s *ScreenDescriptionPromptClauseContext) ScreenDescriptionPromptOccursClause() IScreenDescriptionPromptOccursClauseContext
- func (s *ScreenDescriptionPromptClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionPromptOccursClauseContext
- func (s *ScreenDescriptionPromptOccursClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionPromptOccursClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionPromptOccursClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionPromptOccursClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionPromptOccursClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ScreenDescriptionPromptOccursClauseContext) IsScreenDescriptionPromptOccursClauseContext()
- func (s *ScreenDescriptionPromptOccursClauseContext) OCCURS() antlr.TerminalNode
- func (s *ScreenDescriptionPromptOccursClauseContext) TIMES() antlr.TerminalNode
- func (s *ScreenDescriptionPromptOccursClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionRequiredClauseContext
- func (s *ScreenDescriptionRequiredClauseContext) EMPTY_CHECK() antlr.TerminalNode
- func (s *ScreenDescriptionRequiredClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionRequiredClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionRequiredClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionRequiredClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionRequiredClauseContext) IsScreenDescriptionRequiredClauseContext()
- func (s *ScreenDescriptionRequiredClauseContext) REQUIRED() antlr.TerminalNode
- func (s *ScreenDescriptionRequiredClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionReverseVideoClauseContext
- func (s *ScreenDescriptionReverseVideoClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionReverseVideoClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionReverseVideoClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionReverseVideoClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionReverseVideoClauseContext) IsScreenDescriptionReverseVideoClauseContext()
- func (s *ScreenDescriptionReverseVideoClauseContext) REVERSE_VIDEO() antlr.TerminalNode
- func (s *ScreenDescriptionReverseVideoClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionSecureClauseContext
- func (s *ScreenDescriptionSecureClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionSecureClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionSecureClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionSecureClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionSecureClauseContext) IsScreenDescriptionSecureClauseContext()
- func (s *ScreenDescriptionSecureClauseContext) NO_ECHO() antlr.TerminalNode
- func (s *ScreenDescriptionSecureClauseContext) SECURE() antlr.TerminalNode
- func (s *ScreenDescriptionSecureClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionSignClauseContext
- func (s *ScreenDescriptionSignClauseContext) CHARACTER() antlr.TerminalNode
- func (s *ScreenDescriptionSignClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionSignClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionSignClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionSignClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionSignClauseContext) IS() antlr.TerminalNode
- func (*ScreenDescriptionSignClauseContext) IsScreenDescriptionSignClauseContext()
- func (s *ScreenDescriptionSignClauseContext) LEADING() antlr.TerminalNode
- func (s *ScreenDescriptionSignClauseContext) SEPARATE() antlr.TerminalNode
- func (s *ScreenDescriptionSignClauseContext) SIGN() antlr.TerminalNode
- func (s *ScreenDescriptionSignClauseContext) TRAILING() antlr.TerminalNode
- func (s *ScreenDescriptionSignClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionSizeClauseContext
- func (s *ScreenDescriptionSizeClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionSizeClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionSizeClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionSizeClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionSizeClauseContext) IS() antlr.TerminalNode
- func (s *ScreenDescriptionSizeClauseContext) Identifier() IIdentifierContext
- func (s *ScreenDescriptionSizeClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*ScreenDescriptionSizeClauseContext) IsScreenDescriptionSizeClauseContext()
- func (s *ScreenDescriptionSizeClauseContext) SIZE() antlr.TerminalNode
- func (s *ScreenDescriptionSizeClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionToClauseContext
- func (s *ScreenDescriptionToClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionToClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionToClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionToClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionToClauseContext) Identifier() IIdentifierContext
- func (*ScreenDescriptionToClauseContext) IsScreenDescriptionToClauseContext()
- func (s *ScreenDescriptionToClauseContext) TO() antlr.TerminalNode
- func (s *ScreenDescriptionToClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenDescriptionUnderlineClauseContext
- func (s *ScreenDescriptionUnderlineClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionUnderlineClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionUnderlineClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionUnderlineClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionUnderlineClauseContext) IsScreenDescriptionUnderlineClauseContext()
- func (s *ScreenDescriptionUnderlineClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ScreenDescriptionUnderlineClauseContext) UNDERLINE() antlr.TerminalNode
- type ScreenDescriptionUsageClauseContext
- func (s *ScreenDescriptionUsageClauseContext) DISPLAY() antlr.TerminalNode
- func (s *ScreenDescriptionUsageClauseContext) DISPLAY_1() antlr.TerminalNode
- func (s *ScreenDescriptionUsageClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionUsageClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionUsageClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionUsageClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionUsageClauseContext) IS() antlr.TerminalNode
- func (*ScreenDescriptionUsageClauseContext) IsScreenDescriptionUsageClauseContext()
- func (s *ScreenDescriptionUsageClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ScreenDescriptionUsageClauseContext) USAGE() antlr.TerminalNode
- type ScreenDescriptionUsingClauseContext
- func (s *ScreenDescriptionUsingClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionUsingClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionUsingClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionUsingClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionUsingClauseContext) Identifier() IIdentifierContext
- func (*ScreenDescriptionUsingClauseContext) IsScreenDescriptionUsingClauseContext()
- func (s *ScreenDescriptionUsingClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ScreenDescriptionUsingClauseContext) USING() antlr.TerminalNode
- type ScreenDescriptionValueClauseContext
- func (s *ScreenDescriptionValueClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionValueClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionValueClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionValueClauseContext) GetRuleContext() antlr.RuleContext
- func (s *ScreenDescriptionValueClauseContext) IS() antlr.TerminalNode
- func (*ScreenDescriptionValueClauseContext) IsScreenDescriptionValueClauseContext()
- func (s *ScreenDescriptionValueClauseContext) Literal() ILiteralContext
- func (s *ScreenDescriptionValueClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ScreenDescriptionValueClauseContext) VALUE() antlr.TerminalNode
- type ScreenDescriptionZeroFillClauseContext
- func (s *ScreenDescriptionZeroFillClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionZeroFillClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenDescriptionZeroFillClauseContext) GetParser() antlr.Parser
- func (s *ScreenDescriptionZeroFillClauseContext) GetRuleContext() antlr.RuleContext
- func (*ScreenDescriptionZeroFillClauseContext) IsScreenDescriptionZeroFillClauseContext()
- func (s *ScreenDescriptionZeroFillClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ScreenDescriptionZeroFillClauseContext) ZERO_FILL() antlr.TerminalNode
- type ScreenNameContext
- func (s *ScreenNameContext) CobolWord() ICobolWordContext
- func (s *ScreenNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenNameContext) GetParser() antlr.Parser
- func (s *ScreenNameContext) GetRuleContext() antlr.RuleContext
- func (*ScreenNameContext) IsScreenNameContext()
- func (s *ScreenNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type ScreenSectionContext
- func (s *ScreenSectionContext) AllScreenDescriptionEntry() []IScreenDescriptionEntryContext
- func (s *ScreenSectionContext) DOT_FS() antlr.TerminalNode
- func (s *ScreenSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ScreenSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ScreenSectionContext) GetParser() antlr.Parser
- func (s *ScreenSectionContext) GetRuleContext() antlr.RuleContext
- func (*ScreenSectionContext) IsScreenSectionContext()
- func (s *ScreenSectionContext) SCREEN() antlr.TerminalNode
- func (s *ScreenSectionContext) SECTION() antlr.TerminalNode
- func (s *ScreenSectionContext) ScreenDescriptionEntry(i int) IScreenDescriptionEntryContext
- func (s *ScreenSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SearchStatementContext
- func (s *SearchStatementContext) ALL() antlr.TerminalNode
- func (s *SearchStatementContext) AllSearchWhen() []ISearchWhenContext
- func (s *SearchStatementContext) AtEndPhrase() IAtEndPhraseContext
- func (s *SearchStatementContext) END_SEARCH() antlr.TerminalNode
- func (s *SearchStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SearchStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SearchStatementContext) GetParser() antlr.Parser
- func (s *SearchStatementContext) GetRuleContext() antlr.RuleContext
- func (*SearchStatementContext) IsSearchStatementContext()
- func (s *SearchStatementContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *SearchStatementContext) SEARCH() antlr.TerminalNode
- func (s *SearchStatementContext) SearchVarying() ISearchVaryingContext
- func (s *SearchStatementContext) SearchWhen(i int) ISearchWhenContext
- func (s *SearchStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SearchVaryingContext
- func (s *SearchVaryingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SearchVaryingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SearchVaryingContext) GetParser() antlr.Parser
- func (s *SearchVaryingContext) GetRuleContext() antlr.RuleContext
- func (*SearchVaryingContext) IsSearchVaryingContext()
- func (s *SearchVaryingContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *SearchVaryingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SearchVaryingContext) VARYING() antlr.TerminalNode
- type SearchWhenContext
- func (s *SearchWhenContext) AllStatement() []IStatementContext
- func (s *SearchWhenContext) Condition() IConditionContext
- func (s *SearchWhenContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SearchWhenContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SearchWhenContext) GetParser() antlr.Parser
- func (s *SearchWhenContext) GetRuleContext() antlr.RuleContext
- func (*SearchWhenContext) IsSearchWhenContext()
- func (s *SearchWhenContext) NEXT() antlr.TerminalNode
- func (s *SearchWhenContext) SENTENCE() antlr.TerminalNode
- func (s *SearchWhenContext) Statement(i int) IStatementContext
- func (s *SearchWhenContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SearchWhenContext) WHEN() antlr.TerminalNode
- type SectionNameContext
- func (s *SectionNameContext) CobolWord() ICobolWordContext
- func (s *SectionNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SectionNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SectionNameContext) GetParser() antlr.Parser
- func (s *SectionNameContext) GetRuleContext() antlr.RuleContext
- func (s *SectionNameContext) IntegerLiteral() IIntegerLiteralContext
- func (*SectionNameContext) IsSectionNameContext()
- func (s *SectionNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SecurityParagraphContext
- func (s *SecurityParagraphContext) CommentEntry() ICommentEntryContext
- func (s *SecurityParagraphContext) DOT_FS() antlr.TerminalNode
- func (s *SecurityParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SecurityParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SecurityParagraphContext) GetParser() antlr.Parser
- func (s *SecurityParagraphContext) GetRuleContext() antlr.RuleContext
- func (*SecurityParagraphContext) IsSecurityParagraphContext()
- func (s *SecurityParagraphContext) SECURITY() antlr.TerminalNode
- func (s *SecurityParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SegmentLimitClauseContext
- func (s *SegmentLimitClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SegmentLimitClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SegmentLimitClauseContext) GetParser() antlr.Parser
- func (s *SegmentLimitClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SegmentLimitClauseContext) IS() antlr.TerminalNode
- func (s *SegmentLimitClauseContext) IntegerLiteral() IIntegerLiteralContext
- func (*SegmentLimitClauseContext) IsSegmentLimitClauseContext()
- func (s *SegmentLimitClauseContext) SEGMENT_LIMIT() antlr.TerminalNode
- func (s *SegmentLimitClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SelectClauseContext
- func (s *SelectClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SelectClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SelectClauseContext) FileName() IFileNameContext
- func (s *SelectClauseContext) GetParser() antlr.Parser
- func (s *SelectClauseContext) GetRuleContext() antlr.RuleContext
- func (*SelectClauseContext) IsSelectClauseContext()
- func (s *SelectClauseContext) OPTIONAL() antlr.TerminalNode
- func (s *SelectClauseContext) SELECT() antlr.TerminalNode
- func (s *SelectClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendAdvancingLinesContext
- func (s *SendAdvancingLinesContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingLinesContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingLinesContext) GetParser() antlr.Parser
- func (s *SendAdvancingLinesContext) GetRuleContext() antlr.RuleContext
- func (s *SendAdvancingLinesContext) Identifier() IIdentifierContext
- func (*SendAdvancingLinesContext) IsSendAdvancingLinesContext()
- func (s *SendAdvancingLinesContext) LINE() antlr.TerminalNode
- func (s *SendAdvancingLinesContext) LINES() antlr.TerminalNode
- func (s *SendAdvancingLinesContext) Literal() ILiteralContext
- func (s *SendAdvancingLinesContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendAdvancingMnemonicContext
- func (s *SendAdvancingMnemonicContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingMnemonicContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingMnemonicContext) GetParser() antlr.Parser
- func (s *SendAdvancingMnemonicContext) GetRuleContext() antlr.RuleContext
- func (*SendAdvancingMnemonicContext) IsSendAdvancingMnemonicContext()
- func (s *SendAdvancingMnemonicContext) MnemonicName() IMnemonicNameContext
- func (s *SendAdvancingMnemonicContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendAdvancingPageContext
- func (s *SendAdvancingPageContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingPageContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingPageContext) GetParser() antlr.Parser
- func (s *SendAdvancingPageContext) GetRuleContext() antlr.RuleContext
- func (*SendAdvancingPageContext) IsSendAdvancingPageContext()
- func (s *SendAdvancingPageContext) PAGE() antlr.TerminalNode
- func (s *SendAdvancingPageContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendAdvancingPhraseContext
- func (s *SendAdvancingPhraseContext) ADVANCING() antlr.TerminalNode
- func (s *SendAdvancingPhraseContext) AFTER() antlr.TerminalNode
- func (s *SendAdvancingPhraseContext) BEFORE() antlr.TerminalNode
- func (s *SendAdvancingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendAdvancingPhraseContext) GetParser() antlr.Parser
- func (s *SendAdvancingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*SendAdvancingPhraseContext) IsSendAdvancingPhraseContext()
- func (s *SendAdvancingPhraseContext) SendAdvancingLines() ISendAdvancingLinesContext
- func (s *SendAdvancingPhraseContext) SendAdvancingMnemonic() ISendAdvancingMnemonicContext
- func (s *SendAdvancingPhraseContext) SendAdvancingPage() ISendAdvancingPageContext
- func (s *SendAdvancingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendFromPhraseContext
- func (s *SendFromPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendFromPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendFromPhraseContext) FROM() antlr.TerminalNode
- func (s *SendFromPhraseContext) GetParser() antlr.Parser
- func (s *SendFromPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *SendFromPhraseContext) Identifier() IIdentifierContext
- func (*SendFromPhraseContext) IsSendFromPhraseContext()
- func (s *SendFromPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendReplacingPhraseContext
- func (s *SendReplacingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendReplacingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendReplacingPhraseContext) GetParser() antlr.Parser
- func (s *SendReplacingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*SendReplacingPhraseContext) IsSendReplacingPhraseContext()
- func (s *SendReplacingPhraseContext) LINE() antlr.TerminalNode
- func (s *SendReplacingPhraseContext) REPLACING() antlr.TerminalNode
- func (s *SendReplacingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendStatementAsyncContext
- func (s *SendStatementAsyncContext) BOTTOM() antlr.TerminalNode
- func (s *SendStatementAsyncContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendStatementAsyncContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendStatementAsyncContext) GetParser() antlr.Parser
- func (s *SendStatementAsyncContext) GetRuleContext() antlr.RuleContext
- func (s *SendStatementAsyncContext) Identifier() IIdentifierContext
- func (*SendStatementAsyncContext) IsSendStatementAsyncContext()
- func (s *SendStatementAsyncContext) TO() antlr.TerminalNode
- func (s *SendStatementAsyncContext) TOP() antlr.TerminalNode
- func (s *SendStatementAsyncContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendStatementContext
- func (s *SendStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendStatementContext) GetParser() antlr.Parser
- func (s *SendStatementContext) GetRuleContext() antlr.RuleContext
- func (*SendStatementContext) IsSendStatementContext()
- func (s *SendStatementContext) NotOnExceptionClause() INotOnExceptionClauseContext
- func (s *SendStatementContext) OnExceptionClause() IOnExceptionClauseContext
- func (s *SendStatementContext) SEND() antlr.TerminalNode
- func (s *SendStatementContext) SendStatementAsync() ISendStatementAsyncContext
- func (s *SendStatementContext) SendStatementSync() ISendStatementSyncContext
- func (s *SendStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendStatementSyncContext
- func (s *SendStatementSyncContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendStatementSyncContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendStatementSyncContext) GetParser() antlr.Parser
- func (s *SendStatementSyncContext) GetRuleContext() antlr.RuleContext
- func (s *SendStatementSyncContext) Identifier() IIdentifierContext
- func (*SendStatementSyncContext) IsSendStatementSyncContext()
- func (s *SendStatementSyncContext) Literal() ILiteralContext
- func (s *SendStatementSyncContext) SendAdvancingPhrase() ISendAdvancingPhraseContext
- func (s *SendStatementSyncContext) SendFromPhrase() ISendFromPhraseContext
- func (s *SendStatementSyncContext) SendReplacingPhrase() ISendReplacingPhraseContext
- func (s *SendStatementSyncContext) SendWithPhrase() ISendWithPhraseContext
- func (s *SendStatementSyncContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SendWithPhraseContext
- func (s *SendWithPhraseContext) EGI() antlr.TerminalNode
- func (s *SendWithPhraseContext) EMI() antlr.TerminalNode
- func (s *SendWithPhraseContext) ESI() antlr.TerminalNode
- func (s *SendWithPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SendWithPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SendWithPhraseContext) GetParser() antlr.Parser
- func (s *SendWithPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *SendWithPhraseContext) Identifier() IIdentifierContext
- func (*SendWithPhraseContext) IsSendWithPhraseContext()
- func (s *SendWithPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SendWithPhraseContext) WITH() antlr.TerminalNode
- type SentenceContext
- func (s *SentenceContext) AllStatement() []IStatementContext
- func (s *SentenceContext) DOT_FS() antlr.TerminalNode
- func (s *SentenceContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SentenceContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SentenceContext) GetParser() antlr.Parser
- func (s *SentenceContext) GetRuleContext() antlr.RuleContext
- func (*SentenceContext) IsSentenceContext()
- func (s *SentenceContext) Statement(i int) IStatementContext
- func (s *SentenceContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SetByValueContext
- func (s *SetByValueContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SetByValueContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SetByValueContext) GetParser() antlr.Parser
- func (s *SetByValueContext) GetRuleContext() antlr.RuleContext
- func (s *SetByValueContext) Identifier() IIdentifierContext
- func (*SetByValueContext) IsSetByValueContext()
- func (s *SetByValueContext) Literal() ILiteralContext
- func (s *SetByValueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SetStatementContext
- func (s *SetStatementContext) AllSetToStatement() []ISetToStatementContext
- func (s *SetStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SetStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SetStatementContext) GetParser() antlr.Parser
- func (s *SetStatementContext) GetRuleContext() antlr.RuleContext
- func (*SetStatementContext) IsSetStatementContext()
- func (s *SetStatementContext) SET() antlr.TerminalNode
- func (s *SetStatementContext) SetToStatement(i int) ISetToStatementContext
- func (s *SetStatementContext) SetUpDownByStatement() ISetUpDownByStatementContext
- func (s *SetStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SetToContext
- func (s *SetToContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SetToContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SetToContext) GetParser() antlr.Parser
- func (s *SetToContext) GetRuleContext() antlr.RuleContext
- func (s *SetToContext) Identifier() IIdentifierContext
- func (*SetToContext) IsSetToContext()
- func (s *SetToContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SetToStatementContext
- func (s *SetToStatementContext) AllSetTo() []ISetToContext
- func (s *SetToStatementContext) AllSetToValue() []ISetToValueContext
- func (s *SetToStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SetToStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SetToStatementContext) GetParser() antlr.Parser
- func (s *SetToStatementContext) GetRuleContext() antlr.RuleContext
- func (*SetToStatementContext) IsSetToStatementContext()
- func (s *SetToStatementContext) SetTo(i int) ISetToContext
- func (s *SetToStatementContext) SetToValue(i int) ISetToValueContext
- func (s *SetToStatementContext) TO() antlr.TerminalNode
- func (s *SetToStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SetToValueContext
- func (s *SetToValueContext) ENTRY() antlr.TerminalNode
- func (s *SetToValueContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SetToValueContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SetToValueContext) GetParser() antlr.Parser
- func (s *SetToValueContext) GetRuleContext() antlr.RuleContext
- func (s *SetToValueContext) Identifier() IIdentifierContext
- func (*SetToValueContext) IsSetToValueContext()
- func (s *SetToValueContext) Literal() ILiteralContext
- func (s *SetToValueContext) OFF() antlr.TerminalNode
- func (s *SetToValueContext) ON() antlr.TerminalNode
- func (s *SetToValueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SetUpDownByStatementContext
- func (s *SetUpDownByStatementContext) AllSetTo() []ISetToContext
- func (s *SetUpDownByStatementContext) BY() antlr.TerminalNode
- func (s *SetUpDownByStatementContext) DOWN() antlr.TerminalNode
- func (s *SetUpDownByStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SetUpDownByStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SetUpDownByStatementContext) GetParser() antlr.Parser
- func (s *SetUpDownByStatementContext) GetRuleContext() antlr.RuleContext
- func (*SetUpDownByStatementContext) IsSetUpDownByStatementContext()
- func (s *SetUpDownByStatementContext) SetByValue() ISetByValueContext
- func (s *SetUpDownByStatementContext) SetTo(i int) ISetToContext
- func (s *SetUpDownByStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SetUpDownByStatementContext) UP() antlr.TerminalNode
- type SimpleConditionContext
- func (s *SimpleConditionContext) ClassCondition() IClassConditionContext
- func (s *SimpleConditionContext) Condition() IConditionContext
- func (s *SimpleConditionContext) ConditionNameReference() IConditionNameReferenceContext
- func (s *SimpleConditionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SimpleConditionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SimpleConditionContext) GetParser() antlr.Parser
- func (s *SimpleConditionContext) GetRuleContext() antlr.RuleContext
- func (*SimpleConditionContext) IsSimpleConditionContext()
- func (s *SimpleConditionContext) LPARENCHAR() antlr.TerminalNode
- func (s *SimpleConditionContext) RPARENCHAR() antlr.TerminalNode
- func (s *SimpleConditionContext) RelationCondition() IRelationConditionContext
- func (s *SimpleConditionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortCollatingAlphanumericContext
- func (s *SortCollatingAlphanumericContext) ALPHANUMERIC() antlr.TerminalNode
- func (s *SortCollatingAlphanumericContext) AlphabetName() IAlphabetNameContext
- func (s *SortCollatingAlphanumericContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortCollatingAlphanumericContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortCollatingAlphanumericContext) FOR() antlr.TerminalNode
- func (s *SortCollatingAlphanumericContext) GetParser() antlr.Parser
- func (s *SortCollatingAlphanumericContext) GetRuleContext() antlr.RuleContext
- func (s *SortCollatingAlphanumericContext) IS() antlr.TerminalNode
- func (*SortCollatingAlphanumericContext) IsSortCollatingAlphanumericContext()
- func (s *SortCollatingAlphanumericContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortCollatingNationalContext
- func (s *SortCollatingNationalContext) AlphabetName() IAlphabetNameContext
- func (s *SortCollatingNationalContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortCollatingNationalContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortCollatingNationalContext) FOR() antlr.TerminalNode
- func (s *SortCollatingNationalContext) GetParser() antlr.Parser
- func (s *SortCollatingNationalContext) GetRuleContext() antlr.RuleContext
- func (s *SortCollatingNationalContext) IS() antlr.TerminalNode
- func (*SortCollatingNationalContext) IsSortCollatingNationalContext()
- func (s *SortCollatingNationalContext) NATIONAL() antlr.TerminalNode
- func (s *SortCollatingNationalContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortCollatingSequencePhraseContext
- func (s *SortCollatingSequencePhraseContext) AllAlphabetName() []IAlphabetNameContext
- func (s *SortCollatingSequencePhraseContext) AlphabetName(i int) IAlphabetNameContext
- func (s *SortCollatingSequencePhraseContext) COLLATING() antlr.TerminalNode
- func (s *SortCollatingSequencePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortCollatingSequencePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortCollatingSequencePhraseContext) GetParser() antlr.Parser
- func (s *SortCollatingSequencePhraseContext) GetRuleContext() antlr.RuleContext
- func (s *SortCollatingSequencePhraseContext) IS() antlr.TerminalNode
- func (*SortCollatingSequencePhraseContext) IsSortCollatingSequencePhraseContext()
- func (s *SortCollatingSequencePhraseContext) SEQUENCE() antlr.TerminalNode
- func (s *SortCollatingSequencePhraseContext) SortCollatingAlphanumeric() ISortCollatingAlphanumericContext
- func (s *SortCollatingSequencePhraseContext) SortCollatingNational() ISortCollatingNationalContext
- func (s *SortCollatingSequencePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortDuplicatesPhraseContext
- func (s *SortDuplicatesPhraseContext) DUPLICATES() antlr.TerminalNode
- func (s *SortDuplicatesPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortDuplicatesPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortDuplicatesPhraseContext) GetParser() antlr.Parser
- func (s *SortDuplicatesPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *SortDuplicatesPhraseContext) IN() antlr.TerminalNode
- func (*SortDuplicatesPhraseContext) IsSortDuplicatesPhraseContext()
- func (s *SortDuplicatesPhraseContext) ORDER() antlr.TerminalNode
- func (s *SortDuplicatesPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SortDuplicatesPhraseContext) WITH() antlr.TerminalNode
- type SortGivingContext
- func (s *SortGivingContext) CRUNCH() antlr.TerminalNode
- func (s *SortGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortGivingContext) FileName() IFileNameContext
- func (s *SortGivingContext) GetParser() antlr.Parser
- func (s *SortGivingContext) GetRuleContext() antlr.RuleContext
- func (*SortGivingContext) IsSortGivingContext()
- func (s *SortGivingContext) LOCK() antlr.TerminalNode
- func (s *SortGivingContext) NO() antlr.TerminalNode
- func (s *SortGivingContext) RELEASE() antlr.TerminalNode
- func (s *SortGivingContext) REMOVE() antlr.TerminalNode
- func (s *SortGivingContext) REWIND() antlr.TerminalNode
- func (s *SortGivingContext) SAVE() antlr.TerminalNode
- func (s *SortGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SortGivingContext) WITH() antlr.TerminalNode
- type SortGivingPhraseContext
- func (s *SortGivingPhraseContext) AllSortGiving() []ISortGivingContext
- func (s *SortGivingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortGivingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortGivingPhraseContext) GIVING() antlr.TerminalNode
- func (s *SortGivingPhraseContext) GetParser() antlr.Parser
- func (s *SortGivingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*SortGivingPhraseContext) IsSortGivingPhraseContext()
- func (s *SortGivingPhraseContext) SortGiving(i int) ISortGivingContext
- func (s *SortGivingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortInputProcedurePhraseContext
- func (s *SortInputProcedurePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortInputProcedurePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortInputProcedurePhraseContext) GetParser() antlr.Parser
- func (s *SortInputProcedurePhraseContext) GetRuleContext() antlr.RuleContext
- func (s *SortInputProcedurePhraseContext) INPUT() antlr.TerminalNode
- func (s *SortInputProcedurePhraseContext) IS() antlr.TerminalNode
- func (*SortInputProcedurePhraseContext) IsSortInputProcedurePhraseContext()
- func (s *SortInputProcedurePhraseContext) PROCEDURE() antlr.TerminalNode
- func (s *SortInputProcedurePhraseContext) ProcedureName() IProcedureNameContext
- func (s *SortInputProcedurePhraseContext) SortInputThrough() ISortInputThroughContext
- func (s *SortInputProcedurePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortInputThroughContext
- func (s *SortInputThroughContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortInputThroughContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortInputThroughContext) GetParser() antlr.Parser
- func (s *SortInputThroughContext) GetRuleContext() antlr.RuleContext
- func (*SortInputThroughContext) IsSortInputThroughContext()
- func (s *SortInputThroughContext) ProcedureName() IProcedureNameContext
- func (s *SortInputThroughContext) THROUGH() antlr.TerminalNode
- func (s *SortInputThroughContext) THRU() antlr.TerminalNode
- func (s *SortInputThroughContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortOnKeyClauseContext
- func (s *SortOnKeyClauseContext) ASCENDING() antlr.TerminalNode
- func (s *SortOnKeyClauseContext) AllQualifiedDataName() []IQualifiedDataNameContext
- func (s *SortOnKeyClauseContext) DESCENDING() antlr.TerminalNode
- func (s *SortOnKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortOnKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortOnKeyClauseContext) GetParser() antlr.Parser
- func (s *SortOnKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (*SortOnKeyClauseContext) IsSortOnKeyClauseContext()
- func (s *SortOnKeyClauseContext) KEY() antlr.TerminalNode
- func (s *SortOnKeyClauseContext) ON() antlr.TerminalNode
- func (s *SortOnKeyClauseContext) QualifiedDataName(i int) IQualifiedDataNameContext
- func (s *SortOnKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortOutputProcedurePhraseContext
- func (s *SortOutputProcedurePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortOutputProcedurePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortOutputProcedurePhraseContext) GetParser() antlr.Parser
- func (s *SortOutputProcedurePhraseContext) GetRuleContext() antlr.RuleContext
- func (s *SortOutputProcedurePhraseContext) IS() antlr.TerminalNode
- func (*SortOutputProcedurePhraseContext) IsSortOutputProcedurePhraseContext()
- func (s *SortOutputProcedurePhraseContext) OUTPUT() antlr.TerminalNode
- func (s *SortOutputProcedurePhraseContext) PROCEDURE() antlr.TerminalNode
- func (s *SortOutputProcedurePhraseContext) ProcedureName() IProcedureNameContext
- func (s *SortOutputProcedurePhraseContext) SortOutputThrough() ISortOutputThroughContext
- func (s *SortOutputProcedurePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortOutputThroughContext
- func (s *SortOutputThroughContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortOutputThroughContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortOutputThroughContext) GetParser() antlr.Parser
- func (s *SortOutputThroughContext) GetRuleContext() antlr.RuleContext
- func (*SortOutputThroughContext) IsSortOutputThroughContext()
- func (s *SortOutputThroughContext) ProcedureName() IProcedureNameContext
- func (s *SortOutputThroughContext) THROUGH() antlr.TerminalNode
- func (s *SortOutputThroughContext) THRU() antlr.TerminalNode
- func (s *SortOutputThroughContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortStatementContext
- func (s *SortStatementContext) AllSortGivingPhrase() []ISortGivingPhraseContext
- func (s *SortStatementContext) AllSortOnKeyClause() []ISortOnKeyClauseContext
- func (s *SortStatementContext) AllSortUsing() []ISortUsingContext
- func (s *SortStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortStatementContext) FileName() IFileNameContext
- func (s *SortStatementContext) GetParser() antlr.Parser
- func (s *SortStatementContext) GetRuleContext() antlr.RuleContext
- func (*SortStatementContext) IsSortStatementContext()
- func (s *SortStatementContext) SORT() antlr.TerminalNode
- func (s *SortStatementContext) SortCollatingSequencePhrase() ISortCollatingSequencePhraseContext
- func (s *SortStatementContext) SortDuplicatesPhrase() ISortDuplicatesPhraseContext
- func (s *SortStatementContext) SortGivingPhrase(i int) ISortGivingPhraseContext
- func (s *SortStatementContext) SortInputProcedurePhrase() ISortInputProcedurePhraseContext
- func (s *SortStatementContext) SortOnKeyClause(i int) ISortOnKeyClauseContext
- func (s *SortStatementContext) SortOutputProcedurePhrase() ISortOutputProcedurePhraseContext
- func (s *SortStatementContext) SortUsing(i int) ISortUsingContext
- func (s *SortStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SortUsingContext
- func (s *SortUsingContext) AllFileName() []IFileNameContext
- func (s *SortUsingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SortUsingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SortUsingContext) FileName(i int) IFileNameContext
- func (s *SortUsingContext) GetParser() antlr.Parser
- func (s *SortUsingContext) GetRuleContext() antlr.RuleContext
- func (*SortUsingContext) IsSortUsingContext()
- func (s *SortUsingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SortUsingContext) USING() antlr.TerminalNode
- type SourceComputerParagraphContext
- func (s *SourceComputerParagraphContext) AllDOT_FS() []antlr.TerminalNode
- func (s *SourceComputerParagraphContext) ComputerName() IComputerNameContext
- func (s *SourceComputerParagraphContext) DEBUGGING() antlr.TerminalNode
- func (s *SourceComputerParagraphContext) DOT_FS(i int) antlr.TerminalNode
- func (s *SourceComputerParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SourceComputerParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SourceComputerParagraphContext) GetParser() antlr.Parser
- func (s *SourceComputerParagraphContext) GetRuleContext() antlr.RuleContext
- func (*SourceComputerParagraphContext) IsSourceComputerParagraphContext()
- func (s *SourceComputerParagraphContext) MODE() antlr.TerminalNode
- func (s *SourceComputerParagraphContext) SOURCE_COMPUTER() antlr.TerminalNode
- func (s *SourceComputerParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SourceComputerParagraphContext) WITH() antlr.TerminalNode
- type SpecialNameClauseContext
- func (s *SpecialNameClauseContext) AlphabetClause() IAlphabetClauseContext
- func (s *SpecialNameClauseContext) ChannelClause() IChannelClauseContext
- func (s *SpecialNameClauseContext) ClassClause() IClassClauseContext
- func (s *SpecialNameClauseContext) CurrencySignClause() ICurrencySignClauseContext
- func (s *SpecialNameClauseContext) DecimalPointClause() IDecimalPointClauseContext
- func (s *SpecialNameClauseContext) DefaultComputationalSignClause() IDefaultComputationalSignClauseContext
- func (s *SpecialNameClauseContext) DefaultDisplaySignClause() IDefaultDisplaySignClauseContext
- func (s *SpecialNameClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SpecialNameClauseContext) EnvironmentSwitchNameClause() IEnvironmentSwitchNameClauseContext
- func (s *SpecialNameClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SpecialNameClauseContext) GetParser() antlr.Parser
- func (s *SpecialNameClauseContext) GetRuleContext() antlr.RuleContext
- func (*SpecialNameClauseContext) IsSpecialNameClauseContext()
- func (s *SpecialNameClauseContext) OdtClause() IOdtClauseContext
- func (s *SpecialNameClauseContext) ReserveNetworkClause() IReserveNetworkClauseContext
- func (s *SpecialNameClauseContext) SymbolicCharactersClause() ISymbolicCharactersClauseContext
- func (s *SpecialNameClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SpecialNamesParagraphContext
- func (s *SpecialNamesParagraphContext) AllDOT_FS() []antlr.TerminalNode
- func (s *SpecialNamesParagraphContext) AllSpecialNameClause() []ISpecialNameClauseContext
- func (s *SpecialNamesParagraphContext) DOT_FS(i int) antlr.TerminalNode
- func (s *SpecialNamesParagraphContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SpecialNamesParagraphContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SpecialNamesParagraphContext) GetParser() antlr.Parser
- func (s *SpecialNamesParagraphContext) GetRuleContext() antlr.RuleContext
- func (*SpecialNamesParagraphContext) IsSpecialNamesParagraphContext()
- func (s *SpecialNamesParagraphContext) SPECIAL_NAMES() antlr.TerminalNode
- func (s *SpecialNamesParagraphContext) SpecialNameClause(i int) ISpecialNameClauseContext
- func (s *SpecialNamesParagraphContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SpecialRegisterContext
- func (s *SpecialRegisterContext) ADDRESS() antlr.TerminalNode
- func (s *SpecialRegisterContext) DATE() antlr.TerminalNode
- func (s *SpecialRegisterContext) DAY() antlr.TerminalNode
- func (s *SpecialRegisterContext) DAY_OF_WEEK() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_CONTENTS() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_ITEM() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_LINE() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_NAME() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_SUB_1() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_SUB_2() antlr.TerminalNode
- func (s *SpecialRegisterContext) DEBUG_SUB_3() antlr.TerminalNode
- func (s *SpecialRegisterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SpecialRegisterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SpecialRegisterContext) GetParser() antlr.Parser
- func (s *SpecialRegisterContext) GetRuleContext() antlr.RuleContext
- func (s *SpecialRegisterContext) Identifier() IIdentifierContext
- func (*SpecialRegisterContext) IsSpecialRegisterContext()
- func (s *SpecialRegisterContext) LENGTH() antlr.TerminalNode
- func (s *SpecialRegisterContext) LINAGE_COUNTER() antlr.TerminalNode
- func (s *SpecialRegisterContext) LINE_COUNTER() antlr.TerminalNode
- func (s *SpecialRegisterContext) OF() antlr.TerminalNode
- func (s *SpecialRegisterContext) PAGE_COUNTER() antlr.TerminalNode
- func (s *SpecialRegisterContext) RETURN_CODE() antlr.TerminalNode
- func (s *SpecialRegisterContext) SHIFT_IN() antlr.TerminalNode
- func (s *SpecialRegisterContext) SHIFT_OUT() antlr.TerminalNode
- func (s *SpecialRegisterContext) SORT_CONTROL() antlr.TerminalNode
- func (s *SpecialRegisterContext) SORT_CORE_SIZE() antlr.TerminalNode
- func (s *SpecialRegisterContext) SORT_FILE_SIZE() antlr.TerminalNode
- func (s *SpecialRegisterContext) SORT_MESSAGE() antlr.TerminalNode
- func (s *SpecialRegisterContext) SORT_MODE_SIZE() antlr.TerminalNode
- func (s *SpecialRegisterContext) SORT_RETURN() antlr.TerminalNode
- func (s *SpecialRegisterContext) TALLY() antlr.TerminalNode
- func (s *SpecialRegisterContext) TIME() antlr.TerminalNode
- func (s *SpecialRegisterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *SpecialRegisterContext) WHEN_COMPILED() antlr.TerminalNode
- type StartKeyContext
- func (s *StartKeyContext) EQUAL() antlr.TerminalNode
- func (s *StartKeyContext) EQUALCHAR() antlr.TerminalNode
- func (s *StartKeyContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StartKeyContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StartKeyContext) GREATER() antlr.TerminalNode
- func (s *StartKeyContext) GetParser() antlr.Parser
- func (s *StartKeyContext) GetRuleContext() antlr.RuleContext
- func (s *StartKeyContext) IS() antlr.TerminalNode
- func (*StartKeyContext) IsStartKeyContext()
- func (s *StartKeyContext) KEY() antlr.TerminalNode
- func (s *StartKeyContext) LESS() antlr.TerminalNode
- func (s *StartKeyContext) LESSTHANCHAR() antlr.TerminalNode
- func (s *StartKeyContext) MORETHANCHAR() antlr.TerminalNode
- func (s *StartKeyContext) MORETHANOREQUAL() antlr.TerminalNode
- func (s *StartKeyContext) NOT() antlr.TerminalNode
- func (s *StartKeyContext) OR() antlr.TerminalNode
- func (s *StartKeyContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *StartKeyContext) THAN() antlr.TerminalNode
- func (s *StartKeyContext) TO() antlr.TerminalNode
- func (s *StartKeyContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StartRuleContext
- func (s *StartRuleContext) CompilationUnit() ICompilationUnitContext
- func (s *StartRuleContext) EOF() antlr.TerminalNode
- func (s *StartRuleContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StartRuleContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StartRuleContext) GetParser() antlr.Parser
- func (s *StartRuleContext) GetRuleContext() antlr.RuleContext
- func (*StartRuleContext) IsStartRuleContext()
- func (s *StartRuleContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StartStatementContext
- func (s *StartStatementContext) END_START() antlr.TerminalNode
- func (s *StartStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StartStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StartStatementContext) FileName() IFileNameContext
- func (s *StartStatementContext) GetParser() antlr.Parser
- func (s *StartStatementContext) GetRuleContext() antlr.RuleContext
- func (s *StartStatementContext) InvalidKeyPhrase() IInvalidKeyPhraseContext
- func (*StartStatementContext) IsStartStatementContext()
- func (s *StartStatementContext) NotInvalidKeyPhrase() INotInvalidKeyPhraseContext
- func (s *StartStatementContext) START() antlr.TerminalNode
- func (s *StartStatementContext) StartKey() IStartKeyContext
- func (s *StartStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StatementContext
- func (s *StatementContext) AcceptStatement() IAcceptStatementContext
- func (s *StatementContext) AddStatement() IAddStatementContext
- func (s *StatementContext) AlterStatement() IAlterStatementContext
- func (s *StatementContext) CallStatement() ICallStatementContext
- func (s *StatementContext) CancelStatement() ICancelStatementContext
- func (s *StatementContext) CloseStatement() ICloseStatementContext
- func (s *StatementContext) ComputeStatement() IComputeStatementContext
- func (s *StatementContext) ContinueStatement() IContinueStatementContext
- func (s *StatementContext) DeleteStatement() IDeleteStatementContext
- func (s *StatementContext) DisableStatement() IDisableStatementContext
- func (s *StatementContext) DisplayStatement() IDisplayStatementContext
- func (s *StatementContext) DivideStatement() IDivideStatementContext
- func (s *StatementContext) EnableStatement() IEnableStatementContext
- func (s *StatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StatementContext) EntryStatement() IEntryStatementContext
- func (s *StatementContext) EvaluateStatement() IEvaluateStatementContext
- func (s *StatementContext) ExecCicsStatement() IExecCicsStatementContext
- func (s *StatementContext) ExecSqlImsStatement() IExecSqlImsStatementContext
- func (s *StatementContext) ExecSqlStatement() IExecSqlStatementContext
- func (s *StatementContext) ExhibitStatement() IExhibitStatementContext
- func (s *StatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StatementContext) ExitStatement() IExitStatementContext
- func (s *StatementContext) GenerateStatement() IGenerateStatementContext
- func (s *StatementContext) GetParser() antlr.Parser
- func (s *StatementContext) GetRuleContext() antlr.RuleContext
- func (s *StatementContext) GoToStatement() IGoToStatementContext
- func (s *StatementContext) GobackStatement() IGobackStatementContext
- func (s *StatementContext) IfStatement() IIfStatementContext
- func (s *StatementContext) InitializeStatement() IInitializeStatementContext
- func (s *StatementContext) InitiateStatement() IInitiateStatementContext
- func (s *StatementContext) InspectStatement() IInspectStatementContext
- func (*StatementContext) IsStatementContext()
- func (s *StatementContext) MergeStatement() IMergeStatementContext
- func (s *StatementContext) MoveStatement() IMoveStatementContext
- func (s *StatementContext) MultiplyStatement() IMultiplyStatementContext
- func (s *StatementContext) OpenStatement() IOpenStatementContext
- func (s *StatementContext) PerformStatement() IPerformStatementContext
- func (s *StatementContext) PurgeStatement() IPurgeStatementContext
- func (s *StatementContext) ReadStatement() IReadStatementContext
- func (s *StatementContext) ReceiveStatement() IReceiveStatementContext
- func (s *StatementContext) ReleaseStatement() IReleaseStatementContext
- func (s *StatementContext) ReturnStatement() IReturnStatementContext
- func (s *StatementContext) RewriteStatement() IRewriteStatementContext
- func (s *StatementContext) SearchStatement() ISearchStatementContext
- func (s *StatementContext) SendStatement() ISendStatementContext
- func (s *StatementContext) SetStatement() ISetStatementContext
- func (s *StatementContext) SortStatement() ISortStatementContext
- func (s *StatementContext) StartStatement() IStartStatementContext
- func (s *StatementContext) StopStatement() IStopStatementContext
- func (s *StatementContext) StringStatement() IStringStatementContext
- func (s *StatementContext) SubtractStatement() ISubtractStatementContext
- func (s *StatementContext) TerminateStatement() ITerminateStatementContext
- func (s *StatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *StatementContext) UnstringStatement() IUnstringStatementContext
- func (s *StatementContext) WriteStatement() IWriteStatementContext
- type StatusKeyClauseContext
- func (s *StatusKeyClauseContext) DataDescName() IDataDescNameContext
- func (s *StatusKeyClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StatusKeyClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StatusKeyClauseContext) GetParser() antlr.Parser
- func (s *StatusKeyClauseContext) GetRuleContext() antlr.RuleContext
- func (s *StatusKeyClauseContext) IS() antlr.TerminalNode
- func (*StatusKeyClauseContext) IsStatusKeyClauseContext()
- func (s *StatusKeyClauseContext) KEY() antlr.TerminalNode
- func (s *StatusKeyClauseContext) STATUS() antlr.TerminalNode
- func (s *StatusKeyClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StopStatementContext
- func (s *StopStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StopStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StopStatementContext) GetParser() antlr.Parser
- func (s *StopStatementContext) GetRuleContext() antlr.RuleContext
- func (*StopStatementContext) IsStopStatementContext()
- func (s *StopStatementContext) Literal() ILiteralContext
- func (s *StopStatementContext) RUN() antlr.TerminalNode
- func (s *StopStatementContext) STOP() antlr.TerminalNode
- func (s *StopStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringDelimitedByPhraseContext
- func (s *StringDelimitedByPhraseContext) BY() antlr.TerminalNode
- func (s *StringDelimitedByPhraseContext) DELIMITED() antlr.TerminalNode
- func (s *StringDelimitedByPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringDelimitedByPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringDelimitedByPhraseContext) GetParser() antlr.Parser
- func (s *StringDelimitedByPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *StringDelimitedByPhraseContext) Identifier() IIdentifierContext
- func (*StringDelimitedByPhraseContext) IsStringDelimitedByPhraseContext()
- func (s *StringDelimitedByPhraseContext) Literal() ILiteralContext
- func (s *StringDelimitedByPhraseContext) SIZE() antlr.TerminalNode
- func (s *StringDelimitedByPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringForPhraseContext
- func (s *StringForPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringForPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringForPhraseContext) FOR() antlr.TerminalNode
- func (s *StringForPhraseContext) GetParser() antlr.Parser
- func (s *StringForPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *StringForPhraseContext) Identifier() IIdentifierContext
- func (*StringForPhraseContext) IsStringForPhraseContext()
- func (s *StringForPhraseContext) Literal() ILiteralContext
- func (s *StringForPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringIntoPhraseContext
- func (s *StringIntoPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringIntoPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringIntoPhraseContext) GetParser() antlr.Parser
- func (s *StringIntoPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *StringIntoPhraseContext) INTO() antlr.TerminalNode
- func (s *StringIntoPhraseContext) Identifier() IIdentifierContext
- func (*StringIntoPhraseContext) IsStringIntoPhraseContext()
- func (s *StringIntoPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringSendingContext
- func (s *StringSendingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringSendingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringSendingContext) GetParser() antlr.Parser
- func (s *StringSendingContext) GetRuleContext() antlr.RuleContext
- func (s *StringSendingContext) Identifier() IIdentifierContext
- func (*StringSendingContext) IsStringSendingContext()
- func (s *StringSendingContext) Literal() ILiteralContext
- func (s *StringSendingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringSendingPhraseContext
- func (s *StringSendingPhraseContext) AllStringSending() []IStringSendingContext
- func (s *StringSendingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringSendingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringSendingPhraseContext) GetParser() antlr.Parser
- func (s *StringSendingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*StringSendingPhraseContext) IsStringSendingPhraseContext()
- func (s *StringSendingPhraseContext) StringDelimitedByPhrase() IStringDelimitedByPhraseContext
- func (s *StringSendingPhraseContext) StringForPhrase() IStringForPhraseContext
- func (s *StringSendingPhraseContext) StringSending(i int) IStringSendingContext
- func (s *StringSendingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringStatementContext
- func (s *StringStatementContext) AllStringSendingPhrase() []IStringSendingPhraseContext
- func (s *StringStatementContext) END_STRING() antlr.TerminalNode
- func (s *StringStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringStatementContext) GetParser() antlr.Parser
- func (s *StringStatementContext) GetRuleContext() antlr.RuleContext
- func (*StringStatementContext) IsStringStatementContext()
- func (s *StringStatementContext) NotOnOverflowPhrase() INotOnOverflowPhraseContext
- func (s *StringStatementContext) OnOverflowPhrase() IOnOverflowPhraseContext
- func (s *StringStatementContext) STRING() antlr.TerminalNode
- func (s *StringStatementContext) StringIntoPhrase() IStringIntoPhraseContext
- func (s *StringStatementContext) StringSendingPhrase(i int) IStringSendingPhraseContext
- func (s *StringStatementContext) StringWithPointerPhrase() IStringWithPointerPhraseContext
- func (s *StringStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type StringWithPointerPhraseContext
- func (s *StringWithPointerPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *StringWithPointerPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *StringWithPointerPhraseContext) GetParser() antlr.Parser
- func (s *StringWithPointerPhraseContext) GetRuleContext() antlr.RuleContext
- func (*StringWithPointerPhraseContext) IsStringWithPointerPhraseContext()
- func (s *StringWithPointerPhraseContext) POINTER() antlr.TerminalNode
- func (s *StringWithPointerPhraseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *StringWithPointerPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *StringWithPointerPhraseContext) WITH() antlr.TerminalNode
- type SubscriptContext
- func (s *SubscriptContext) ALL() antlr.TerminalNode
- func (s *SubscriptContext) ArithmeticExpression() IArithmeticExpressionContext
- func (s *SubscriptContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubscriptContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubscriptContext) GetParser() antlr.Parser
- func (s *SubscriptContext) GetRuleContext() antlr.RuleContext
- func (s *SubscriptContext) IndexName() IIndexNameContext
- func (s *SubscriptContext) IntegerLiteral() IIntegerLiteralContext
- func (*SubscriptContext) IsSubscriptContext()
- func (s *SubscriptContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *SubscriptContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractCorrespondingStatementContext
- func (s *SubtractCorrespondingStatementContext) CORR() antlr.TerminalNode
- func (s *SubtractCorrespondingStatementContext) CORRESPONDING() antlr.TerminalNode
- func (s *SubtractCorrespondingStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractCorrespondingStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractCorrespondingStatementContext) FROM() antlr.TerminalNode
- func (s *SubtractCorrespondingStatementContext) GetParser() antlr.Parser
- func (s *SubtractCorrespondingStatementContext) GetRuleContext() antlr.RuleContext
- func (*SubtractCorrespondingStatementContext) IsSubtractCorrespondingStatementContext()
- func (s *SubtractCorrespondingStatementContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *SubtractCorrespondingStatementContext) SubtractMinuendCorresponding() ISubtractMinuendCorrespondingContext
- func (s *SubtractCorrespondingStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractFromGivingStatementContext
- func (s *SubtractFromGivingStatementContext) AllSubtractGiving() []ISubtractGivingContext
- func (s *SubtractFromGivingStatementContext) AllSubtractSubtrahend() []ISubtractSubtrahendContext
- func (s *SubtractFromGivingStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractFromGivingStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractFromGivingStatementContext) FROM() antlr.TerminalNode
- func (s *SubtractFromGivingStatementContext) GIVING() antlr.TerminalNode
- func (s *SubtractFromGivingStatementContext) GetParser() antlr.Parser
- func (s *SubtractFromGivingStatementContext) GetRuleContext() antlr.RuleContext
- func (*SubtractFromGivingStatementContext) IsSubtractFromGivingStatementContext()
- func (s *SubtractFromGivingStatementContext) SubtractGiving(i int) ISubtractGivingContext
- func (s *SubtractFromGivingStatementContext) SubtractMinuendGiving() ISubtractMinuendGivingContext
- func (s *SubtractFromGivingStatementContext) SubtractSubtrahend(i int) ISubtractSubtrahendContext
- func (s *SubtractFromGivingStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractFromStatementContext
- func (s *SubtractFromStatementContext) AllSubtractMinuend() []ISubtractMinuendContext
- func (s *SubtractFromStatementContext) AllSubtractSubtrahend() []ISubtractSubtrahendContext
- func (s *SubtractFromStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractFromStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractFromStatementContext) FROM() antlr.TerminalNode
- func (s *SubtractFromStatementContext) GetParser() antlr.Parser
- func (s *SubtractFromStatementContext) GetRuleContext() antlr.RuleContext
- func (*SubtractFromStatementContext) IsSubtractFromStatementContext()
- func (s *SubtractFromStatementContext) SubtractMinuend(i int) ISubtractMinuendContext
- func (s *SubtractFromStatementContext) SubtractSubtrahend(i int) ISubtractSubtrahendContext
- func (s *SubtractFromStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractGivingContext
- func (s *SubtractGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractGivingContext) GetParser() antlr.Parser
- func (s *SubtractGivingContext) GetRuleContext() antlr.RuleContext
- func (s *SubtractGivingContext) Identifier() IIdentifierContext
- func (*SubtractGivingContext) IsSubtractGivingContext()
- func (s *SubtractGivingContext) ROUNDED() antlr.TerminalNode
- func (s *SubtractGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractMinuendContext
- func (s *SubtractMinuendContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractMinuendContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractMinuendContext) GetParser() antlr.Parser
- func (s *SubtractMinuendContext) GetRuleContext() antlr.RuleContext
- func (s *SubtractMinuendContext) Identifier() IIdentifierContext
- func (*SubtractMinuendContext) IsSubtractMinuendContext()
- func (s *SubtractMinuendContext) ROUNDED() antlr.TerminalNode
- func (s *SubtractMinuendContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractMinuendCorrespondingContext
- func (s *SubtractMinuendCorrespondingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractMinuendCorrespondingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractMinuendCorrespondingContext) GetParser() antlr.Parser
- func (s *SubtractMinuendCorrespondingContext) GetRuleContext() antlr.RuleContext
- func (*SubtractMinuendCorrespondingContext) IsSubtractMinuendCorrespondingContext()
- func (s *SubtractMinuendCorrespondingContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *SubtractMinuendCorrespondingContext) ROUNDED() antlr.TerminalNode
- func (s *SubtractMinuendCorrespondingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractMinuendGivingContext
- func (s *SubtractMinuendGivingContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractMinuendGivingContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractMinuendGivingContext) GetParser() antlr.Parser
- func (s *SubtractMinuendGivingContext) GetRuleContext() antlr.RuleContext
- func (s *SubtractMinuendGivingContext) Identifier() IIdentifierContext
- func (*SubtractMinuendGivingContext) IsSubtractMinuendGivingContext()
- func (s *SubtractMinuendGivingContext) Literal() ILiteralContext
- func (s *SubtractMinuendGivingContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractStatementContext
- func (s *SubtractStatementContext) END_SUBTRACT() antlr.TerminalNode
- func (s *SubtractStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractStatementContext) GetParser() antlr.Parser
- func (s *SubtractStatementContext) GetRuleContext() antlr.RuleContext
- func (*SubtractStatementContext) IsSubtractStatementContext()
- func (s *SubtractStatementContext) NotOnSizeErrorPhrase() INotOnSizeErrorPhraseContext
- func (s *SubtractStatementContext) OnSizeErrorPhrase() IOnSizeErrorPhraseContext
- func (s *SubtractStatementContext) SUBTRACT() antlr.TerminalNode
- func (s *SubtractStatementContext) SubtractCorrespondingStatement() ISubtractCorrespondingStatementContext
- func (s *SubtractStatementContext) SubtractFromGivingStatement() ISubtractFromGivingStatementContext
- func (s *SubtractStatementContext) SubtractFromStatement() ISubtractFromStatementContext
- func (s *SubtractStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SubtractSubtrahendContext
- func (s *SubtractSubtrahendContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SubtractSubtrahendContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SubtractSubtrahendContext) GetParser() antlr.Parser
- func (s *SubtractSubtrahendContext) GetRuleContext() antlr.RuleContext
- func (s *SubtractSubtrahendContext) Identifier() IIdentifierContext
- func (*SubtractSubtrahendContext) IsSubtractSubtrahendContext()
- func (s *SubtractSubtrahendContext) Literal() ILiteralContext
- func (s *SubtractSubtrahendContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicCharacterContext
- func (s *SymbolicCharacterContext) CobolWord() ICobolWordContext
- func (s *SymbolicCharacterContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicCharacterContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicCharacterContext) GetParser() antlr.Parser
- func (s *SymbolicCharacterContext) GetRuleContext() antlr.RuleContext
- func (*SymbolicCharacterContext) IsSymbolicCharacterContext()
- func (s *SymbolicCharacterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicCharactersClauseContext
- func (s *SymbolicCharactersClauseContext) ALPHANUMERIC() antlr.TerminalNode
- func (s *SymbolicCharactersClauseContext) AllSymbolicCharacters() []ISymbolicCharactersContext
- func (s *SymbolicCharactersClauseContext) AlphabetName() IAlphabetNameContext
- func (s *SymbolicCharactersClauseContext) CHARACTERS() antlr.TerminalNode
- func (s *SymbolicCharactersClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicCharactersClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicCharactersClauseContext) FOR() antlr.TerminalNode
- func (s *SymbolicCharactersClauseContext) GetParser() antlr.Parser
- func (s *SymbolicCharactersClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicCharactersClauseContext) IN() antlr.TerminalNode
- func (*SymbolicCharactersClauseContext) IsSymbolicCharactersClauseContext()
- func (s *SymbolicCharactersClauseContext) NATIONAL() antlr.TerminalNode
- func (s *SymbolicCharactersClauseContext) SYMBOLIC() antlr.TerminalNode
- func (s *SymbolicCharactersClauseContext) SymbolicCharacters(i int) ISymbolicCharactersContext
- func (s *SymbolicCharactersClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicCharactersContext
- func (s *SymbolicCharactersContext) ARE() antlr.TerminalNode
- func (s *SymbolicCharactersContext) AllIntegerLiteral() []IIntegerLiteralContext
- func (s *SymbolicCharactersContext) AllSymbolicCharacter() []ISymbolicCharacterContext
- func (s *SymbolicCharactersContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicCharactersContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicCharactersContext) GetParser() antlr.Parser
- func (s *SymbolicCharactersContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicCharactersContext) IS() antlr.TerminalNode
- func (s *SymbolicCharactersContext) IntegerLiteral(i int) IIntegerLiteralContext
- func (*SymbolicCharactersContext) IsSymbolicCharactersContext()
- func (s *SymbolicCharactersContext) SymbolicCharacter(i int) ISymbolicCharacterContext
- func (s *SymbolicCharactersContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicDestinationClauseContext
- func (s *SymbolicDestinationClauseContext) DESTINATION() antlr.TerminalNode
- func (s *SymbolicDestinationClauseContext) DataDescName() IDataDescNameContext
- func (s *SymbolicDestinationClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicDestinationClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicDestinationClauseContext) GetParser() antlr.Parser
- func (s *SymbolicDestinationClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicDestinationClauseContext) IS() antlr.TerminalNode
- func (*SymbolicDestinationClauseContext) IsSymbolicDestinationClauseContext()
- func (s *SymbolicDestinationClauseContext) SYMBOLIC() antlr.TerminalNode
- func (s *SymbolicDestinationClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicQueueClauseContext
- func (s *SymbolicQueueClauseContext) DataDescName() IDataDescNameContext
- func (s *SymbolicQueueClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicQueueClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicQueueClauseContext) GetParser() antlr.Parser
- func (s *SymbolicQueueClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicQueueClauseContext) IS() antlr.TerminalNode
- func (*SymbolicQueueClauseContext) IsSymbolicQueueClauseContext()
- func (s *SymbolicQueueClauseContext) QUEUE() antlr.TerminalNode
- func (s *SymbolicQueueClauseContext) SYMBOLIC() antlr.TerminalNode
- func (s *SymbolicQueueClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicSourceClauseContext
- func (s *SymbolicSourceClauseContext) DataDescName() IDataDescNameContext
- func (s *SymbolicSourceClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicSourceClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicSourceClauseContext) GetParser() antlr.Parser
- func (s *SymbolicSourceClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicSourceClauseContext) IS() antlr.TerminalNode
- func (*SymbolicSourceClauseContext) IsSymbolicSourceClauseContext()
- func (s *SymbolicSourceClauseContext) SOURCE() antlr.TerminalNode
- func (s *SymbolicSourceClauseContext) SYMBOLIC() antlr.TerminalNode
- func (s *SymbolicSourceClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicSubQueueClauseContext
- func (s *SymbolicSubQueueClauseContext) DataDescName() IDataDescNameContext
- func (s *SymbolicSubQueueClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicSubQueueClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicSubQueueClauseContext) GetParser() antlr.Parser
- func (s *SymbolicSubQueueClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicSubQueueClauseContext) IS() antlr.TerminalNode
- func (*SymbolicSubQueueClauseContext) IsSymbolicSubQueueClauseContext()
- func (s *SymbolicSubQueueClauseContext) SUB_QUEUE_1() antlr.TerminalNode
- func (s *SymbolicSubQueueClauseContext) SUB_QUEUE_2() antlr.TerminalNode
- func (s *SymbolicSubQueueClauseContext) SUB_QUEUE_3() antlr.TerminalNode
- func (s *SymbolicSubQueueClauseContext) SYMBOLIC() antlr.TerminalNode
- func (s *SymbolicSubQueueClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SymbolicTerminalClauseContext
- func (s *SymbolicTerminalClauseContext) DataDescName() IDataDescNameContext
- func (s *SymbolicTerminalClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SymbolicTerminalClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SymbolicTerminalClauseContext) GetParser() antlr.Parser
- func (s *SymbolicTerminalClauseContext) GetRuleContext() antlr.RuleContext
- func (s *SymbolicTerminalClauseContext) IS() antlr.TerminalNode
- func (*SymbolicTerminalClauseContext) IsSymbolicTerminalClauseContext()
- func (s *SymbolicTerminalClauseContext) SYMBOLIC() antlr.TerminalNode
- func (s *SymbolicTerminalClauseContext) TERMINAL() antlr.TerminalNode
- func (s *SymbolicTerminalClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type SystemNameContext
- func (s *SystemNameContext) CobolWord() ICobolWordContext
- func (s *SystemNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *SystemNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *SystemNameContext) GetParser() antlr.Parser
- func (s *SystemNameContext) GetRuleContext() antlr.RuleContext
- func (*SystemNameContext) IsSystemNameContext()
- func (s *SystemNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type TableCallContext
- func (s *TableCallContext) AllCOMMACHAR() []antlr.TerminalNode
- func (s *TableCallContext) AllLPARENCHAR() []antlr.TerminalNode
- func (s *TableCallContext) AllRPARENCHAR() []antlr.TerminalNode
- func (s *TableCallContext) AllSubscript() []ISubscriptContext
- func (s *TableCallContext) COMMACHAR(i int) antlr.TerminalNode
- func (s *TableCallContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *TableCallContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *TableCallContext) GetParser() antlr.Parser
- func (s *TableCallContext) GetRuleContext() antlr.RuleContext
- func (*TableCallContext) IsTableCallContext()
- func (s *TableCallContext) LPARENCHAR(i int) antlr.TerminalNode
- func (s *TableCallContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *TableCallContext) RPARENCHAR(i int) antlr.TerminalNode
- func (s *TableCallContext) ReferenceModifier() IReferenceModifierContext
- func (s *TableCallContext) Subscript(i int) ISubscriptContext
- func (s *TableCallContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type TerminateStatementContext
- func (s *TerminateStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *TerminateStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *TerminateStatementContext) GetParser() antlr.Parser
- func (s *TerminateStatementContext) GetRuleContext() antlr.RuleContext
- func (*TerminateStatementContext) IsTerminateStatementContext()
- func (s *TerminateStatementContext) ReportName() IReportNameContext
- func (s *TerminateStatementContext) TERMINATE() antlr.TerminalNode
- func (s *TerminateStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type TextLengthClauseContext
- func (s *TextLengthClauseContext) DataDescName() IDataDescNameContext
- func (s *TextLengthClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *TextLengthClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *TextLengthClauseContext) GetParser() antlr.Parser
- func (s *TextLengthClauseContext) GetRuleContext() antlr.RuleContext
- func (s *TextLengthClauseContext) IS() antlr.TerminalNode
- func (*TextLengthClauseContext) IsTextLengthClauseContext()
- func (s *TextLengthClauseContext) LENGTH() antlr.TerminalNode
- func (s *TextLengthClauseContext) TEXT() antlr.TerminalNode
- func (s *TextLengthClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type TextNameContext
- func (s *TextNameContext) CobolWord() ICobolWordContext
- func (s *TextNameContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *TextNameContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *TextNameContext) GetParser() antlr.Parser
- func (s *TextNameContext) GetRuleContext() antlr.RuleContext
- func (*TextNameContext) IsTextNameContext()
- func (s *TextNameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UnstringCountInContext
- func (s *UnstringCountInContext) COUNT() antlr.TerminalNode
- func (s *UnstringCountInContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringCountInContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringCountInContext) GetParser() antlr.Parser
- func (s *UnstringCountInContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringCountInContext) IN() antlr.TerminalNode
- func (s *UnstringCountInContext) Identifier() IIdentifierContext
- func (*UnstringCountInContext) IsUnstringCountInContext()
- func (s *UnstringCountInContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UnstringDelimitedByPhraseContext
- func (s *UnstringDelimitedByPhraseContext) ALL() antlr.TerminalNode
- func (s *UnstringDelimitedByPhraseContext) BY() antlr.TerminalNode
- func (s *UnstringDelimitedByPhraseContext) DELIMITED() antlr.TerminalNode
- func (s *UnstringDelimitedByPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringDelimitedByPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringDelimitedByPhraseContext) GetParser() antlr.Parser
- func (s *UnstringDelimitedByPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringDelimitedByPhraseContext) Identifier() IIdentifierContext
- func (*UnstringDelimitedByPhraseContext) IsUnstringDelimitedByPhraseContext()
- func (s *UnstringDelimitedByPhraseContext) Literal() ILiteralContext
- func (s *UnstringDelimitedByPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UnstringDelimiterInContext
- func (s *UnstringDelimiterInContext) DELIMITER() antlr.TerminalNode
- func (s *UnstringDelimiterInContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringDelimiterInContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringDelimiterInContext) GetParser() antlr.Parser
- func (s *UnstringDelimiterInContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringDelimiterInContext) IN() antlr.TerminalNode
- func (s *UnstringDelimiterInContext) Identifier() IIdentifierContext
- func (*UnstringDelimiterInContext) IsUnstringDelimiterInContext()
- func (s *UnstringDelimiterInContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UnstringIntoContext
- func (s *UnstringIntoContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringIntoContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringIntoContext) GetParser() antlr.Parser
- func (s *UnstringIntoContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringIntoContext) Identifier() IIdentifierContext
- func (*UnstringIntoContext) IsUnstringIntoContext()
- func (s *UnstringIntoContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UnstringIntoContext) UnstringCountIn() IUnstringCountInContext
- func (s *UnstringIntoContext) UnstringDelimiterIn() IUnstringDelimiterInContext
- type UnstringIntoPhraseContext
- func (s *UnstringIntoPhraseContext) AllUnstringInto() []IUnstringIntoContext
- func (s *UnstringIntoPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringIntoPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringIntoPhraseContext) GetParser() antlr.Parser
- func (s *UnstringIntoPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringIntoPhraseContext) INTO() antlr.TerminalNode
- func (*UnstringIntoPhraseContext) IsUnstringIntoPhraseContext()
- func (s *UnstringIntoPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UnstringIntoPhraseContext) UnstringInto(i int) IUnstringIntoContext
- type UnstringOrAllPhraseContext
- func (s *UnstringOrAllPhraseContext) ALL() antlr.TerminalNode
- func (s *UnstringOrAllPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringOrAllPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringOrAllPhraseContext) GetParser() antlr.Parser
- func (s *UnstringOrAllPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringOrAllPhraseContext) Identifier() IIdentifierContext
- func (*UnstringOrAllPhraseContext) IsUnstringOrAllPhraseContext()
- func (s *UnstringOrAllPhraseContext) Literal() ILiteralContext
- func (s *UnstringOrAllPhraseContext) OR() antlr.TerminalNode
- func (s *UnstringOrAllPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UnstringSendingPhraseContext
- func (s *UnstringSendingPhraseContext) AllUnstringOrAllPhrase() []IUnstringOrAllPhraseContext
- func (s *UnstringSendingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringSendingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringSendingPhraseContext) GetParser() antlr.Parser
- func (s *UnstringSendingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringSendingPhraseContext) Identifier() IIdentifierContext
- func (*UnstringSendingPhraseContext) IsUnstringSendingPhraseContext()
- func (s *UnstringSendingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UnstringSendingPhraseContext) UnstringDelimitedByPhrase() IUnstringDelimitedByPhraseContext
- func (s *UnstringSendingPhraseContext) UnstringOrAllPhrase(i int) IUnstringOrAllPhraseContext
- type UnstringStatementContext
- func (s *UnstringStatementContext) END_UNSTRING() antlr.TerminalNode
- func (s *UnstringStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringStatementContext) GetParser() antlr.Parser
- func (s *UnstringStatementContext) GetRuleContext() antlr.RuleContext
- func (*UnstringStatementContext) IsUnstringStatementContext()
- func (s *UnstringStatementContext) NotOnOverflowPhrase() INotOnOverflowPhraseContext
- func (s *UnstringStatementContext) OnOverflowPhrase() IOnOverflowPhraseContext
- func (s *UnstringStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UnstringStatementContext) UNSTRING() antlr.TerminalNode
- func (s *UnstringStatementContext) UnstringIntoPhrase() IUnstringIntoPhraseContext
- func (s *UnstringStatementContext) UnstringSendingPhrase() IUnstringSendingPhraseContext
- func (s *UnstringStatementContext) UnstringTallyingPhrase() IUnstringTallyingPhraseContext
- func (s *UnstringStatementContext) UnstringWithPointerPhrase() IUnstringWithPointerPhraseContext
- type UnstringTallyingPhraseContext
- func (s *UnstringTallyingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringTallyingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringTallyingPhraseContext) GetParser() antlr.Parser
- func (s *UnstringTallyingPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *UnstringTallyingPhraseContext) IN() antlr.TerminalNode
- func (*UnstringTallyingPhraseContext) IsUnstringTallyingPhraseContext()
- func (s *UnstringTallyingPhraseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *UnstringTallyingPhraseContext) TALLYING() antlr.TerminalNode
- func (s *UnstringTallyingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UnstringWithPointerPhraseContext
- func (s *UnstringWithPointerPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UnstringWithPointerPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UnstringWithPointerPhraseContext) GetParser() antlr.Parser
- func (s *UnstringWithPointerPhraseContext) GetRuleContext() antlr.RuleContext
- func (*UnstringWithPointerPhraseContext) IsUnstringWithPointerPhraseContext()
- func (s *UnstringWithPointerPhraseContext) POINTER() antlr.TerminalNode
- func (s *UnstringWithPointerPhraseContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *UnstringWithPointerPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UnstringWithPointerPhraseContext) WITH() antlr.TerminalNode
- type UseAfterClauseContext
- func (s *UseAfterClauseContext) AFTER() antlr.TerminalNode
- func (s *UseAfterClauseContext) ERROR() antlr.TerminalNode
- func (s *UseAfterClauseContext) EXCEPTION() antlr.TerminalNode
- func (s *UseAfterClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UseAfterClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UseAfterClauseContext) GLOBAL() antlr.TerminalNode
- func (s *UseAfterClauseContext) GetParser() antlr.Parser
- func (s *UseAfterClauseContext) GetRuleContext() antlr.RuleContext
- func (*UseAfterClauseContext) IsUseAfterClauseContext()
- func (s *UseAfterClauseContext) ON() antlr.TerminalNode
- func (s *UseAfterClauseContext) PROCEDURE() antlr.TerminalNode
- func (s *UseAfterClauseContext) STANDARD() antlr.TerminalNode
- func (s *UseAfterClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UseAfterClauseContext) UseAfterOn() IUseAfterOnContext
- type UseAfterOnContext
- func (s *UseAfterOnContext) AllFileName() []IFileNameContext
- func (s *UseAfterOnContext) EXTEND() antlr.TerminalNode
- func (s *UseAfterOnContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UseAfterOnContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UseAfterOnContext) FileName(i int) IFileNameContext
- func (s *UseAfterOnContext) GetParser() antlr.Parser
- func (s *UseAfterOnContext) GetRuleContext() antlr.RuleContext
- func (s *UseAfterOnContext) INPUT() antlr.TerminalNode
- func (s *UseAfterOnContext) I_O() antlr.TerminalNode
- func (*UseAfterOnContext) IsUseAfterOnContext()
- func (s *UseAfterOnContext) OUTPUT() antlr.TerminalNode
- func (s *UseAfterOnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UseDebugClauseContext
- func (s *UseDebugClauseContext) AllUseDebugOn() []IUseDebugOnContext
- func (s *UseDebugClauseContext) DEBUGGING() antlr.TerminalNode
- func (s *UseDebugClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UseDebugClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UseDebugClauseContext) FOR() antlr.TerminalNode
- func (s *UseDebugClauseContext) GetParser() antlr.Parser
- func (s *UseDebugClauseContext) GetRuleContext() antlr.RuleContext
- func (*UseDebugClauseContext) IsUseDebugClauseContext()
- func (s *UseDebugClauseContext) ON() antlr.TerminalNode
- func (s *UseDebugClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UseDebugClauseContext) UseDebugOn(i int) IUseDebugOnContext
- type UseDebugOnContext
- func (s *UseDebugOnContext) ALL() antlr.TerminalNode
- func (s *UseDebugOnContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UseDebugOnContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UseDebugOnContext) FileName() IFileNameContext
- func (s *UseDebugOnContext) GetParser() antlr.Parser
- func (s *UseDebugOnContext) GetRuleContext() antlr.RuleContext
- func (s *UseDebugOnContext) Identifier() IIdentifierContext
- func (*UseDebugOnContext) IsUseDebugOnContext()
- func (s *UseDebugOnContext) OF() antlr.TerminalNode
- func (s *UseDebugOnContext) PROCEDURES() antlr.TerminalNode
- func (s *UseDebugOnContext) ProcedureName() IProcedureNameContext
- func (s *UseDebugOnContext) REFERENCES() antlr.TerminalNode
- func (s *UseDebugOnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type UseStatementContext
- func (s *UseStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *UseStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *UseStatementContext) GetParser() antlr.Parser
- func (s *UseStatementContext) GetRuleContext() antlr.RuleContext
- func (*UseStatementContext) IsUseStatementContext()
- func (s *UseStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *UseStatementContext) USE() antlr.TerminalNode
- func (s *UseStatementContext) UseAfterClause() IUseAfterClauseContext
- func (s *UseStatementContext) UseDebugClause() IUseDebugClauseContext
- type ValueOfClauseContext
- func (s *ValueOfClauseContext) AllValuePair() []IValuePairContext
- func (s *ValueOfClauseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ValueOfClauseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ValueOfClauseContext) GetParser() antlr.Parser
- func (s *ValueOfClauseContext) GetRuleContext() antlr.RuleContext
- func (*ValueOfClauseContext) IsValueOfClauseContext()
- func (s *ValueOfClauseContext) OF() antlr.TerminalNode
- func (s *ValueOfClauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *ValueOfClauseContext) VALUE() antlr.TerminalNode
- func (s *ValueOfClauseContext) ValuePair(i int) IValuePairContext
- type ValuePairContext
- func (s *ValuePairContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *ValuePairContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *ValuePairContext) GetParser() antlr.Parser
- func (s *ValuePairContext) GetRuleContext() antlr.RuleContext
- func (s *ValuePairContext) IS() antlr.TerminalNode
- func (*ValuePairContext) IsValuePairContext()
- func (s *ValuePairContext) Literal() ILiteralContext
- func (s *ValuePairContext) QualifiedDataName() IQualifiedDataNameContext
- func (s *ValuePairContext) SystemName() ISystemNameContext
- func (s *ValuePairContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WorkingStorageSectionContext
- func (s *WorkingStorageSectionContext) AllDataDescriptionEntry() []IDataDescriptionEntryContext
- func (s *WorkingStorageSectionContext) DOT_FS() antlr.TerminalNode
- func (s *WorkingStorageSectionContext) DataDescriptionEntry(i int) IDataDescriptionEntryContext
- func (s *WorkingStorageSectionContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WorkingStorageSectionContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WorkingStorageSectionContext) GetParser() antlr.Parser
- func (s *WorkingStorageSectionContext) GetRuleContext() antlr.RuleContext
- func (*WorkingStorageSectionContext) IsWorkingStorageSectionContext()
- func (s *WorkingStorageSectionContext) SECTION() antlr.TerminalNode
- func (s *WorkingStorageSectionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *WorkingStorageSectionContext) WORKING_STORAGE() antlr.TerminalNode
- type WriteAdvancingLinesContext
- func (s *WriteAdvancingLinesContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingLinesContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingLinesContext) GetParser() antlr.Parser
- func (s *WriteAdvancingLinesContext) GetRuleContext() antlr.RuleContext
- func (s *WriteAdvancingLinesContext) Identifier() IIdentifierContext
- func (*WriteAdvancingLinesContext) IsWriteAdvancingLinesContext()
- func (s *WriteAdvancingLinesContext) LINE() antlr.TerminalNode
- func (s *WriteAdvancingLinesContext) LINES() antlr.TerminalNode
- func (s *WriteAdvancingLinesContext) Literal() ILiteralContext
- func (s *WriteAdvancingLinesContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WriteAdvancingMnemonicContext
- func (s *WriteAdvancingMnemonicContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingMnemonicContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingMnemonicContext) GetParser() antlr.Parser
- func (s *WriteAdvancingMnemonicContext) GetRuleContext() antlr.RuleContext
- func (*WriteAdvancingMnemonicContext) IsWriteAdvancingMnemonicContext()
- func (s *WriteAdvancingMnemonicContext) MnemonicName() IMnemonicNameContext
- func (s *WriteAdvancingMnemonicContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WriteAdvancingPageContext
- func (s *WriteAdvancingPageContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingPageContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingPageContext) GetParser() antlr.Parser
- func (s *WriteAdvancingPageContext) GetRuleContext() antlr.RuleContext
- func (*WriteAdvancingPageContext) IsWriteAdvancingPageContext()
- func (s *WriteAdvancingPageContext) PAGE() antlr.TerminalNode
- func (s *WriteAdvancingPageContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WriteAdvancingPhraseContext
- func (s *WriteAdvancingPhraseContext) ADVANCING() antlr.TerminalNode
- func (s *WriteAdvancingPhraseContext) AFTER() antlr.TerminalNode
- func (s *WriteAdvancingPhraseContext) BEFORE() antlr.TerminalNode
- func (s *WriteAdvancingPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteAdvancingPhraseContext) GetParser() antlr.Parser
- func (s *WriteAdvancingPhraseContext) GetRuleContext() antlr.RuleContext
- func (*WriteAdvancingPhraseContext) IsWriteAdvancingPhraseContext()
- func (s *WriteAdvancingPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *WriteAdvancingPhraseContext) WriteAdvancingLines() IWriteAdvancingLinesContext
- func (s *WriteAdvancingPhraseContext) WriteAdvancingMnemonic() IWriteAdvancingMnemonicContext
- func (s *WriteAdvancingPhraseContext) WriteAdvancingPage() IWriteAdvancingPageContext
- type WriteAtEndOfPagePhraseContext
- func (s *WriteAtEndOfPagePhraseContext) AT() antlr.TerminalNode
- func (s *WriteAtEndOfPagePhraseContext) AllStatement() []IStatementContext
- func (s *WriteAtEndOfPagePhraseContext) END_OF_PAGE() antlr.TerminalNode
- func (s *WriteAtEndOfPagePhraseContext) EOP() antlr.TerminalNode
- func (s *WriteAtEndOfPagePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteAtEndOfPagePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteAtEndOfPagePhraseContext) GetParser() antlr.Parser
- func (s *WriteAtEndOfPagePhraseContext) GetRuleContext() antlr.RuleContext
- func (*WriteAtEndOfPagePhraseContext) IsWriteAtEndOfPagePhraseContext()
- func (s *WriteAtEndOfPagePhraseContext) Statement(i int) IStatementContext
- func (s *WriteAtEndOfPagePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WriteFromPhraseContext
- func (s *WriteFromPhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteFromPhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteFromPhraseContext) FROM() antlr.TerminalNode
- func (s *WriteFromPhraseContext) GetParser() antlr.Parser
- func (s *WriteFromPhraseContext) GetRuleContext() antlr.RuleContext
- func (s *WriteFromPhraseContext) Identifier() IIdentifierContext
- func (*WriteFromPhraseContext) IsWriteFromPhraseContext()
- func (s *WriteFromPhraseContext) Literal() ILiteralContext
- func (s *WriteFromPhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WriteNotAtEndOfPagePhraseContext
- func (s *WriteNotAtEndOfPagePhraseContext) AT() antlr.TerminalNode
- func (s *WriteNotAtEndOfPagePhraseContext) AllStatement() []IStatementContext
- func (s *WriteNotAtEndOfPagePhraseContext) END_OF_PAGE() antlr.TerminalNode
- func (s *WriteNotAtEndOfPagePhraseContext) EOP() antlr.TerminalNode
- func (s *WriteNotAtEndOfPagePhraseContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteNotAtEndOfPagePhraseContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteNotAtEndOfPagePhraseContext) GetParser() antlr.Parser
- func (s *WriteNotAtEndOfPagePhraseContext) GetRuleContext() antlr.RuleContext
- func (*WriteNotAtEndOfPagePhraseContext) IsWriteNotAtEndOfPagePhraseContext()
- func (s *WriteNotAtEndOfPagePhraseContext) NOT() antlr.TerminalNode
- func (s *WriteNotAtEndOfPagePhraseContext) Statement(i int) IStatementContext
- func (s *WriteNotAtEndOfPagePhraseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- type WriteStatementContext
- func (s *WriteStatementContext) END_WRITE() antlr.TerminalNode
- func (s *WriteStatementContext) EnterRule(listener antlr.ParseTreeListener)
- func (s *WriteStatementContext) ExitRule(listener antlr.ParseTreeListener)
- func (s *WriteStatementContext) GetParser() antlr.Parser
- func (s *WriteStatementContext) GetRuleContext() antlr.RuleContext
- func (s *WriteStatementContext) InvalidKeyPhrase() IInvalidKeyPhraseContext
- func (*WriteStatementContext) IsWriteStatementContext()
- func (s *WriteStatementContext) NotInvalidKeyPhrase() INotInvalidKeyPhraseContext
- func (s *WriteStatementContext) RecordName() IRecordNameContext
- func (s *WriteStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
- func (s *WriteStatementContext) WRITE() antlr.TerminalNode
- func (s *WriteStatementContext) WriteAdvancingPhrase() IWriteAdvancingPhraseContext
- func (s *WriteStatementContext) WriteAtEndOfPagePhrase() IWriteAtEndOfPagePhraseContext
- func (s *WriteStatementContext) WriteFromPhrase() IWriteFromPhraseContext
- func (s *WriteStatementContext) WriteNotAtEndOfPagePhrase() IWriteNotAtEndOfPagePhraseContext
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_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 (s *AbbreviationContext) NOT() antlr.TerminalNode
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 (s *AcceptFromDateStatementContext) DATE() antlr.TerminalNode
func (*AcceptFromDateStatementContext) DAY ¶
func (s *AcceptFromDateStatementContext) DAY() antlr.TerminalNode
func (*AcceptFromDateStatementContext) DAY_OF_WEEK ¶
func (s *AcceptFromDateStatementContext) DAY_OF_WEEK() antlr.TerminalNode
func (*AcceptFromDateStatementContext) EnterRule ¶
func (s *AcceptFromDateStatementContext) EnterRule(listener antlr.ParseTreeListener)
func (*AcceptFromDateStatementContext) ExitRule ¶
func (s *AcceptFromDateStatementContext) ExitRule(listener antlr.ParseTreeListener)
func (*AcceptFromDateStatementContext) FROM ¶
func (s *AcceptFromDateStatementContext) FROM() antlr.TerminalNode
func (*AcceptFromDateStatementContext) GetParser ¶
func (s *AcceptFromDateStatementContext) GetParser() antlr.Parser
func (*AcceptFromDateStatementContext) GetRuleContext ¶
func (s *AcceptFromDateStatementContext) GetRuleContext() antlr.RuleContext
func (*AcceptFromDateStatementContext) IsAcceptFromDateStatementContext ¶
func (*AcceptFromDateStatementContext) IsAcceptFromDateStatementContext()
func (*AcceptFromDateStatementContext) MMDDYYYY ¶
func (s *AcceptFromDateStatementContext) MMDDYYYY() antlr.TerminalNode
func (*AcceptFromDateStatementContext) TIME ¶
func (s *AcceptFromDateStatementContext) TIME() antlr.TerminalNode
func (*AcceptFromDateStatementContext) TIMER ¶
func (s *AcceptFromDateStatementContext) TIMER() antlr.TerminalNode
func (*AcceptFromDateStatementContext) TODAYS_DATE ¶
func (s *AcceptFromDateStatementContext) TODAYS_DATE() antlr.TerminalNode
func (*AcceptFromDateStatementContext) TODAYS_NAME ¶
func (s *AcceptFromDateStatementContext) TODAYS_NAME() antlr.TerminalNode
func (*AcceptFromDateStatementContext) ToStringTree ¶
func (s *AcceptFromDateStatementContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string
func (*AcceptFromDateStatementContext) YEAR ¶
func (s *AcceptFromDateStatementContext) YEAR() antlr.TerminalNode
func (*AcceptFromDateStatementContext) YYYYDDD ¶
func (s *AcceptFromDateStatementContext) YYYYDDD() antlr.TerminalNode
func (*AcceptFromDateStatementContext) YYYYMMDD ¶
func (s *AcceptFromDateStatementContext) YYYYMMDD() antlr.TerminalNode
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 (s *AcceptFromEscapeKeyStatementContext) ESCAPE() antlr.TerminalNode
func (*AcceptFromEscapeKeyStatementContext) EnterRule ¶
func (s *AcceptFromEscapeKeyStatementContext) EnterRule(listener antlr.ParseTreeListener)
func (*AcceptFromEscapeKeyStatementContext) ExitRule ¶
func (s *AcceptFromEscapeKeyStatementContext) ExitRule(listener antlr.ParseTreeListener)
func (*AcceptFromEscapeKeyStatementContext) FROM ¶
func (s *AcceptFromEscapeKeyStatementContext) FROM() antlr.TerminalNode
func (*AcceptFromEscapeKeyStatementContext) GetParser ¶
func (s *AcceptFromEscapeKeyStatementContext) GetParser() antlr.Parser
func (*AcceptFromEscapeKeyStatementContext) GetRuleContext ¶
func (s *AcceptFromEscapeKeyStatementContext) GetRuleContext() antlr.RuleContext
func (*AcceptFromEscapeKeyStatementContext) IsAcceptFromEscapeKeyStatementContext ¶
func (*AcceptFromEscapeKeyStatementContext) IsAcceptFromEscapeKeyStatementContext()
func (*AcceptFromEscapeKeyStatementContext) KEY ¶
func (s *AcceptFromEscapeKeyStatementContext) KEY() antlr.TerminalNode
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 (s *AcceptFromMnemonicStatementContext) EnterRule(listener antlr.ParseTreeListener)
func (*AcceptFromMnemonicStatementContext) ExitRule ¶
func (s *AcceptFromMnemonicStatementContext) ExitRule(listener antlr.ParseTreeListener)
func (*AcceptFromMnemonicStatementContext) FROM ¶
func (s *AcceptFromMnemonicStatementContext) FROM() antlr.TerminalNode
func (*AcceptFromMnemonicStatementContext) GetParser ¶
func (s *AcceptFromMnemonicStatementContext) GetParser() antlr.Parser
func (*AcceptFromMnemonicStatementContext) GetRuleContext ¶
func (s *AcceptFromMnemonicStatementContext) GetRuleContext() antlr.RuleContext
func (*AcceptFromMnemonicStatementContext) IsAcceptFromMnemonicStatementContext ¶
func (*AcceptFromMnemonicStatementContext) IsAcceptFromMnemonicStatementContext()
func (*AcceptFromMnemonicStatementContext) MnemonicName ¶
func (s *AcceptFromMnemonicStatementContext) MnemonicName() IMnemonicNameContext
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 (s *AcceptMessageCountStatementContext) COUNT() antlr.TerminalNode
func (*AcceptMessageCountStatementContext) EnterRule ¶
func (s *AcceptMessageCountStatementContext) EnterRule(listener antlr.ParseTreeListener)
func (*AcceptMessageCountStatementContext) ExitRule ¶
func (s *AcceptMessageCountStatementContext) ExitRule(listener antlr.ParseTreeListener)
func (*AcceptMessageCountStatementContext) GetParser ¶
func (s *AcceptMessageCountStatementContext) GetParser() antlr.Parser
func (*AcceptMessageCountStatementContext) GetRuleContext ¶
func (s *AcceptMessageCountStatementContext) GetRuleContext() antlr.RuleContext
func (*AcceptMessageCountStatementContext) IsAcceptMessageCountStatementContext ¶
func (*AcceptMessageCountStatementContext) IsAcceptMessageCountStatementContext()
func (*AcceptMessageCountStatementContext) MESSAGE ¶
func (s *AcceptMessageCountStatementContext) MESSAGE() antlr.TerminalNode
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 (s *AcceptStatementContext) ACCEPT() antlr.TerminalNode
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 (s *AcceptStatementContext) Identifier() IIdentifierContext
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 (s *AccessModeClauseContext) ACCESS() antlr.TerminalNode
func (*AccessModeClauseContext) DYNAMIC ¶
func (s *AccessModeClauseContext) DYNAMIC() antlr.TerminalNode
func (*AccessModeClauseContext) EXCLUSIVE ¶
func (s *AccessModeClauseContext) EXCLUSIVE() antlr.TerminalNode
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 (s *AccessModeClauseContext) IS() antlr.TerminalNode
func (*AccessModeClauseContext) IsAccessModeClauseContext ¶
func (*AccessModeClauseContext) IsAccessModeClauseContext()
func (*AccessModeClauseContext) MODE ¶
func (s *AccessModeClauseContext) MODE() antlr.TerminalNode
func (*AccessModeClauseContext) RANDOM ¶
func (s *AccessModeClauseContext) RANDOM() antlr.TerminalNode
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 (s *AddCorrespondingStatementContext) AddTo() IAddToContext
func (*AddCorrespondingStatementContext) CORR ¶
func (s *AddCorrespondingStatementContext) CORR() antlr.TerminalNode
func (*AddCorrespondingStatementContext) CORRESPONDING ¶
func (s *AddCorrespondingStatementContext) CORRESPONDING() antlr.TerminalNode
func (*AddCorrespondingStatementContext) EnterRule ¶
func (s *AddCorrespondingStatementContext) EnterRule(listener antlr.ParseTreeListener)
func (*AddCorrespondingStatementContext) ExitRule ¶
func (s *AddCorrespondingStatementContext) ExitRule(listener antlr.ParseTreeListener)
func (*AddCorrespondingStatementContext) GetParser ¶
func (s *AddCorrespondingStatementContext) GetParser() antlr.Parser
func (*AddCorrespondingStatementContext) GetRuleContext ¶
func (s *AddCorrespondingStatementContext) GetRuleContext() antlr.RuleContext
func (*AddCorrespondingStatementContext) Identifier ¶
func (s *AddCorrespondingStatementContext) Identifier() IIdentifierContext
func (*AddCorrespondingStatementContext) IsAddCorrespondingStatementContext ¶
func (*AddCorrespondingStatementContext) IsAddCorrespondingStatementContext()
func (*AddCorrespondingStatementContext) TO ¶
func (s *AddCorrespondingStatementContext) TO() antlr.TerminalNode
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