mdx

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

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

type exampleListener struct {
	*mdx.BasemdxListener
}

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

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

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

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewmdxLexer

func NewmdxLexer(input antlr.CharStream) *mdxLexer

func NewmdxParser

func NewmdxParser(input antlr.TokenStream) *mdxParser

Types

type Amp_quoted_identifierContext

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

func NewAmp_quoted_identifierContext

func NewAmp_quoted_identifierContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Amp_quoted_identifierContext

func NewEmptyAmp_quoted_identifierContext

func NewEmptyAmp_quoted_identifierContext() *Amp_quoted_identifierContext

func (*Amp_quoted_identifierContext) AMP_QUOTED_ID

func (s *Amp_quoted_identifierContext) AMP_QUOTED_ID() antlr.TerminalNode

func (*Amp_quoted_identifierContext) EnterRule

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

func (*Amp_quoted_identifierContext) ExitRule

func (*Amp_quoted_identifierContext) GetParser

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

func (*Amp_quoted_identifierContext) GetRuleContext

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

func (*Amp_quoted_identifierContext) IsAmp_quoted_identifierContext

func (*Amp_quoted_identifierContext) IsAmp_quoted_identifierContext()

func (*Amp_quoted_identifierContext) ToStringTree

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

type Axis_nameContext

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

func NewAxis_nameContext

func NewAxis_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Axis_nameContext

func NewEmptyAxis_nameContext

func NewEmptyAxis_nameContext() *Axis_nameContext

func (*Axis_nameContext) EnterRule

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

func (*Axis_nameContext) ExitRule

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

func (*Axis_nameContext) GetParser

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

func (*Axis_nameContext) GetRuleContext

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

func (*Axis_nameContext) Identifier

func (s *Axis_nameContext) Identifier() IIdentifierContext

func (*Axis_nameContext) IsAxis_nameContext

func (*Axis_nameContext) IsAxis_nameContext()

func (*Axis_nameContext) ToStringTree

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

type Axis_specificationContext

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

func NewAxis_specificationContext

func NewAxis_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Axis_specificationContext

func NewEmptyAxis_specificationContext

func NewEmptyAxis_specificationContext() *Axis_specificationContext

func (*Axis_specificationContext) Axis_name

func (*Axis_specificationContext) Dim_props

func (*Axis_specificationContext) EMPTY

func (*Axis_specificationContext) EnterRule

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

func (*Axis_specificationContext) ExitRule

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

func (*Axis_specificationContext) Expression

func (*Axis_specificationContext) GetParser

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

func (*Axis_specificationContext) GetRuleContext

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

func (*Axis_specificationContext) IsAxis_specificationContext

func (*Axis_specificationContext) IsAxis_specificationContext()

func (*Axis_specificationContext) NON

func (*Axis_specificationContext) ON

func (*Axis_specificationContext) ToStringTree

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

type Axis_specification_listContext

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

func NewAxis_specification_listContext

func NewAxis_specification_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Axis_specification_listContext

func NewEmptyAxis_specification_listContext

func NewEmptyAxis_specification_listContext() *Axis_specification_listContext

func (*Axis_specification_listContext) AllAxis_specification

func (s *Axis_specification_listContext) AllAxis_specification() []IAxis_specificationContext

func (*Axis_specification_listContext) AllCOMMA

func (*Axis_specification_listContext) Axis_specification

func (*Axis_specification_listContext) COMMA

func (*Axis_specification_listContext) EnterRule

func (*Axis_specification_listContext) ExitRule

func (*Axis_specification_listContext) GetParser

func (*Axis_specification_listContext) GetRuleContext

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

func (*Axis_specification_listContext) IsAxis_specification_listContext

func (*Axis_specification_listContext) IsAxis_specification_listContext()

func (*Axis_specification_listContext) ToStringTree

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

type BasemdxListener

type BasemdxListener struct{}

BasemdxListener is a complete listener for a parse tree produced by mdxParser.

func (*BasemdxListener) EnterAmp_quoted_identifier

func (s *BasemdxListener) EnterAmp_quoted_identifier(ctx *Amp_quoted_identifierContext)

EnterAmp_quoted_identifier is called when production amp_quoted_identifier is entered.

func (*BasemdxListener) EnterAxis_name

func (s *BasemdxListener) EnterAxis_name(ctx *Axis_nameContext)

EnterAxis_name is called when production axis_name is entered.

func (*BasemdxListener) EnterAxis_specification

func (s *BasemdxListener) EnterAxis_specification(ctx *Axis_specificationContext)

EnterAxis_specification is called when production axis_specification is entered.

func (*BasemdxListener) EnterAxis_specification_list

func (s *BasemdxListener) EnterAxis_specification_list(ctx *Axis_specification_listContext)

EnterAxis_specification_list is called when production axis_specification_list is entered.

func (*BasemdxListener) EnterCase_expression

func (s *BasemdxListener) EnterCase_expression(ctx *Case_expressionContext)

EnterCase_expression is called when production case_expression is entered.

func (*BasemdxListener) EnterCell_property

func (s *BasemdxListener) EnterCell_property(ctx *Cell_propertyContext)

EnterCell_property is called when production cell_property is entered.

func (*BasemdxListener) EnterCell_property_list

func (s *BasemdxListener) EnterCell_property_list(ctx *Cell_property_listContext)

EnterCell_property_list is called when production cell_property_list is entered.

func (*BasemdxListener) EnterCell_props

func (s *BasemdxListener) EnterCell_props(ctx *Cell_propsContext)

EnterCell_props is called when production cell_props is entered.

func (*BasemdxListener) EnterComp_op

func (s *BasemdxListener) EnterComp_op(ctx *Comp_opContext)

EnterComp_op is called when production comp_op is entered.

func (*BasemdxListener) EnterCompound_id

func (s *BasemdxListener) EnterCompound_id(ctx *Compound_idContext)

EnterCompound_id is called when production compound_id is entered.

func (*BasemdxListener) EnterCube_name

func (s *BasemdxListener) EnterCube_name(ctx *Cube_nameContext)

EnterCube_name is called when production cube_name is entered.

func (*BasemdxListener) EnterCube_specification

func (s *BasemdxListener) EnterCube_specification(ctx *Cube_specificationContext)

EnterCube_specification is called when production cube_specification is entered.

func (*BasemdxListener) EnterDim_props

func (s *BasemdxListener) EnterDim_props(ctx *Dim_propsContext)

EnterDim_props is called when production dim_props is entered.

func (*BasemdxListener) EnterEveryRule

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

EnterEveryRule is called when any rule is entered.

func (*BasemdxListener) EnterExp_list

func (s *BasemdxListener) EnterExp_list(ctx *Exp_listContext)

EnterExp_list is called when production exp_list is entered.

func (*BasemdxListener) EnterExpression

func (s *BasemdxListener) EnterExpression(ctx *ExpressionContext)

EnterExpression is called when production expression is entered.

func (*BasemdxListener) EnterFactor

func (s *BasemdxListener) EnterFactor(ctx *FactorContext)

EnterFactor is called when production factor is entered.

func (*BasemdxListener) EnterFormula_specification

func (s *BasemdxListener) EnterFormula_specification(ctx *Formula_specificationContext)

EnterFormula_specification is called when production formula_specification is entered.

func (*BasemdxListener) EnterFunction

func (s *BasemdxListener) EnterFunction(ctx *FunctionContext)

EnterFunction is called when production function is entered.

func (*BasemdxListener) EnterIdentifier

func (s *BasemdxListener) EnterIdentifier(ctx *IdentifierContext)

EnterIdentifier is called when production identifier is entered.

func (*BasemdxListener) EnterKeyword

func (s *BasemdxListener) EnterKeyword(ctx *KeywordContext)

EnterKeyword is called when production keyword is entered.

func (*BasemdxListener) EnterMandatory_cell_property

func (s *BasemdxListener) EnterMandatory_cell_property(ctx *Mandatory_cell_propertyContext)

EnterMandatory_cell_property is called when production mandatory_cell_property is entered.

func (*BasemdxListener) EnterMdx_statement

func (s *BasemdxListener) EnterMdx_statement(ctx *Mdx_statementContext)

EnterMdx_statement is called when production mdx_statement is entered.

func (*BasemdxListener) EnterMember_name

func (s *BasemdxListener) EnterMember_name(ctx *Member_nameContext)

EnterMember_name is called when production member_name is entered.

func (*BasemdxListener) EnterMember_property_def_list

func (s *BasemdxListener) EnterMember_property_def_list(ctx *Member_property_def_listContext)

EnterMember_property_def_list is called when production member_property_def_list is entered.

func (*BasemdxListener) EnterMember_property_definition

func (s *BasemdxListener) EnterMember_property_definition(ctx *Member_property_definitionContext)

EnterMember_property_definition is called when production member_property_definition is entered.

