mps

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

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

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

Documentation

Overview

Example
package main

import (
	"bramp.net/antlr4/mps"

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

type exampleListener struct {
	*mps.BasempsListener
}

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

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

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

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewmpsLexer

func NewmpsLexer(input antlr.CharStream) *mpsLexer

func NewmpsParser

func NewmpsParser(input antlr.TokenStream) *mpsParser

Types

type BasempsListener

type BasempsListener struct{}

BasempsListener is a complete listener for a parse tree produced by mpsParser.

func (*BasempsListener) EnterBounds

func (s *BasempsListener) EnterBounds(ctx *BoundsContext)

EnterBounds is called when production bounds is entered.

func (*BasempsListener) EnterBoundsdatacard

func (s *BasempsListener) EnterBoundsdatacard(ctx *BoundsdatacardContext)

EnterBoundsdatacard is called when production boundsdatacard is entered.

func (*BasempsListener) EnterBoundsdatacards

func (s *BasempsListener) EnterBoundsdatacards(ctx *BoundsdatacardsContext)

EnterBoundsdatacards is called when production boundsdatacards is entered.

func (*BasempsListener) EnterColumndatacard

func (s *BasempsListener) EnterColumndatacard(ctx *ColumndatacardContext)

EnterColumndatacard is called when production columndatacard is entered.

func (*BasempsListener) EnterColumndatacards

func (s *BasempsListener) EnterColumndatacards(ctx *ColumndatacardsContext)

EnterColumndatacards is called when production columndatacards is entered.

func (*BasempsListener) EnterColumns

func (s *BasempsListener) EnterColumns(ctx *ColumnsContext)

EnterColumns is called when production columns is entered.

func (*BasempsListener) EnterEndata

func (s *BasempsListener) EnterEndata(ctx *EndataContext)

EnterEndata is called when production endata is entered.

func (*BasempsListener) EnterEndmarker

func (s *BasempsListener) EnterEndmarker(ctx *EndmarkerContext)

EnterEndmarker is called when production endmarker is entered.

func (*BasempsListener) EnterEveryRule

func (s *BasempsListener) EnterEveryRule(ctx antlr.ParserRuleContext)

EnterEveryRule is called when any rule is entered.

func (*BasempsListener) EnterFirstrow

func (s *BasempsListener) EnterFirstrow(ctx *FirstrowContext)

EnterFirstrow is called when production firstrow is entered.

func (*BasempsListener) EnterIntblock

func (s *BasempsListener) EnterIntblock(ctx *IntblockContext)

EnterIntblock is called when production intblock is entered.

func (*BasempsListener) EnterModell

func (s *BasempsListener) EnterModell(ctx *ModellContext)

EnterModell is called when production modell is entered.

func (*BasempsListener) EnterRanges

func (s *BasempsListener) EnterRanges(ctx *RangesContext)

EnterRanges is called when production ranges is entered.

func (*BasempsListener) EnterRangesdatacard

func (s *BasempsListener) EnterRangesdatacard(ctx *RangesdatacardContext)

EnterRangesdatacard is called when production rangesdatacard is entered.

func (*BasempsListener) EnterRangesdatacards

func (s *BasempsListener) EnterRangesdatacards(ctx *RangesdatacardsContext)

EnterRangesdatacards is called when production rangesdatacards is entered.

func (*BasempsListener) EnterRhs

func (s *BasempsListener) EnterRhs(ctx *RhsContext)

EnterRhs is called when production rhs is entered.

func (*BasempsListener) EnterRhsdatacard

func (s *BasempsListener) EnterRhsdatacard(ctx *RhsdatacardContext)

EnterRhsdatacard is called when production rhsdatacard is entered.

func (*BasempsListener) EnterRhsdatacards

func (s *BasempsListener) EnterRhsdatacards(ctx *RhsdatacardsContext)

EnterRhsdatacards is called when production rhsdatacards is entered.

func (*BasempsListener) EnterRowdatacard

func (s *BasempsListener) EnterRowdatacard(ctx *RowdatacardContext)

EnterRowdatacard is called when production rowdatacard is entered.

func (*BasempsListener) EnterRows

func (s *BasempsListener) EnterRows(ctx *RowsContext)

EnterRows is called when production rows is entered.

func (*BasempsListener) EnterStartmarker

func (s *BasempsListener) EnterStartmarker(ctx *StartmarkerContext)

EnterStartmarker is called when production startmarker is entered.

func (*BasempsListener) ExitBounds

func (s *BasempsListener) ExitBounds(ctx *BoundsContext)

ExitBounds is called when production bounds is exited.

func (*BasempsListener) ExitBoundsdatacard

func (s *BasempsListener) ExitBoundsdatacard(ctx *BoundsdatacardContext)

ExitBoundsdatacard is called when production boundsdatacard is exited.

func (*BasempsListener) ExitBoundsdatacards

func (s *BasempsListener) ExitBoundsdatacards(ctx *BoundsdatacardsContext)

ExitBoundsdatacards is called when production boundsdatacards is exited.

func (*BasempsListener) ExitColumndatacard

func (s *BasempsListener) ExitColumndatacard(ctx *ColumndatacardContext)

ExitColumndatacard is called when production columndatacard is exited.

func (*BasempsListener) ExitColumndatacards

func (s *BasempsListener) ExitColumndatacards(ctx *ColumndatacardsContext)

ExitColumndatacards is called when production columndatacards is exited.

func (*BasempsListener) ExitColumns

func (s *BasempsListener) ExitColumns(ctx *ColumnsContext)

ExitColumns is called when production columns is exited.

func (*BasempsListener) ExitEndata

func (s *BasempsListener) ExitEndata(ctx *EndataContext)

ExitEndata is called when production endata is exited.

func (*BasempsListener) ExitEndmarker

func (s *BasempsListener) ExitEndmarker(ctx *EndmarkerContext)

ExitEndmarker is called when production endmarker is exited.

func (*BasempsListener) ExitEveryRule

func (s *BasempsListener) ExitEveryRule(ctx antlr.ParserRuleContext)

ExitEveryRule is called when any rule is exited.

func (*BasempsListener) ExitFirstrow

func (s *BasempsListener) ExitFirstrow(ctx *FirstrowContext)

ExitFirstrow is called when production firstrow is exited.

func (*BasempsListener) ExitIntblock

func (s *BasempsListener) ExitIntblock(ctx *IntblockContext)

ExitIntblock is called when production intblock is exited.

func (*BasempsListener) ExitModell

func (s *BasempsListener) ExitModell(ctx *ModellContext)

ExitModell is called when production modell is exited.

func (*BasempsListener) ExitRanges

func (s *BasempsListener) ExitRanges(ctx *RangesContext)

ExitRanges is called when production ranges is exited.

func (*BasempsListener) ExitRangesdatacard

func (s *BasempsListener) ExitRangesdatacard(ctx *RangesdatacardContext)

ExitRangesdatacard is called when production rangesdatacard is exited.

func (*BasempsListener) ExitRangesdatacards

func (s *BasempsListener) ExitRangesdatacards(ctx *RangesdatacardsContext)

ExitRangesdatacards is called when production rangesdatacards is exited.

func (*BasempsListener) ExitRhs

func (s *BasempsListener) ExitRhs(ctx *RhsContext)

ExitRhs is called when production rhs is exited.

func (*BasempsListener) ExitRhsdatacard

func (s *BasempsListener) ExitRhsdatacard(ctx *RhsdatacardContext)

ExitRhsdatacard is called when production rhsdatacard is exited.

func (*BasempsListener) ExitRhsdatacards

func (s *BasempsListener) ExitRhsdatacards(ctx *RhsdatacardsContext)

ExitRhsdatacards is called when production rhsdatacards is exited.

func (*BasempsListener) ExitRowdatacard

func (s *BasempsListener) ExitRowdatacard(ctx *RowdatacardContext)

ExitRowdatacard is called when production rowdatacard is exited.

func (*BasempsListener) ExitRows

func (s *BasempsListener) ExitRows(ctx *RowsContext)

ExitRows is called when production rows is exited.

func (*BasempsListener) ExitStartmarker

func (s *BasempsListener) ExitStartmarker(ctx *StartmarkerContext)

ExitStartmarker is called when production startmarker is exited.

func (*BasempsListener) VisitErrorNode

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

VisitErrorNode is called when an error node is visited.

func (*BasempsListener) VisitTerminal

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

VisitTerminal is called when a terminal node is visited.

type BoundsContext

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

func NewBoundsContext

func NewBoundsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *BoundsContext

func NewEmptyBoundsContext

func NewEmptyBoundsContext() *BoundsContext

func (*BoundsContext) BOUNDSINDICATORCARD

func (s *BoundsContext) BOUNDSINDICATORCARD() antlr.TerminalNode

func (*BoundsContext) Boundsdatacards

func (s *BoundsContext) Boundsdatacards() IBoundsdatacardsContext

func (*BoundsContext) EnterRule

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

func (*BoundsContext) ExitRule

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

func (*BoundsContext) GetParser

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

func (*BoundsContext) GetRuleContext

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

func (*BoundsContext) IsBoundsContext

func (*BoundsContext) IsBoundsContext()

func (*BoundsContext) ToStringTree

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

type BoundsdatacardContext

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

func NewBoundsdatacardContext

func NewBoundsdatacardContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *BoundsdatacardContext

func NewEmptyBoundsdatacardContext

func NewEmptyBoundsdatacardContext() *BoundsdatacardContext

func (*BoundsdatacardContext) AllIDENTIFIER

func (s *BoundsdatacardContext) AllIDENTIFIER() []antlr.TerminalNode

func (*BoundsdatacardContext) BOUNDKEY

func (*BoundsdatacardContext) BOUNDSINDICATORCARD

func (s *BoundsdatacardContext) BOUNDSINDICATORCARD() antlr.TerminalNode

func (*BoundsdatacardContext) EnterRule

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

func (*BoundsdatacardContext) ExitRule

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

func (*BoundsdatacardContext) GetParser

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

func (*BoundsdatacardContext) GetRuleContext

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

func (*BoundsdatacardContext) IDENTIFIER

func (s *BoundsdatacardContext) IDENTIFIER(i int) antlr.TerminalNode

func (*BoundsdatacardContext) IsBoundsdatacardContext

func (*BoundsdatacardContext) IsBoundsdatacardContext()

func (*BoundsdatacardContext) NUMERICALVALUE

func (s *BoundsdatacardContext) NUMERICALVALUE() antlr.TerminalNode

func (*BoundsdatacardContext) ToStringTree

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

type BoundsdatacardsContext

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

func NewBoundsdatacardsContext

func NewBoundsdatacardsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *BoundsdatacardsContext

func NewEmptyBoundsdatacardsContext

func NewEmptyBoundsdatacardsContext() *BoundsdatacardsContext

func (*BoundsdatacardsContext) AllBoundsdatacard

func (s *BoundsdatacardsContext) AllBoundsdatacard() []IBoundsdatacardContext

func (*BoundsdatacardsContext) Boundsdatacard

func (s *BoundsdatacardsContext) Boundsdatacard(i int) IBoundsdatacardContext

func (*BoundsdatacardsContext) EnterRule

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

func (*BoundsdatacardsContext) ExitRule

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

func (*BoundsdatacardsContext) GetParser

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

func (*BoundsdatacardsContext) GetRuleContext

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

func (*BoundsdatacardsContext) IsBoundsdatacardsContext

func (*BoundsdatacardsContext) IsBoundsdatacardsContext()

func (*BoundsdatacardsContext) ToStringTree

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

type ColumndatacardContext

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

func NewColumndatacardContext

func NewColumndatacardContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ColumndatacardContext

func NewEmptyColumndatacardContext

func NewEmptyColumndatacardContext() *ColumndatacardContext

func (*ColumndatacardContext) AllIDENTIFIER

func (s *ColumndatacardContext) AllIDENTIFIER() []antlr.TerminalNode

func (*ColumndatacardContext) AllNUMERICALVALUE

func (s *ColumndatacardContext) AllNUMERICALVALUE() []antlr.TerminalNode

func (*ColumndatacardContext) EnterRule

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

func (*ColumndatacardContext) ExitRule

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

func (*ColumndatacardContext) GetParser

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

func (*ColumndatacardContext) GetRuleContext

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

func (*ColumndatacardContext) IDENTIFIER

func (s *ColumndatacardContext) IDENTIFIER(i int) antlr.TerminalNode

func (*ColumndatacardContext) IsColumndatacardContext

func (*ColumndatacardContext) IsColumndatacardContext()

func (*ColumndatacardContext) NUMERICALVALUE

func (s *ColumndatacardContext) NUMERICALVALUE(i int) antlr.TerminalNode

func (*ColumndatacardContext) ToStringTree

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

type ColumndatacardsContext

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

func NewColumndatacardsContext

func NewColumndatacardsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ColumndatacardsContext

func NewEmptyColumndatacardsContext

func NewEmptyColumndatacardsContext() *ColumndatacardsContext

func (*ColumndatacardsContext) AllColumndatacard

func (s *ColumndatacardsContext) AllColumndatacard() []IColumndatacardContext

func (*ColumndatacardsContext) AllIntblock

func (s *ColumndatacardsContext) AllIntblock() []IIntblockContext

func (*ColumndatacardsContext) Columndatacard

func (s *ColumndatacardsContext) Columndatacard(i int) IColumndatacardContext

func (*ColumndatacardsContext) EnterRule

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

func (*ColumndatacardsContext) ExitRule

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

func (*ColumndatacardsContext) GetParser

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

func (*ColumndatacardsContext) GetRuleContext

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

func (*ColumndatacardsContext) Intblock

func (*ColumndatacardsContext) IsColumndatacardsContext

func (*ColumndatacardsContext) IsColumndatacardsContext()

func (*ColumndatacardsContext) ToStringTree

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

type ColumnsContext

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

func NewColumnsContext

func NewColumnsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ColumnsContext

func NewEmptyColumnsContext

func NewEmptyColumnsContext() *ColumnsContext

func (*ColumnsContext) COLUMNINDICATORCARD

func (s *ColumnsContext) COLUMNINDICATORCARD() antlr.TerminalNode

func (*ColumnsContext) Columndatacards

func (s *ColumnsContext) Columndatacards() IColumndatacardsContext

func (*ColumnsContext) EnterRule

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

func (*ColumnsContext) ExitRule

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

func (*ColumnsContext) GetParser

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

func (*ColumnsContext) GetRuleContext

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

func (*ColumnsContext) IsColumnsContext

func (*ColumnsContext) IsColumnsContext()

func (*ColumnsContext) ToStringTree

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

type EndataContext

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

func NewEmptyEndataContext

func NewEmptyEndataContext() *EndataContext

func NewEndataContext

func NewEndataContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *EndataContext

func (*EndataContext) ENDATAINDICATORCARD

func (s *EndataContext) ENDATAINDICATORCARD() antlr.TerminalNode

func (*EndataContext) EnterRule

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

func (*EndataContext) ExitRule

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

func (*EndataContext) GetParser

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

func (*EndataContext) GetRuleContext

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

func (*EndataContext) IsEndataContext

func (*EndataContext) IsEndataContext()

func (*EndataContext) ToStringTree

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

type EndmarkerContext

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

func NewEmptyEndmarkerContext

func NewEmptyEndmarkerContext() *EndmarkerContext

func NewEndmarkerContext

func NewEndmarkerContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *EndmarkerContext

func (*EndmarkerContext) ENDMARKER

func (s *EndmarkerContext) ENDMARKER() antlr.TerminalNode

func (*EndmarkerContext) EnterRule

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

func (*EndmarkerContext) ExitRule

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

func (*EndmarkerContext) GetParser

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

func (*EndmarkerContext) GetRuleContext

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

func (*EndmarkerContext) IDENTIFIER

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

func (*EndmarkerContext) IsEndmarkerContext

func (*EndmarkerContext) IsEndmarkerContext()

func (*EndmarkerContext) KEYWORDMARKER

func (s *EndmarkerContext) KEYWORDMARKER() antlr.TerminalNode

func (*EndmarkerContext) ToStringTree

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

type FirstrowContext

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

func NewEmptyFirstrowContext

func NewEmptyFirstrowContext() *FirstrowContext

func NewFirstrowContext

func NewFirstrowContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *FirstrowContext

func (*FirstrowContext) EnterRule

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

func (*FirstrowContext) ExitRule

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

func (*FirstrowContext) GetParser

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

func (*FirstrowContext) GetRuleContext

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

func (*FirstrowContext) IDENTIFIER

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

func (*FirstrowContext) IsFirstrowContext

func (*FirstrowContext) IsFirstrowContext()

func (*FirstrowContext) KEYWORDFREE

func (s *FirstrowContext) KEYWORDFREE() antlr.TerminalNode

func (*FirstrowContext) NAMEINDICATORCARD

func (s *FirstrowContext) NAMEINDICATORCARD() antlr.TerminalNode

func (*FirstrowContext) ToStringTree

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

type IBoundsContext

type IBoundsContext interface {
	antlr.ParserRuleContext

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

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

IBoundsContext is an interface to support dynamic dispatch.

type IBoundsdatacardContext

type IBoundsdatacardContext interface {
	antlr.ParserRuleContext

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

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

IBoundsdatacardContext is an interface to support dynamic dispatch.

type IBoundsdatacardsContext

type IBoundsdatacardsContext interface {
	antlr.ParserRuleContext

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

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

IBoundsdatacardsContext is an interface to support dynamic dispatch.

type IColumndatacardContext

type IColumndatacardContext interface {
	antlr.ParserRuleContext

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

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

IColumndatacardContext is an interface to support dynamic dispatch.

type IColumndatacardsContext

type IColumndatacardsContext interface {
	antlr.ParserRuleContext

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

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

IColumndatacardsContext is an interface to support dynamic dispatch.

type IColumnsContext

type IColumnsContext interface {
	antlr.ParserRuleContext

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

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

IColumnsContext is an interface to support dynamic dispatch.

type IEndataContext

type IEndataContext interface {
	antlr.ParserRuleContext

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

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

IEndataContext is an interface to support dynamic dispatch.

type IEndmarkerContext

type IEndmarkerContext interface {
	antlr.ParserRuleContext

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

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

IEndmarkerContext is an interface to support dynamic dispatch.

type IFirstrowContext

type IFirstrowContext interface {
	antlr.ParserRuleContext

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

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

IFirstrowContext is an interface to support dynamic dispatch.

type IIntblockContext

type IIntblockContext interface {
	antlr.ParserRuleContext

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

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

IIntblockContext is an interface to support dynamic dispatch.

type IModellContext

type IModellContext interface {
	antlr.ParserRuleContext

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

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

IModellContext is an interface to support dynamic dispatch.

type IRangesContext

type IRangesContext interface {
	antlr.ParserRuleContext

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

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

IRangesContext is an interface to support dynamic dispatch.

type IRangesdatacardContext

type IRangesdatacardContext interface {
	antlr.ParserRuleContext

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

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

IRangesdatacardContext is an interface to support dynamic dispatch.

type IRangesdatacardsContext

type IRangesdatacardsContext interface {
	antlr.ParserRuleContext

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

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

IRangesdatacardsContext is an interface to support dynamic dispatch.

type IRhsContext

type IRhsContext interface {
	antlr.ParserRuleContext

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

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

IRhsContext is an interface to support dynamic dispatch.

type IRhsdatacardContext

type IRhsdatacardContext interface {
	antlr.ParserRuleContext

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

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

IRhsdatacardContext is an interface to support dynamic dispatch.

type IRhsdatacardsContext

type IRhsdatacardsContext interface {
	antlr.ParserRuleContext

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

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

IRhsdatacardsContext is an interface to support dynamic dispatch.

type IRowdatacardContext

type IRowdatacardContext interface {
	antlr.ParserRuleContext

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

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

IRowdatacardContext is an interface to support dynamic dispatch.

type IRowsContext

type IRowsContext interface {
	antlr.ParserRuleContext

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

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

IRowsContext is an interface to support dynamic dispatch.

type IStartmarkerContext

type IStartmarkerContext interface {
	antlr.ParserRuleContext

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

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

IStartmarkerContext is an interface to support dynamic dispatch.

type IntblockContext

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

func NewEmptyIntblockContext

func NewEmptyIntblockContext() *IntblockContext

func NewIntblockContext

func NewIntblockContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *IntblockContext

func (*IntblockContext) AllColumndatacard

func (s *IntblockContext) AllColumndatacard() []IColumndatacardContext

func (*IntblockContext) Columndatacard

func (s *IntblockContext) Columndatacard(i int) IColumndatacardContext

func (*IntblockContext) Endmarker

func (s *IntblockContext) Endmarker() IEndmarkerContext

func (*IntblockContext) EnterRule

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

func (*IntblockContext) ExitRule

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

func (*IntblockContext) GetParser

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

func (*IntblockContext) GetRuleContext

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

func (*IntblockContext) IsIntblockContext

func (*IntblockContext) IsIntblockContext()

func (*IntblockContext) Startmarker

func (s *IntblockContext) Startmarker() IStartmarkerContext

func (*IntblockContext) ToStringTree

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

type ModellContext

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

func NewEmptyModellContext

func NewEmptyModellContext() *ModellContext

func NewModellContext

func NewModellContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ModellContext

func (*ModellContext) Bounds

func (s *ModellContext) Bounds() IBoundsContext

func (*ModellContext) Columns

func (s *ModellContext) Columns() IColumnsContext

func (*ModellContext) EOF

func (s *ModellContext) EOF() antlr.TerminalNode

func (*ModellContext) Endata

func (s *ModellContext) Endata() IEndataContext

func (*ModellContext) EnterRule

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

func (*ModellContext) ExitRule

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

func (*ModellContext) Firstrow

func (s *ModellContext) Firstrow() IFirstrowContext

func (*ModellContext) GetParser

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

func (*ModellContext) GetRuleContext

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

func (*ModellContext) IsModellContext

func (*ModellContext) IsModellContext()

func (*ModellContext) Ranges

func (s *ModellContext) Ranges() IRangesContext

func (*ModellContext) Rhs

func (s *ModellContext) Rhs() IRhsContext

func (*ModellContext) Rows

func (s *ModellContext) Rows() IRowsContext

func (*ModellContext) ToStringTree

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

type RangesContext

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

func NewEmptyRangesContext

func NewEmptyRangesContext() *RangesContext

func NewRangesContext

func NewRangesContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RangesContext

func (*RangesContext) EnterRule

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

func (*RangesContext) ExitRule

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

func (*RangesContext) GetParser

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

func (*RangesContext) GetRuleContext

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

func (*RangesContext) IsRangesContext

func (*RangesContext) IsRangesContext()

func (*RangesContext) RANGESINDICATORCARD

func (s *RangesContext) RANGESINDICATORCARD() antlr.TerminalNode

func (*RangesContext) Rangesdatacards

func (s *RangesContext) Rangesdatacards() IRangesdatacardsContext

func (*RangesContext) ToStringTree

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

type RangesdatacardContext

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

func NewEmptyRangesdatacardContext

func NewEmptyRangesdatacardContext() *RangesdatacardContext

func NewRangesdatacardContext

func NewRangesdatacardContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RangesdatacardContext

func (*RangesdatacardContext) AllIDENTIFIER

func (s *RangesdatacardContext) AllIDENTIFIER() []antlr.TerminalNode

func (*RangesdatacardContext) AllNUMERICALVALUE

func (s *RangesdatacardContext) AllNUMERICALVALUE() []antlr.TerminalNode

func (*RangesdatacardContext) EnterRule

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

func (*RangesdatacardContext) ExitRule

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

func (*RangesdatacardContext) GetParser

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

func (*RangesdatacardContext) GetRuleContext

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

func (*RangesdatacardContext) IDENTIFIER

func (s *RangesdatacardContext) IDENTIFIER(i int) antlr.TerminalNode

func (*RangesdatacardContext) IsRangesdatacardContext

func (*RangesdatacardContext) IsRangesdatacardContext()

func (*RangesdatacardContext) NUMERICALVALUE

func (s *RangesdatacardContext) NUMERICALVALUE(i int) antlr.TerminalNode

func (*RangesdatacardContext) RANGESINDICATORCARD

func (s *RangesdatacardContext) RANGESINDICATORCARD() antlr.TerminalNode

func (*RangesdatacardContext) ToStringTree

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

type RangesdatacardsContext

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

func NewEmptyRangesdatacardsContext

func NewEmptyRangesdatacardsContext() *RangesdatacardsContext

func NewRangesdatacardsContext

func NewRangesdatacardsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RangesdatacardsContext

func (*RangesdatacardsContext) AllRangesdatacard

func (s *RangesdatacardsContext) AllRangesdatacard() []IRangesdatacardContext

func (*RangesdatacardsContext) EnterRule

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

func (*RangesdatacardsContext) ExitRule

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

func (*RangesdatacardsContext) GetParser

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

func (*RangesdatacardsContext) GetRuleContext

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

func (*RangesdatacardsContext) IsRangesdatacardsContext

func (*RangesdatacardsContext) IsRangesdatacardsContext()

func (*RangesdatacardsContext) Rangesdatacard

func (s *RangesdatacardsContext) Rangesdatacard(i int) IRangesdatacardContext

func (*RangesdatacardsContext) ToStringTree

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

type RhsContext

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

func NewEmptyRhsContext

func NewEmptyRhsContext() *RhsContext

func NewRhsContext

func NewRhsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RhsContext

func (*RhsContext) EnterRule

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

func (*RhsContext) ExitRule

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

func (*RhsContext) GetParser

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

func (*RhsContext) GetRuleContext

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

func (*RhsContext) IsRhsContext

func (*RhsContext) IsRhsContext()

func (*RhsContext) RHSINDICATORCARD

func (s *RhsContext) RHSINDICATORCARD() antlr.TerminalNode

func (*RhsContext) Rhsdatacards

func (s *RhsContext) Rhsdatacards() IRhsdatacardsContext

func (*RhsContext) ToStringTree

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

type RhsdatacardContext

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

func NewEmptyRhsdatacardContext

func NewEmptyRhsdatacardContext() *RhsdatacardContext

func NewRhsdatacardContext

func NewRhsdatacardContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RhsdatacardContext

func (*RhsdatacardContext) AllIDENTIFIER

func (s *RhsdatacardContext) AllIDENTIFIER() []antlr.TerminalNode

func (*RhsdatacardContext) AllNUMERICALVALUE

func (s *RhsdatacardContext) AllNUMERICALVALUE() []antlr.TerminalNode

func (*RhsdatacardContext) EnterRule

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

func (*RhsdatacardContext) ExitRule

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

func (*RhsdatacardContext) GetParser

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

func (*RhsdatacardContext) GetRuleContext

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

func (*RhsdatacardContext) IDENTIFIER

func (s *RhsdatacardContext) IDENTIFIER(i int) antlr.TerminalNode

func (*RhsdatacardContext) IsRhsdatacardContext

func (*RhsdatacardContext) IsRhsdatacardContext()

func (*RhsdatacardContext) NUMERICALVALUE

func (s *RhsdatacardContext) NUMERICALVALUE(i int) antlr.TerminalNode

func (*RhsdatacardContext) RHSINDICATORCARD

func (s *RhsdatacardContext) RHSINDICATORCARD() antlr.TerminalNode

func (*RhsdatacardContext) ToStringTree

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

type RhsdatacardsContext

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

func NewEmptyRhsdatacardsContext

func NewEmptyRhsdatacardsContext() *RhsdatacardsContext

func NewRhsdatacardsContext

func NewRhsdatacardsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RhsdatacardsContext

func (*RhsdatacardsContext) AllRhsdatacard

func (s *RhsdatacardsContext) AllRhsdatacard() []IRhsdatacardContext

func (*RhsdatacardsContext) EnterRule

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

func (*RhsdatacardsContext) ExitRule

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

func (*RhsdatacardsContext) GetParser

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

func (*RhsdatacardsContext) GetRuleContext

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

func (*RhsdatacardsContext) IsRhsdatacardsContext

func (*RhsdatacardsContext) IsRhsdatacardsContext()

func (*RhsdatacardsContext) Rhsdatacard

func (s *RhsdatacardsContext) Rhsdatacard(i int) IRhsdatacardContext

func (*RhsdatacardsContext) ToStringTree

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

type RowdatacardContext

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

func NewEmptyRowdatacardContext

func NewEmptyRowdatacardContext() *RowdatacardContext

func NewRowdatacardContext

func NewRowdatacardContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RowdatacardContext

func (*RowdatacardContext) EnterRule

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

func (*RowdatacardContext) ExitRule

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

func (*RowdatacardContext) GetParser

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

func (*RowdatacardContext) GetRuleContext

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

func (*RowdatacardContext) IDENTIFIER

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

func (*RowdatacardContext) IsRowdatacardContext

func (*RowdatacardContext) IsRowdatacardContext()

func (*RowdatacardContext) ROWTYPE

func (s *RowdatacardContext) ROWTYPE() antlr.TerminalNode

func (*RowdatacardContext) ToStringTree

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

type RowsContext

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

func NewEmptyRowsContext

func NewEmptyRowsContext() *RowsContext

func NewRowsContext

func NewRowsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *RowsContext

func (*RowsContext) AllRowdatacard

func (s *RowsContext) AllRowdatacard() []IRowdatacardContext

func (*RowsContext) EnterRule

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

func (*RowsContext) ExitRule

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

func (*RowsContext) GetParser

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

func (*RowsContext) GetRuleContext

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

func (*RowsContext) IsRowsContext

func (*RowsContext) IsRowsContext()

func (*RowsContext) ROWINDICATORCARD

func (s *RowsContext) ROWINDICATORCARD() antlr.TerminalNode

func (*RowsContext) Rowdatacard

func (s *RowsContext) Rowdatacard(i int) IRowdatacardContext

func (*RowsContext) ToStringTree

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

type StartmarkerContext

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

func NewEmptyStartmarkerContext

func NewEmptyStartmarkerContext() *StartmarkerContext

func NewStartmarkerContext

func NewStartmarkerContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *StartmarkerContext

func (*StartmarkerContext) EnterRule

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

func (*StartmarkerContext) ExitRule

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

func (*StartmarkerContext) GetParser

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

func (*StartmarkerContext) GetRuleContext

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

func (*StartmarkerContext) IDENTIFIER

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

func (*StartmarkerContext) IsStartmarkerContext

func (*StartmarkerContext) IsStartmarkerContext()

func (*StartmarkerContext) KEYWORDMARKER

func (s *StartmarkerContext) KEYWORDMARKER() antlr.TerminalNode

func (*StartmarkerContext) STARTMARKER

func (s *StartmarkerContext) STARTMARKER() antlr.TerminalNode

func (*StartmarkerContext) ToStringTree

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

Jump to

Keyboard shortcuts

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