func (*BasemdxListener) EnterMember_specification

func (s *BasemdxListener) EnterMember_specification(ctx *Member_specificationContext)

EnterMember_specification is called when production member_specification is entered.

func (*BasemdxListener) EnterProperty

func (s *BasemdxListener) EnterProperty(ctx *PropertyContext)

EnterProperty is called when production property is entered.

func (*BasemdxListener) EnterProperty_list

func (s *BasemdxListener) EnterProperty_list(ctx *Property_listContext)

EnterProperty_list is called when production property_list is entered.

func (*BasemdxListener) EnterProvider_specific_cell_property

func (s *BasemdxListener) EnterProvider_specific_cell_property(ctx *Provider_specific_cell_propertyContext)

EnterProvider_specific_cell_property is called when production provider_specific_cell_property is entered.

func (*BasemdxListener) EnterQuoted_identifier

func (s *BasemdxListener) EnterQuoted_identifier(ctx *Quoted_identifierContext)

EnterQuoted_identifier is called when production quoted_identifier is entered.

func (*BasemdxListener) EnterSelect_statement

func (s *BasemdxListener) EnterSelect_statement(ctx *Select_statementContext)

EnterSelect_statement is called when production select_statement is entered.

func (*BasemdxListener) EnterSet_name

func (s *BasemdxListener) EnterSet_name(ctx *Set_nameContext)

EnterSet_name is called when production set_name is entered.

func (*BasemdxListener) EnterSet_specification

func (s *BasemdxListener) EnterSet_specification(ctx *Set_specificationContext)

EnterSet_specification is called when production set_specification is entered.

func (*BasemdxListener) EnterSingle_formula_specification

func (s *BasemdxListener) EnterSingle_formula_specification(ctx *Single_formula_specificationContext)

EnterSingle_formula_specification is called when production single_formula_specification is entered.

func (*BasemdxListener) EnterSlicer_specification

func (s *BasemdxListener) EnterSlicer_specification(ctx *Slicer_specificationContext)

EnterSlicer_specification is called when production slicer_specification is entered.

func (*BasemdxListener) EnterTerm

func (s *BasemdxListener) EnterTerm(ctx *TermContext)

EnterTerm is called when production term is entered.

func (*BasemdxListener) EnterTerm2

func (s *BasemdxListener) EnterTerm2(ctx *Term2Context)

EnterTerm2 is called when production term2 is entered.

func (*BasemdxListener) EnterTerm3

func (s *BasemdxListener) EnterTerm3(ctx *Term3Context)

EnterTerm3 is called when production term3 is entered.

func (*BasemdxListener) EnterTerm4

func (s *BasemdxListener) EnterTerm4(ctx *Term4Context)

EnterTerm4 is called when production term4 is entered.

func (*BasemdxListener) EnterTerm5

func (s *BasemdxListener) EnterTerm5(ctx *Term5Context)

EnterTerm5 is called when production term5 is entered.

func (*BasemdxListener) EnterUnquoted_identifier

func (s *BasemdxListener) EnterUnquoted_identifier(ctx *Unquoted_identifierContext)

EnterUnquoted_identifier is called when production unquoted_identifier is entered.

func (*BasemdxListener) EnterValue_expression

func (s *BasemdxListener) EnterValue_expression(ctx *Value_expressionContext)

EnterValue_expression is called when production value_expression is entered.

func (*BasemdxListener) EnterValue_expression_primary

func (s *BasemdxListener) EnterValue_expression_primary(ctx *Value_expression_primaryContext)

EnterValue_expression_primary is called when production value_expression_primary is entered.

func (*BasemdxListener) EnterValue_expression_primary0

func (s *BasemdxListener) EnterValue_expression_primary0(ctx *Value_expression_primary0Context)

EnterValue_expression_primary0 is called when production value_expression_primary0 is entered.

func (*BasemdxListener) EnterValue_or_expression

func (s *BasemdxListener) EnterValue_or_expression(ctx *Value_or_expressionContext)

EnterValue_or_expression is called when production value_or_expression is entered.

func (*BasemdxListener) EnterValue_xor_expression

func (s *BasemdxListener) EnterValue_xor_expression(ctx *Value_xor_expressionContext)

EnterValue_xor_expression is called when production value_xor_expression is entered.

func (*BasemdxListener) EnterWhen_clause

func (s *BasemdxListener) EnterWhen_clause(ctx *When_clauseContext)

EnterWhen_clause is called when production when_clause is entered.

func (*BasemdxListener) EnterWhen_list

func (s *BasemdxListener) EnterWhen_list(ctx *When_listContext)

EnterWhen_list is called when production when_list is entered.

func (*BasemdxListener) ExitAmp_quoted_identifier

func (s *BasemdxListener) ExitAmp_quoted_identifier(ctx *Amp_quoted_identifierContext)

ExitAmp_quoted_identifier is called when production amp_quoted_identifier is exited.

func (*BasemdxListener) ExitAxis_name

func (s *BasemdxListener) ExitAxis_name(ctx *Axis_nameContext)

ExitAxis_name is called when production axis_name is exited.

func (*BasemdxListener) ExitAxis_specification

func (s *BasemdxListener) ExitAxis_specification(ctx *Axis_specificationContext)

ExitAxis_specification is called when production axis_specification is exited.

func (*BasemdxListener) ExitAxis_specification_list

func (s *BasemdxListener) ExitAxis_specification_list(ctx *Axis_specification_listContext)

ExitAxis_specification_list is called when production axis_specification_list is exited.

func (*BasemdxListener) ExitCase_expression

func (s *BasemdxListener) ExitCase_expression(ctx *Case_expressionContext)

ExitCase_expression is called when production case_expression is exited.

func (*BasemdxListener) ExitCell_property

func (s *BasemdxListener) ExitCell_property(ctx *Cell_propertyContext)

ExitCell_property is called when production cell_property is exited.

func (*BasemdxListener) ExitCell_property_list

func (s *BasemdxListener) ExitCell_property_list(ctx *Cell_property_listContext)

ExitCell_property_list is called when production cell_property_list is exited.

func (*BasemdxListener) ExitCell_props

func (s *BasemdxListener) ExitCell_props(ctx *Cell_propsContext)

ExitCell_props is called when production cell_props is exited.

func (*BasemdxListener) ExitComp_op

func (s *BasemdxListener) ExitComp_op(ctx *Comp_opContext)

ExitComp_op is called when production comp_op is exited.

func (*BasemdxListener) ExitCompound_id

func (s *BasemdxListener) ExitCompound_id(ctx *Compound_idContext)

ExitCompound_id is called when production compound_id is exited.

func (*BasemdxListener) ExitCube_name

func (s *BasemdxListener) ExitCube_name(ctx *Cube_nameContext)

ExitCube_name is called when production cube_name is exited.

func (*BasemdxListener) ExitCube_specification

func (s *BasemdxListener) ExitCube_specification(ctx *Cube_specificationContext)

ExitCube_specification is called when production cube_specification is exited.

func (*BasemdxListener) ExitDim_props

func (s *BasemdxListener) ExitDim_props(ctx *Dim_propsContext)

ExitDim_props is called when production dim_props is exited.

func (*BasemdxListener) ExitEveryRule

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

ExitEveryRule is called when any rule is exited.

func (*BasemdxListener) ExitExp_list

func (s *BasemdxListener) ExitExp_list(ctx *Exp_listContext)

ExitExp_list is called when production exp_list is exited.

func (*BasemdxListener) ExitExpression

func (s *BasemdxListener) ExitExpression(ctx *ExpressionContext)

ExitExpression is called when production expression is exited.

func (*BasemdxListener) ExitFactor

func (s *BasemdxListener) ExitFactor(ctx *FactorContext)

ExitFactor is called when production factor is exited.

func (*BasemdxListener) ExitFormula_specification

func (s *BasemdxListener) ExitFormula_specification(ctx *Formula_specificationContext)

ExitFormula_specification is called when production formula_specification is exited.

func (*BasemdxListener) ExitFunction

func (s *BasemdxListener) ExitFunction(ctx *FunctionContext)

ExitFunction is called when production function is exited.

func (*BasemdxListener) ExitIdentifier

func (s *BasemdxListener) ExitIdentifier(ctx *IdentifierContext)

ExitIdentifier is called when production identifier is exited.

func (*BasemdxListener) ExitKeyword

func (s *BasemdxListener) ExitKeyword(ctx *KeywordContext)

ExitKeyword is called when production keyword is exited.

func (*BasemdxListener) ExitMandatory_cell_property

func (s *BasemdxListener) ExitMandatory_cell_property(ctx *Mandatory_cell_propertyContext)

ExitMandatory_cell_property is called when production mandatory_cell_property is exited.

func (*BasemdxListener) ExitMdx_statement

func (s *BasemdxListener) ExitMdx_statement(ctx *Mdx_statementContext)

ExitMdx_statement is called when production mdx_statement is exited.

func (*BasemdxListener) ExitMember_name

func (s *BasemdxListener) ExitMember_name(ctx *Member_nameContext)

ExitMember_name is called when production member_name is exited.

func (*BasemdxListener) ExitMember_property_def_list

func (s *BasemdxListener) ExitMember_property_def_list(ctx *Member_property_def_listContext)

ExitMember_property_def_list is called when production member_property_def_list is exited.

func (*BasemdxListener) ExitMember_property_definition

func (s *BasemdxListener) ExitMember_property_definition(ctx *Member_property_definitionContext)

ExitMember_property_definition is called when production member_property_definition is exited.

func (*BasemdxListener) ExitMember_specification

func (s *BasemdxListener) ExitMember_specification(ctx *Member_specificationContext)

ExitMember_specification is called when production member_specification is exited.

func (*BasemdxListener) ExitProperty

func (s *BasemdxListener) ExitProperty(ctx *PropertyContext)

ExitProperty is called when production property is exited.

func (*BasemdxListener) ExitProperty_list

func (s *BasemdxListener) ExitProperty_list(ctx *Property_listContext)

ExitProperty_list is called when production property_list is exited.

func (*BasemdxListener) ExitProvider_specific_cell_property

func (s *BasemdxListener) ExitProvider_specific_cell_property(ctx *Provider_specific_cell_propertyContext)

ExitProvider_specific_cell_property is called when production provider_specific_cell_property is exited.

func (*BasemdxListener) ExitQuoted_identifier

func (s *BasemdxListener) ExitQuoted_identifier(ctx *Quoted_identifierContext)

ExitQuoted_identifier is called when production quoted_identifier is exited.

func (*BasemdxListener) ExitSelect_statement

func (s *BasemdxListener) ExitSelect_statement(ctx *Select_statementContext)

ExitSelect_statement is called when production select_statement is exited.

func (*BasemdxListener) ExitSet_name

func (s *BasemdxListener) ExitSet_name(ctx *Set_nameContext)

ExitSet_name is called when production set_name is exited.

func (*BasemdxListener) ExitSet_specification

func (s *BasemdxListener) ExitSet_specification(ctx *Set_specificationContext)

ExitSet_specification is called when production set_specification is exited.

func (*BasemdxListener) ExitSingle_formula_specification

func (s *BasemdxListener) ExitSingle_formula_specification(ctx *Single_formula_specificationContext)

ExitSingle_formula_specification is called when production single_formula_specification is exited.

func (*BasemdxListener) ExitSlicer_specification

func (s *BasemdxListener) ExitSlicer_specification(ctx *Slicer_specificationContext)

ExitSlicer_specification is called when production slicer_specification is exited.

func (*BasemdxListener) ExitTerm

func (s *BasemdxListener) ExitTerm(ctx *TermContext)

ExitTerm is called when production term is exited.

func (*BasemdxListener) ExitTerm2

func (s *BasemdxListener) ExitTerm2(ctx *Term2Context)

ExitTerm2 is called when production term2 is exited.

func (*BasemdxListener) ExitTerm3

func (s *BasemdxListener) ExitTerm3(ctx *Term3Context)

ExitTerm3 is called when production term3 is exited.

func (*BasemdxListener) ExitTerm4

func (s *BasemdxListener) ExitTerm4(ctx *Term4Context)

ExitTerm4 is called when production term4 is exited.

func (*BasemdxListener) ExitTerm5

func (s *BasemdxListener) ExitTerm5(ctx *Term5Context)

ExitTerm5 is called when production term5 is exited.

func (*BasemdxListener) ExitUnquoted_identifier

func (s *BasemdxListener) ExitUnquoted_identifier(ctx *Unquoted_identifierContext)

ExitUnquoted_identifier is called when production unquoted_identifier is exited.

func (*BasemdxListener) ExitValue_expression

func (s *BasemdxListener) ExitValue_expression(ctx *Value_expressionContext)

ExitValue_expression is called when production value_expression is exited.

func (*BasemdxListener) ExitValue_expression_primary

func (s *BasemdxListener) ExitValue_expression_primary(ctx *Value_expression_primaryContext)

ExitValue_expression_primary is called when production value_expression_primary is exited.

func (*BasemdxListener) ExitValue_expression_primary0

func (s *BasemdxListener) ExitValue_expression_primary0(ctx *Value_expression_primary0Context)

ExitValue_expression_primary0 is called when production value_expression_primary0 is exited.

func (*BasemdxListener) ExitValue_or_expression

func (s *BasemdxListener) ExitValue_or_expression(ctx *Value_or_expressionContext)

ExitValue_or_expression is called when production value_or_expression is exited.

func (*BasemdxListener) ExitValue_xor_expression

func (s *BasemdxListener) ExitValue_xor_expression(ctx *Value_xor_expressionContext)

ExitValue_xor_expression is called when production value_xor_expression is exited.

func (*BasemdxListener) ExitWhen_clause

func (s *BasemdxListener) ExitWhen_clause(ctx *When_clauseContext)

ExitWhen_clause is called when production when_clause is exited.

func (*BasemdxListener) ExitWhen_list

func (s *BasemdxListener) ExitWhen_list(ctx *When_listContext)

ExitWhen_list is called when production when_list is exited.

func (*BasemdxListener) VisitErrorNode

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

VisitErrorNode is called when an error node is visited.

func (*BasemdxListener) VisitTerminal

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

VisitTerminal is called when a terminal node is visited.

type Case_expressionContext

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

func NewCase_expressionContext

func NewCase_expressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Case_expressionContext

func NewEmptyCase_expressionContext

func NewEmptyCase_expressionContext() *Case_expressionContext

func (*Case_expressionContext) AllValue_expression

func (s *Case_expressionContext) AllValue_expression() []IValue_expressionContext

func (*Case_expressionContext) CASE

func (*Case_expressionContext) ELSE

func (*Case_expressionContext) END

func (*Case_expressionContext) EnterRule

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

func (*Case_expressionContext) ExitRule

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

func (*Case_expressionContext) GetParser

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

func (*Case_expressionContext) GetRuleContext

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

func (*Case_expressionContext) IsCase_expressionContext

func (*Case_expressionContext) IsCase_expressionContext()

func (*Case_expressionContext) ToStringTree

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

func (*Case_expressionContext) Value_expression

func (s *Case_expressionContext) Value_expression(i int) IValue_expressionContext

func (*Case_expressionContext) When_list

type Cell_propertyContext

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

func NewCell_propertyContext

func NewCell_propertyContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Cell_propertyContext

func NewEmptyCell_propertyContext

func NewEmptyCell_propertyContext() *Cell_propertyContext

func (*Cell_propertyContext) EnterRule

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

func (*Cell_propertyContext) ExitRule

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

func (*Cell_propertyContext) GetParser

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

func (*Cell_propertyContext) GetRuleContext

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

func (*Cell_propertyContext) IsCell_propertyContext

func (*Cell_propertyContext) IsCell_propertyContext()

func (*Cell_propertyContext) Mandatory_cell_property

func (s *Cell_propertyContext) Mandatory_cell_property() IMandatory_cell_propertyContext

func (*Cell_propertyContext) Provider_specific_cell_property

func (s *Cell_propertyContext) Provider_specific_cell_property() IProvider_specific_cell_propertyContext

func (*Cell_propertyContext) ToStringTree

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

type Cell_property_listContext

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

func NewCell_property_listContext

func NewCell_property_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Cell_property_listContext

func NewEmptyCell_property_listContext

func NewEmptyCell_property_listContext() *Cell_property_listContext

func (*Cell_property_listContext) AllCell_property

func (s *Cell_property_listContext) AllCell_property() []ICell_propertyContext

func (*Cell_property_listContext) COMMA

func (*Cell_property_listContext) Cell_property

func (*Cell_property_listContext) EnterRule

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

func (*Cell_property_listContext) ExitRule

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

func (*Cell_property_listContext) GetParser

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

func (*Cell_property_listContext) GetRuleContext

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

func (*Cell_property_listContext) IsCell_property_listContext

func (*Cell_property_listContext) IsCell_property_listContext()

func (*Cell_property_listContext) ToStringTree

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

type Cell_propsContext

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

func NewCell_propsContext

func NewCell_propsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Cell_propsContext

func NewEmptyCell_propsContext

func NewEmptyCell_propsContext() *Cell_propsContext

func (*Cell_propsContext) CELL

func (*Cell_propsContext) Cell_property_list

func (s *Cell_propsContext) Cell_property_list() ICell_property_listContext

func (*Cell_propsContext) EnterRule

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

func (*Cell_propsContext) ExitRule

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

func (*Cell_propsContext) GetParser

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

func (*Cell_propsContext) GetRuleContext

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

func (*Cell_propsContext) IsCell_propsContext

func (*Cell_propsContext) IsCell_propsContext()

func (*Cell_propsContext) PROPERTIES

func (s *Cell_propsContext) PROPERTIES() antlr.TerminalNode

func (*Cell_propsContext) ToStringTree

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

type Comp_opContext

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

func NewComp_opContext

func NewComp_opContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Comp_opContext

func NewEmptyComp_opContext

func NewEmptyComp_opContext() *Comp_opContext

func (*Comp_opContext) EQ

func (*Comp_opContext) EnterRule

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

func (*Comp_opContext) ExitRule

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

func (*Comp_opContext) GE

func (*Comp_opContext) GT

func (*Comp_opContext) GetParser

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

func (*Comp_opContext) GetRuleContext

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

func (*Comp_opContext) IsComp_opContext

func (*Comp_opContext) IsComp_opContext()

func (*Comp_opContext) LE

func (*Comp_opContext) LT

func (*Comp_opContext) NE

func (*Comp_opContext) ToStringTree

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

type Compound_idContext

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

func NewCompound_idContext

func NewCompound_idContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Compound_idContext

func NewEmptyCompound_idContext

func NewEmptyCompound_idContext() *Compound_idContext

func (*Compound_idContext) AllDOT

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

func (*Compound_idContext) AllIdentifier

func (s *Compound_idContext) AllIdentifier() []IIdentifierContext

func (*Compound_idContext) DOT

func (*Compound_idContext) EnterRule

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

func (*Compound_idContext) ExitRule

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

func (*Compound_idContext) GetParser

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

func (*Compound_idContext) GetRuleContext

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

func (*Compound_idContext) Identifier

func (s *Compound_idContext) Identifier(i int) IIdentifierContext

func (*Compound_idContext) IsCompound_idContext

func (*Compound_idContext) IsCompound_idContext()

func (*Compound_idContext) ToStringTree

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

type Cube_nameContext

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

func NewCube_nameContext

func NewCube_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Cube_nameContext

func NewEmptyCube_nameContext

func NewEmptyCube_nameContext() *Cube_nameContext

func (*Cube_nameContext) Compound_id

func (s *Cube_nameContext) Compound_id() ICompound_idContext

func (*Cube_nameContext) EnterRule

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

func (*Cube_nameContext) ExitRule

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

func (*Cube_nameContext) GetParser

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

func (*Cube_nameContext) GetRuleContext

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

func (*Cube_nameContext) IsCube_nameContext

func (*Cube_nameContext) IsCube_nameContext()

func (*Cube_nameContext) ToStringTree

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

type Cube_specificationContext

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

func NewCube_specificationContext

func NewCube_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Cube_specificationContext

func NewEmptyCube_specificationContext

func NewEmptyCube_specificationContext() *Cube_specificationContext

func (*Cube_specificationContext) Cube_name

func (*Cube_specificationContext) EnterRule

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

func (*Cube_specificationContext) ExitRule

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

func (*Cube_specificationContext) GetParser

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

func (*Cube_specificationContext) GetRuleContext

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

func (*Cube_specificationContext) IsCube_specificationContext

func (*Cube_specificationContext) IsCube_specificationContext()

func (*Cube_specificationContext) ToStringTree

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

type Dim_propsContext

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

func NewDim_propsContext

func NewDim_propsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Dim_propsContext

func NewEmptyDim_propsContext

func NewEmptyDim_propsContext() *Dim_propsContext

func (*Dim_propsContext) DIMENSION

func (s *Dim_propsContext) DIMENSION() antlr.TerminalNode

func (*Dim_propsContext) EnterRule

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

func (*Dim_propsContext) ExitRule

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

func (*Dim_propsContext) GetParser

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

func (*Dim_propsContext) GetRuleContext

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

func (*Dim_propsContext) IsDim_propsContext

func (*Dim_propsContext) IsDim_propsContext()

func (*Dim_propsContext) PROPERTIES

func (s *Dim_propsContext) PROPERTIES() antlr.TerminalNode

func (*Dim_propsContext) Property_list

func (s *Dim_propsContext) Property_list() IProperty_listContext

func (*Dim_propsContext) ToStringTree

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

type Exp_listContext

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

func NewEmptyExp_listContext

func NewEmptyExp_listContext() *Exp_listContext

func NewExp_listContext

func NewExp_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Exp_listContext

func (*Exp_listContext) AllCOMMA

func (s *Exp_listContext) AllCOMMA() []antlr.TerminalNode

func (*Exp_listContext) AllExpression

func (s *Exp_listContext) AllExpression() []IExpressionContext

func (*Exp_listContext) COMMA

func (s *Exp_listContext) COMMA(i int) antlr.TerminalNode

func (*Exp_listContext) EnterRule

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

func (*Exp_listContext) ExitRule

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

func (*Exp_listContext) Expression

func (s *Exp_listContext) Expression(i int) IExpressionContext

func (*Exp_listContext) GetParser

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

func (*Exp_listContext) GetRuleContext

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

func (*Exp_listContext) IsExp_listContext

func (*Exp_listContext) IsExp_listContext()

func (*Exp_listContext) ToStringTree

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

type ExpressionContext

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

func NewEmptyExpressionContext

func NewEmptyExpressionContext() *ExpressionContext

func NewExpressionContext

func NewExpressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ExpressionContext

func (*ExpressionContext) AllCOLON

func (s *ExpressionContext) AllCOLON() []antlr.TerminalNode

func (*ExpressionContext) AllValue_expression

func (s *ExpressionContext) AllValue_expression() []IValue_expressionContext

func (*ExpressionContext) COLON

func (*ExpressionContext) EnterRule

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

func (*ExpressionContext) ExitRule

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

func (*ExpressionContext) GetParser

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

func (*ExpressionContext) GetRuleContext

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

func (*ExpressionContext) IsExpressionContext

func (*ExpressionContext) IsExpressionContext()

func (*ExpressionContext) ToStringTree

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

func (*ExpressionContext) Value_expression

func (s *ExpressionContext) Value_expression(i int) IValue_expressionContext

type FactorContext

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

func NewEmptyFactorContext

func NewEmptyFactorContext() *FactorContext

func NewFactorContext

func NewFactorContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *FactorContext

func (*FactorContext) EnterRule

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

func (*FactorContext) ExitRule

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

func (*FactorContext) GetParser

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

func (*FactorContext) GetRuleContext

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

func (*FactorContext) IsFactorContext

func (*FactorContext) IsFactorContext()

func (*FactorContext) MINUS

func (s *FactorContext) MINUS() antlr.TerminalNode

func (*FactorContext) PLUS

func (s *FactorContext) PLUS() antlr.TerminalNode

func (*FactorContext) ToStringTree

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

func (*FactorContext) Value_expression_primary

func (s *FactorContext) Value_expression_primary() IValue_expression_primaryContext

type Formula_specificationContext

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

func NewEmptyFormula_specificationContext

func NewEmptyFormula_specificationContext() *Formula_specificationContext

func NewFormula_specificationContext

func NewFormula_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Formula_specificationContext

func (*Formula_specificationContext) AllSingle_formula_specification

func (s *Formula_specificationContext) AllSingle_formula_specification() []ISingle_formula_specificationContext

func (*Formula_specificationContext) EnterRule

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

func (*Formula_specificationContext) ExitRule

func (*Formula_specificationContext) GetParser

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

func (*Formula_specificationContext) GetRuleContext

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

func (*Formula_specificationContext) IsFormula_specificationContext

func (*Formula_specificationContext) IsFormula_specificationContext()

func (*Formula_specificationContext) Single_formula_specification

func (s *Formula_specificationContext) Single_formula_specification(i int) ISingle_formula_specificationContext

func (*Formula_specificationContext) ToStringTree

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

type FunctionContext

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

func NewEmptyFunctionContext

func NewEmptyFunctionContext() *FunctionContext

func NewFunctionContext

func NewFunctionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *FunctionContext

func (*FunctionContext) EnterRule

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

func (*FunctionContext) ExitRule

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

func (*FunctionContext) Exp_list

func (s *FunctionContext) Exp_list() IExp_listContext

func (*FunctionContext) GetParser

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

func (*FunctionContext) GetRuleContext

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

func (*FunctionContext) Identifier

func (s *FunctionContext) Identifier() IIdentifierContext

func (*FunctionContext) IsFunctionContext

func (*FunctionContext) IsFunctionContext()

func (*FunctionContext) LPAREN

func (s *FunctionContext) LPAREN() antlr.TerminalNode

func (*FunctionContext) RPAREN

func (s *FunctionContext) RPAREN() antlr.TerminalNode

func (*FunctionContext) ToStringTree

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

type IAmp_quoted_identifierContext

type IAmp_quoted_identifierContext interface {
	antlr.ParserRuleContext

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

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

IAmp_quoted_identifierContext is an interface to support dynamic dispatch.

type IAxis_nameContext

type IAxis_nameContext interface {
	antlr.ParserRuleContext

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

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

IAxis_nameContext is an interface to support dynamic dispatch.

type IAxis_specificationContext

type IAxis_specificationContext interface {
	antlr.ParserRuleContext

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

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

IAxis_specificationContext is an interface to support dynamic dispatch.

type IAxis_specification_listContext

type IAxis_specification_listContext interface {
	antlr.ParserRuleContext

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

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

IAxis_specification_listContext is an interface to support dynamic dispatch.

type ICase_expressionContext

type ICase_expressionContext interface {
	antlr.ParserRuleContext

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

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

ICase_expressionContext is an interface to support dynamic dispatch.

type ICell_propertyContext

type ICell_propertyContext interface {
	antlr.ParserRuleContext

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

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

ICell_propertyContext is an interface to support dynamic dispatch.

type ICell_property_listContext

type ICell_property_listContext interface {
	antlr.ParserRuleContext

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

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

ICell_property_listContext is an interface to support dynamic dispatch.

type ICell_propsContext

type ICell_propsContext interface {
	antlr.ParserRuleContext

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

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

ICell_propsContext is an interface to support dynamic dispatch.

type IComp_opContext

type IComp_opContext interface {
	antlr.ParserRuleContext

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

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

IComp_opContext is an interface to support dynamic dispatch.

type ICompound_idContext

type ICompound_idContext interface {
	antlr.ParserRuleContext

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

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

ICompound_idContext is an interface to support dynamic dispatch.

type ICube_nameContext

type ICube_nameContext interface {
	antlr.ParserRuleContext

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

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

ICube_nameContext is an interface to support dynamic dispatch.

type ICube_specificationContext

type ICube_specificationContext interface {
	antlr.ParserRuleContext

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

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

ICube_specificationContext is an interface to support dynamic dispatch.

type IDim_propsContext

type IDim_propsContext interface {
	antlr.ParserRuleContext

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

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

IDim_propsContext is an interface to support dynamic dispatch.

type IExp_listContext

type IExp_listContext interface {
	antlr.ParserRuleContext

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

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

IExp_listContext is an interface to support dynamic dispatch.

type IExpressionContext

type IExpressionContext interface {
	antlr.ParserRuleContext

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

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

IExpressionContext is an interface to support dynamic dispatch.

type IFactorContext

type IFactorContext interface {
	antlr.ParserRuleContext

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

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

IFactorContext is an interface to support dynamic dispatch.

type IFormula_specificationContext

type IFormula_specificationContext interface {
	antlr.ParserRuleContext

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

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

IFormula_specificationContext is an interface to support dynamic dispatch.

type IFunctionContext

type IFunctionContext interface {
	antlr.ParserRuleContext

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

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

IFunctionContext is an interface to support dynamic dispatch.

type IIdentifierContext

type IIdentifierContext interface {
	antlr.ParserRuleContext

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

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

IIdentifierContext is an interface to support dynamic dispatch.

type IKeywordContext

type IKeywordContext interface {
	antlr.ParserRuleContext

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

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

IKeywordContext is an interface to support dynamic dispatch.

type IMandatory_cell_propertyContext

type IMandatory_cell_propertyContext interface {
	antlr.ParserRuleContext

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

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

IMandatory_cell_propertyContext is an interface to support dynamic dispatch.

type IMdx_statementContext

type IMdx_statementContext interface {
	antlr.ParserRuleContext

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

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

IMdx_statementContext is an interface to support dynamic dispatch.

type IMember_nameContext

type IMember_nameContext interface {
	antlr.ParserRuleContext

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

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

IMember_nameContext is an interface to support dynamic dispatch.

type IMember_property_def_listContext

type IMember_property_def_listContext interface {
	antlr.ParserRuleContext

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

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

IMember_property_def_listContext is an interface to support dynamic dispatch.

type IMember_property_definitionContext

type IMember_property_definitionContext interface {
	antlr.ParserRuleContext

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

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

IMember_property_definitionContext is an interface to support dynamic dispatch.

type IMember_specificationContext

type IMember_specificationContext interface {
	antlr.ParserRuleContext

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

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

IMember_specificationContext is an interface to support dynamic dispatch.

type IPropertyContext

type IPropertyContext interface {
	antlr.ParserRuleContext

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

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

IPropertyContext is an interface to support dynamic dispatch.

type IProperty_listContext

type IProperty_listContext interface {
	antlr.ParserRuleContext

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

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

IProperty_listContext is an interface to support dynamic dispatch.

type IProvider_specific_cell_propertyContext

type IProvider_specific_cell_propertyContext interface {
	antlr.ParserRuleContext

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

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

IProvider_specific_cell_propertyContext is an interface to support dynamic dispatch.

type IQuoted_identifierContext

type IQuoted_identifierContext interface {
	antlr.ParserRuleContext

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

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

IQuoted_identifierContext is an interface to support dynamic dispatch.

type ISelect_statementContext

type ISelect_statementContext interface {
	antlr.ParserRuleContext

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

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

ISelect_statementContext is an interface to support dynamic dispatch.

type ISet_nameContext

type ISet_nameContext interface {
	antlr.ParserRuleContext

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

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

ISet_nameContext is an interface to support dynamic dispatch.

type ISet_specificationContext

type ISet_specificationContext interface {
	antlr.ParserRuleContext

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

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

ISet_specificationContext is an interface to support dynamic dispatch.

type ISingle_formula_specificationContext

type ISingle_formula_specificationContext interface {
	antlr.ParserRuleContext

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

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

ISingle_formula_specificationContext is an interface to support dynamic dispatch.

type ISlicer_specificationContext

type ISlicer_specificationContext interface {
	antlr.ParserRuleContext

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

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

ISlicer_specificationContext is an interface to support dynamic dispatch.

type ITerm2Context

type ITerm2Context interface {
	antlr.ParserRuleContext

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

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

ITerm2Context is an interface to support dynamic dispatch.

type ITerm3Context

type ITerm3Context interface {
	antlr.ParserRuleContext

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

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

ITerm3Context is an interface to support dynamic dispatch.

type ITerm4Context

type ITerm4Context interface {
	antlr.ParserRuleContext

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

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

ITerm4Context is an interface to support dynamic dispatch.

type ITerm5Context

type ITerm5Context interface {
	antlr.ParserRuleContext

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

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

ITerm5Context is an interface to support dynamic dispatch.

type ITermContext

type ITermContext interface {
	antlr.ParserRuleContext

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

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

ITermContext is an interface to support dynamic dispatch.

type IUnquoted_identifierContext

type IUnquoted_identifierContext interface {
	antlr.ParserRuleContext

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

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

IUnquoted_identifierContext is an interface to support dynamic dispatch.

type IValue_expressionContext

type IValue_expressionContext interface {
	antlr.ParserRuleContext

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

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

IValue_expressionContext is an interface to support dynamic dispatch.

type IValue_expression_primary0Context

type IValue_expression_primary0Context interface {
	antlr.ParserRuleContext

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

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

IValue_expression_primary0Context is an interface to support dynamic dispatch.

type IValue_expression_primaryContext

type IValue_expression_primaryContext interface {
	antlr.ParserRuleContext

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

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

IValue_expression_primaryContext is an interface to support dynamic dispatch.

type IValue_or_expressionContext

type IValue_or_expressionContext interface {
	antlr.ParserRuleContext

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

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

IValue_or_expressionContext is an interface to support dynamic dispatch.

type IValue_xor_expressionContext

type IValue_xor_expressionContext interface {
	antlr.ParserRuleContext

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

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

IValue_xor_expressionContext is an interface to support dynamic dispatch.

type IWhen_clauseContext

type IWhen_clauseContext interface {
	antlr.ParserRuleContext

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

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

IWhen_clauseContext is an interface to support dynamic dispatch.

type IWhen_listContext

type IWhen_listContext interface {
	antlr.ParserRuleContext

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

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

IWhen_listContext is an interface to support dynamic dispatch.

type IdentifierContext

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

func NewEmptyIdentifierContext

func NewEmptyIdentifierContext() *IdentifierContext

func NewIdentifierContext

func NewIdentifierContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *IdentifierContext

func (*IdentifierContext) EnterRule

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

func (*IdentifierContext) ExitRule

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

func (*IdentifierContext) GetParser

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

func (*IdentifierContext) GetRuleContext

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

func (*IdentifierContext) IsIdentifierContext

func (*IdentifierContext) IsIdentifierContext()

func (*IdentifierContext) Quoted_identifier

func (s *IdentifierContext) Quoted_identifier() IQuoted_identifierContext

func (*IdentifierContext) ToStringTree

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

func (*IdentifierContext) Unquoted_identifier

func (s *IdentifierContext) Unquoted_identifier() IUnquoted_identifierContext

type KeywordContext

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

func NewEmptyKeywordContext

func NewEmptyKeywordContext() *KeywordContext

func NewKeywordContext

func NewKeywordContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *KeywordContext

func (*KeywordContext) DIMENSION

func (s *KeywordContext) DIMENSION() antlr.TerminalNode

func (*KeywordContext) EnterRule

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

func (*KeywordContext) ExitRule

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

func (*KeywordContext) GetParser

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

func (*KeywordContext) GetRuleContext

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

func (*KeywordContext) IsKeywordContext

func (*KeywordContext) IsKeywordContext()

func (*KeywordContext) PROPERTIES

func (s *KeywordContext) PROPERTIES() antlr.TerminalNode

func (*KeywordContext) ToStringTree

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

type Mandatory_cell_propertyContext

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

func NewEmptyMandatory_cell_propertyContext

func NewEmptyMandatory_cell_propertyContext() *Mandatory_cell_propertyContext

func NewMandatory_cell_propertyContext

func NewMandatory_cell_propertyContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Mandatory_cell_propertyContext

func (*Mandatory_cell_propertyContext) CELL_ORDINAL

func (*Mandatory_cell_propertyContext) EnterRule

func (*Mandatory_cell_propertyContext) ExitRule

func (*Mandatory_cell_propertyContext) FORMATTED_VALUE

func (s *Mandatory_cell_propertyContext) FORMATTED_VALUE() antlr.TerminalNode

func (*Mandatory_cell_propertyContext) GetParser

func (*Mandatory_cell_propertyContext) GetRuleContext

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

func (*Mandatory_cell_propertyContext) IsMandatory_cell_propertyContext

func (*Mandatory_cell_propertyContext) IsMandatory_cell_propertyContext()

func (*Mandatory_cell_propertyContext) ToStringTree

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

func (*Mandatory_cell_propertyContext) VALUE

type Mdx_statementContext

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

func NewEmptyMdx_statementContext

func NewEmptyMdx_statementContext() *Mdx_statementContext

func NewMdx_statementContext

func NewMdx_statementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Mdx_statementContext

func (*Mdx_statementContext) EOF

func (*Mdx_statementContext) EnterRule

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

func (*Mdx_statementContext) ExitRule

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

func (*Mdx_statementContext) GetParser

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

func (*Mdx_statementContext) GetRuleContext

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

func (*Mdx_statementContext) IsMdx_statementContext

func (*Mdx_statementContext) IsMdx_statementContext()

func (*Mdx_statementContext) Select_statement

func (s *Mdx_statementContext) Select_statement() ISelect_statementContext

func (*Mdx_statementContext) ToStringTree

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

type Member_nameContext

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

func NewEmptyMember_nameContext

func NewEmptyMember_nameContext() *Member_nameContext

func NewMember_nameContext

func NewMember_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Member_nameContext

func (*Member_nameContext) Compound_id

func (s *Member_nameContext) Compound_id() ICompound_idContext

func (*Member_nameContext) EnterRule

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

func (*Member_nameContext) ExitRule

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

func (*Member_nameContext) GetParser

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

func (*Member_nameContext) GetRuleContext

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

func (*Member_nameContext) IsMember_nameContext

func (*Member_nameContext) IsMember_nameContext()

func (*Member_nameContext) ToStringTree

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

type Member_property_def_listContext

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

func NewEmptyMember_property_def_listContext

func NewEmptyMember_property_def_listContext() *Member_property_def_listContext

func NewMember_property_def_listContext

func NewMember_property_def_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Member_property_def_listContext

func (*Member_property_def_listContext) AllCOMMA

func (*Member_property_def_listContext) AllMember_property_definition

func (s *Member_property_def_listContext) AllMember_property_definition() []IMember_property_definitionContext

func (*Member_property_def_listContext) COMMA

func (*Member_property_def_listContext) EnterRule

func (*Member_property_def_listContext) ExitRule

func (*Member_property_def_listContext) GetParser

func (*Member_property_def_listContext) GetRuleContext

func (*Member_property_def_listContext) IsMember_property_def_listContext

func (*Member_property_def_listContext) IsMember_property_def_listContext()

func (*Member_property_def_listContext) Member_property_definition

func (*Member_property_def_listContext) ToStringTree

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

type Member_property_definitionContext

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

func NewEmptyMember_property_definitionContext

func NewEmptyMember_property_definitionContext() *Member_property_definitionContext

func NewMember_property_definitionContext

func NewMember_property_definitionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Member_property_definitionContext

func (*Member_property_definitionContext) EQ

func (*Member_property_definitionContext) EnterRule

func (*Member_property_definitionContext) ExitRule

func (*Member_property_definitionContext) GetParser

func (*Member_property_definitionContext) GetRuleContext

func (*Member_property_definitionContext) Identifier

func (*Member_property_definitionContext) IsMember_property_definitionContext

func (*Member_property_definitionContext) IsMember_property_definitionContext()

func (*Member_property_definitionContext) ToStringTree

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

func (*Member_property_definitionContext) Value_expression

type Member_specificationContext

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

func NewEmptyMember_specificationContext

func NewEmptyMember_specificationContext() *Member_specificationContext

func NewMember_specificationContext

func NewMember_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Member_specificationContext

func (*Member_specificationContext) AS

func (*Member_specificationContext) AllQUOTE

func (*Member_specificationContext) COMMA

func (*Member_specificationContext) EnterRule

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

func (*Member_specificationContext) ExitRule

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

func (*Member_specificationContext) GetParser

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

func (*Member_specificationContext) GetRuleContext

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

func (*Member_specificationContext) IsMember_specificationContext

func (*Member_specificationContext) IsMember_specificationContext()

func (*Member_specificationContext) MEMBER

func (*Member_specificationContext) Member_name

func (*Member_specificationContext) Member_property_def_list

func (s *Member_specificationContext) Member_property_def_list() IMember_property_def_listContext

func (*Member_specificationContext) QUOTE

func (*Member_specificationContext) ToStringTree

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

func (*Member_specificationContext) Value_expression

type PropertyContext

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

func NewEmptyPropertyContext

func NewEmptyPropertyContext() *PropertyContext

func NewPropertyContext

func NewPropertyContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *PropertyContext

func (*PropertyContext) Compound_id

func (s *PropertyContext) Compound_id() ICompound_idContext

func (*PropertyContext) EnterRule

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

func (*PropertyContext) ExitRule

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

func (*PropertyContext) GetParser

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

func (*PropertyContext) GetRuleContext

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

func (*PropertyContext) IsPropertyContext

func (*PropertyContext) IsPropertyContext()

func (*PropertyContext) ToStringTree

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

type Property_listContext

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

func NewEmptyProperty_listContext

func NewEmptyProperty_listContext() *Property_listContext

func NewProperty_listContext

func NewProperty_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Property_listContext

func (*Property_listContext) AllCOMMA

func (s *Property_listContext) AllCOMMA() []antlr.TerminalNode

func (*Property_listContext) AllProperty

func (s *Property_listContext) AllProperty() []IPropertyContext

func (*Property_listContext) COMMA

func (*Property_listContext) EnterRule

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

func (*Property_listContext) ExitRule

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

func (*Property_listContext) GetParser

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

func (*Property_listContext) GetRuleContext

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

func (*Property_listContext) IsProperty_listContext

func (*Property_listContext) IsProperty_listContext()

func (*Property_listContext) Property

func (s *Property_listContext) Property(i int) IPropertyContext

func (*Property_listContext) ToStringTree

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

type Provider_specific_cell_propertyContext

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

func NewEmptyProvider_specific_cell_propertyContext

func NewEmptyProvider_specific_cell_propertyContext() *Provider_specific_cell_propertyContext

func NewProvider_specific_cell_propertyContext

func NewProvider_specific_cell_propertyContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Provider_specific_cell_propertyContext

func (*Provider_specific_cell_propertyContext) EnterRule

func (*Provider_specific_cell_propertyContext) ExitRule

func (*Provider_specific_cell_propertyContext) GetParser

func (*Provider_specific_cell_propertyContext) GetRuleContext

func (*Provider_specific_cell_propertyContext) Identifier

func (*Provider_specific_cell_propertyContext) IsProvider_specific_cell_propertyContext

func (*Provider_specific_cell_propertyContext) IsProvider_specific_cell_propertyContext()

func (*Provider_specific_cell_propertyContext) ToStringTree

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

type Quoted_identifierContext

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

func NewEmptyQuoted_identifierContext

func NewEmptyQuoted_identifierContext() *Quoted_identifierContext

func NewQuoted_identifierContext

func NewQuoted_identifierContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Quoted_identifierContext

func (*Quoted_identifierContext) EnterRule

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

func (*Quoted_identifierContext) ExitRule

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

func (*Quoted_identifierContext) GetParser

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

func (*Quoted_identifierContext) GetRuleContext

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

func (*Quoted_identifierContext) IsQuoted_identifierContext

func (*Quoted_identifierContext) IsQuoted_identifierContext()

func (*Quoted_identifierContext) QUOTED_ID

func (*Quoted_identifierContext) ToStringTree

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

type Select_statementContext

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

func NewEmptySelect_statementContext

func NewEmptySelect_statementContext() *Select_statementContext

func NewSelect_statementContext

func NewSelect_statementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Select_statementContext

func (*Select_statementContext) Axis_specification_list

func (s *Select_statementContext) Axis_specification_list() IAxis_specification_listContext

func (*Select_statementContext) Cell_props

func (*Select_statementContext) Cube_specification

func (s *Select_statementContext) Cube_specification() ICube_specificationContext

func (*Select_statementContext) EnterRule

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

func (*Select_statementContext) ExitRule

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

func (*Select_statementContext) FROM

func (*Select_statementContext) Formula_specification

func (s *Select_statementContext) Formula_specification() IFormula_specificationContext

func (*Select_statementContext) GetParser

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

func (*Select_statementContext) GetRuleContext

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

func (*Select_statementContext) IsSelect_statementContext

func (*Select_statementContext) IsSelect_statementContext()

func (*Select_statementContext) SELECT

func (*Select_statementContext) Slicer_specification

func (s *Select_statementContext) Slicer_specification() ISlicer_specificationContext

func (*Select_statementContext) ToStringTree

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

func (*Select_statementContext) WHERE

func (*Select_statementContext) WITH

type Set_nameContext

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

func NewEmptySet_nameContext

func NewEmptySet_nameContext() *Set_nameContext

func NewSet_nameContext

func NewSet_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Set_nameContext

func (*Set_nameContext) Compound_id

func (s *Set_nameContext) Compound_id() ICompound_idContext

func (*Set_nameContext) EnterRule

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

func (*Set_nameContext) ExitRule

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

func (*Set_nameContext) GetParser

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

func (*Set_nameContext) GetRuleContext

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

func (*Set_nameContext) IsSet_nameContext

func (*Set_nameContext) IsSet_nameContext()

func (*Set_nameContext) ToStringTree

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

type Set_specificationContext

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

func NewEmptySet_specificationContext

func NewEmptySet_specificationContext() *Set_specificationContext

func NewSet_specificationContext

func NewSet_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Set_specificationContext

func (*Set_specificationContext) AS

func (*Set_specificationContext) AllQUOTE

func (*Set_specificationContext) EnterRule

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

func (*Set_specificationContext) ExitRule

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

func (*Set_specificationContext) Expression

func (*Set_specificationContext) GetParser

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

func (*Set_specificationContext) GetRuleContext

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

func (*Set_specificationContext) IsSet_specificationContext

func (*Set_specificationContext) IsSet_specificationContext()

func (*Set_specificationContext) QUOTE

func (*Set_specificationContext) SET

func (*Set_specificationContext) Set_name

func (*Set_specificationContext) ToStringTree

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

type Single_formula_specificationContext

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

func NewEmptySingle_formula_specificationContext

func NewEmptySingle_formula_specificationContext() *Single_formula_specificationContext

func NewSingle_formula_specificationContext

func NewSingle_formula_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Single_formula_specificationContext

func (*Single_formula_specificationContext) EnterRule

func (*Single_formula_specificationContext) ExitRule

func (*Single_formula_specificationContext) GetParser

func (*Single_formula_specificationContext) GetRuleContext

func (*Single_formula_specificationContext) IsSingle_formula_specificationContext

func (*Single_formula_specificationContext) IsSingle_formula_specificationContext()

func (*Single_formula_specificationContext) Member_specification

func (*Single_formula_specificationContext) Set_specification

func (*Single_formula_specificationContext) ToStringTree

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

type Slicer_specificationContext

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

func NewEmptySlicer_specificationContext

func NewEmptySlicer_specificationContext() *Slicer_specificationContext

func NewSlicer_specificationContext

func NewSlicer_specificationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Slicer_specificationContext

func (*Slicer_specificationContext) EnterRule

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

func (*Slicer_specificationContext) ExitRule

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

func (*Slicer_specificationContext) Expression

func (*Slicer_specificationContext) GetParser

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

func (*Slicer_specificationContext) GetRuleContext

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

func (*Slicer_specificationContext) IsSlicer_specificationContext

func (*Slicer_specificationContext) IsSlicer_specificationContext()

func (*Slicer_specificationContext) ToStringTree

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

type Term2Context

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

func NewEmptyTerm2Context

func NewEmptyTerm2Context() *Term2Context

func NewTerm2Context

func NewTerm2Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Term2Context

func (*Term2Context) AllCONCAT

func (s *Term2Context) AllCONCAT() []antlr.TerminalNode

func (*Term2Context) AllMINUS

func (s *Term2Context) AllMINUS() []antlr.TerminalNode

func (*Term2Context) AllPLUS

func (s *Term2Context) AllPLUS() []antlr.TerminalNode

func (*Term2Context) AllTerm

func (s *Term2Context) AllTerm() []ITermContext

func (*Term2Context) CONCAT

func (s *Term2Context) CONCAT(i int) antlr.TerminalNode

func (*Term2Context) EnterRule

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

func (*Term2Context) ExitRule

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

func (*Term2Context) GetParser

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

func (*Term2Context) GetRuleContext

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

func (*Term2Context) IsTerm2Context

func (*Term2Context) IsTerm2Context()

func (*Term2Context) MINUS

func (s *Term2Context) MINUS(i int) antlr.TerminalNode

func (*Term2Context) PLUS

func (s *Term2Context) PLUS(i int) antlr.TerminalNode

func (*Term2Context) Term

func (s *Term2Context) Term(i int) ITermContext

func (*Term2Context) ToStringTree

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

type Term3Context

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

func NewEmptyTerm3Context

func NewEmptyTerm3Context() *Term3Context

func NewTerm3Context

func NewTerm3Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Term3Context

func (*Term3Context) AllComp_op

func (s *Term3Context) AllComp_op() []IComp_opContext

func (*Term3Context) AllTerm2

func (s *Term3Context) AllTerm2() []ITerm2Context

func (*Term3Context) Comp_op

func (s *Term3Context) Comp_op(i int) IComp_opContext

func (*Term3Context) EnterRule

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

func (*Term3Context) ExitRule

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

func (*Term3Context) GetParser

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

func (*Term3Context) GetRuleContext

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

func (*Term3Context) IsTerm3Context

func (*Term3Context) IsTerm3Context()

func (*Term3Context) Term2

func (s *Term3Context) Term2(i int) ITerm2Context

func (*Term3Context) ToStringTree

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

type Term4Context

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

func NewEmptyTerm4Context

func NewEmptyTerm4Context() *Term4Context

func NewTerm4Context

func NewTerm4Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Term4Context

func (*Term4Context) EnterRule

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

func (*Term4Context) ExitRule

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

func (*Term4Context) GetParser

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

func (*Term4Context) GetRuleContext

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

func (*Term4Context) IsTerm4Context

func (*Term4Context) IsTerm4Context()

func (*Term4Context) NOT

func (s *Term4Context) NOT() antlr.TerminalNode

func (*Term4Context) Term3

func (s *Term4Context) Term3() ITerm3Context

func (*Term4Context) Term4

func (s *Term4Context) Term4() ITerm4Context

func (*Term4Context) ToStringTree

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

type Term5Context

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

func NewEmptyTerm5Context

func NewEmptyTerm5Context() *Term5Context

func NewTerm5Context

func NewTerm5Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Term5Context

func (*Term5Context) AND

func (s *Term5Context) AND(i int) antlr.TerminalNode

func (*Term5Context) AllAND

func (s *Term5Context) AllAND() []antlr.TerminalNode

func (*Term5Context) AllTerm4

func (s *Term5Context) AllTerm4() []ITerm4Context

func (*Term5Context) EnterRule

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

func (*Term5Context) ExitRule

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

func (*Term5Context) GetParser

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

func (*Term5Context) GetRuleContext

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

func (*Term5Context) IsTerm5Context

func (*Term5Context) IsTerm5Context()

func (*Term5Context) Term4

func (s *Term5Context) Term4(i int) ITerm4Context

func (*Term5Context) ToStringTree

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

type TermContext

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

func NewEmptyTermContext

func NewEmptyTermContext() *TermContext

func NewTermContext

func NewTermContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *TermContext

func (*TermContext) ASTERISK

func (s *TermContext) ASTERISK(i int) antlr.TerminalNode

func (*TermContext) AllASTERISK

func (s *TermContext) AllASTERISK() []antlr.TerminalNode

func (*TermContext) AllFactor

func (s *TermContext) AllFactor() []IFactorContext

func (*TermContext) AllSOLIDUS

func (s *TermContext) AllSOLIDUS() []antlr.TerminalNode

func (*TermContext) EnterRule

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

func (*TermContext) ExitRule

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

func (*TermContext) Factor

func (s *TermContext) Factor(i int) IFactorContext

func (*TermContext) GetParser

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

func (*TermContext) GetRuleContext

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

func (*TermContext) IsTermContext

func (*TermContext) IsTermContext()

func (*TermContext) SOLIDUS

func (s *TermContext) SOLIDUS(i int) antlr.TerminalNode

func (*TermContext) ToStringTree

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

type Unquoted_identifierContext

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

func NewEmptyUnquoted_identifierContext

func NewEmptyUnquoted_identifierContext() *Unquoted_identifierContext

func NewUnquoted_identifierContext

func NewUnquoted_identifierContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Unquoted_identifierContext

func (*Unquoted_identifierContext) EnterRule

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

func (*Unquoted_identifierContext) ExitRule

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

func (*Unquoted_identifierContext) GetParser

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

func (*Unquoted_identifierContext) GetRuleContext

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

func (*Unquoted_identifierContext) ID

func (*Unquoted_identifierContext) IsUnquoted_identifierContext

func (*Unquoted_identifierContext) IsUnquoted_identifierContext()

func (*Unquoted_identifierContext) Keyword

func (*Unquoted_identifierContext) ToStringTree

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

type Value_expressionContext

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

func NewEmptyValue_expressionContext

func NewEmptyValue_expressionContext() *Value_expressionContext

func NewValue_expressionContext

func NewValue_expressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Value_expressionContext

func (*Value_expressionContext) AllValue_or_expression

func (s *Value_expressionContext) AllValue_or_expression() []IValue_or_expressionContext

func (*Value_expressionContext) AllValue_xor_expression

func (s *Value_expressionContext) AllValue_xor_expression() []IValue_xor_expressionContext

func (*Value_expressionContext) EnterRule

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

func (*Value_expressionContext) ExitRule

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

func (*Value_expressionContext) GetParser

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

func (*Value_expressionContext) GetRuleContext

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

func (*Value_expressionContext) IsValue_expressionContext

func (*Value_expressionContext) IsValue_expressionContext()

func (*Value_expressionContext) Term5

func (*Value_expressionContext) ToStringTree

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

func (*Value_expressionContext) Value_or_expression

func (s *Value_expressionContext) Value_or_expression(i int) IValue_or_expressionContext

func (*Value_expressionContext) Value_xor_expression

func (s *Value_expressionContext) Value_xor_expression(i int) IValue_xor_expressionContext

type Value_expression_primary0Context

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

func NewEmptyValue_expression_primary0Context

func NewEmptyValue_expression_primary0Context() *Value_expression_primary0Context

func NewValue_expression_primary0Context

func NewValue_expression_primary0Context(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Value_expression_primary0Context

func (*Value_expression_primary0Context) Case_expression

func (*Value_expression_primary0Context) EnterRule

func (*Value_expression_primary0Context) ExitRule

func (*Value_expression_primary0Context) Exp_list

func (*Value_expression_primary0Context) Function

func (*Value_expression_primary0Context) GetParser

func (*Value_expression_primary0Context) GetRuleContext

func (*Value_expression_primary0Context) Identifier

func (*Value_expression_primary0Context) IsValue_expression_primary0Context

func (*Value_expression_primary0Context) IsValue_expression_primary0Context()

func (*Value_expression_primary0Context) LBRACE

func (*Value_expression_primary0Context) LPAREN

func (*Value_expression_primary0Context) NUMBER

func (*Value_expression_primary0Context) RBRACE

func (*Value_expression_primary0Context) RPAREN

func (*Value_expression_primary0Context) STRING

func (*Value_expression_primary0Context) ToStringTree

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

type Value_expression_primaryContext

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

func NewEmptyValue_expression_primaryContext

func NewEmptyValue_expression_primaryContext() *Value_expression_primaryContext

func NewValue_expression_primaryContext

func NewValue_expression_primaryContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Value_expression_primaryContext

func (*Value_expression_primaryContext) AllAmp_quoted_identifier

func (s *Value_expression_primaryContext) AllAmp_quoted_identifier() []IAmp_quoted_identifierContext

func (*Value_expression_primaryContext) AllDOT

func (*Value_expression_primaryContext) AllFunction

func (*Value_expression_primaryContext) AllQuoted_identifier

func (s *Value_expression_primaryContext) AllQuoted_identifier() []IQuoted_identifierContext

func (*Value_expression_primaryContext) AllUnquoted_identifier

func (s *Value_expression_primaryContext) AllUnquoted_identifier() []IUnquoted_identifierContext

func (*Value_expression_primaryContext) Amp_quoted_identifier

func (*Value_expression_primaryContext) DOT

func (*Value_expression_primaryContext) EnterRule

func (*Value_expression_primaryContext) ExitRule

func (*Value_expression_primaryContext) Function

func (*Value_expression_primaryContext) GetParser

func (*Value_expression_primaryContext) GetRuleContext

func (*Value_expression_primaryContext) IsValue_expression_primaryContext

func (*Value_expression_primaryContext) IsValue_expression_primaryContext()

func (*Value_expression_primaryContext) Quoted_identifier

func (*Value_expression_primaryContext) ToStringTree

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

func (*Value_expression_primaryContext) Unquoted_identifier

func (*Value_expression_primaryContext) Value_expression_primary0

type Value_or_expressionContext

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

func NewEmptyValue_or_expressionContext

func NewEmptyValue_or_expressionContext() *Value_or_expressionContext

func NewValue_or_expressionContext

func NewValue_or_expressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Value_or_expressionContext

func (*Value_or_expressionContext) EnterRule

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

func (*Value_or_expressionContext) ExitRule

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

func (*Value_or_expressionContext) GetParser

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

func (*Value_or_expressionContext) GetRuleContext

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

func (*Value_or_expressionContext) IsValue_or_expressionContext

func (*Value_or_expressionContext) IsValue_or_expressionContext()

func (*Value_or_expressionContext) OR

func (*Value_or_expressionContext) Term5

func (*Value_or_expressionContext) ToStringTree

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

type Value_xor_expressionContext

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

func NewEmptyValue_xor_expressionContext

func NewEmptyValue_xor_expressionContext() *Value_xor_expressionContext

func NewValue_xor_expressionContext

func NewValue_xor_expressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Value_xor_expressionContext

func (*Value_xor_expressionContext) EnterRule

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

func (*Value_xor_expressionContext) ExitRule

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

func (*Value_xor_expressionContext) GetParser

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

func (*Value_xor_expressionContext) GetRuleContext

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

func (*Value_xor_expressionContext) IsValue_xor_expressionContext

func (*Value_xor_expressionContext) IsValue_xor_expressionContext()

func (*Value_xor_expressionContext) Term5

func (*Value_xor_expressionContext) ToStringTree

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

func (*Value_xor_expressionContext) XOR

type When_clauseContext

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

func NewEmptyWhen_clauseContext

func NewEmptyWhen_clauseContext() *When_clauseContext

func NewWhen_clauseContext

func NewWhen_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *When_clauseContext

func (*When_clauseContext) AllValue_expression

func (s *When_clauseContext) AllValue_expression() []IValue_expressionContext

func (*When_clauseContext) EnterRule

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

func (*When_clauseContext) ExitRule

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

func (*When_clauseContext) GetParser

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

func (*When_clauseContext) GetRuleContext

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

func (*When_clauseContext) IsWhen_clauseContext

func (*When_clauseContext) IsWhen_clauseContext()

func (*When_clauseContext) THEN

func (*When_clauseContext) ToStringTree

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

func (*When_clauseContext) Value_expression

func (s *When_clauseContext) Value_expression(i int) IValue_expressionContext

func (*When_clauseContext) WHEN

type When_listContext

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

func NewEmptyWhen_listContext

func NewEmptyWhen_listContext() *When_listContext

func NewWhen_listContext

func NewWhen_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *When_listContext

func (*When_listContext) AllWhen_clause

func (s *When_listContext) AllWhen_clause() []IWhen_clauseContext

func (*When_listContext) EnterRule

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

func (*When_listContext) ExitRule

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

func (*When_listContext) GetParser

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

func (*When_listContext) GetRuleContext

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

func (*When_listContext) IsWhen_listContext

func (*When_listContext) IsWhen_listContext()

func (*When_listContext) ToStringTree

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

func (*When_listContext) When_clause

func (s *When_listContext) When_clause(i int) IWhen_clauseContext

Jump to

Keyboard shortcuts

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