jspparser

package
v1.3.7-alpha1209 Latest Latest
Warning

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

Go to latest
Published: Dec 9, 2024 License: AGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	JSPLexerJSP_COMMENT_START                 = 1
	JSPLexerJSP_COMMENT_END                   = 2
	JSPLexerJSP_COMMENT_START_TAG             = 3
	JSPLexerWHITESPACES                       = 4
	JSPLexerHTML_TEXT                         = 5
	JSPLexerJSP_COMMENT_END_TAG               = 6
	JSPLexerJSP_CONDITIONAL_COMMENT_START     = 7
	JSPLexerJSP_CONDITIONAL_COMMENT_START_TAG = 8
	JSPLexerJSP_CONDITIONAL_COMMENT_END_TAG   = 9
	JSPLexerXML_DECLARATION                   = 10
	JSPLexerCDATA                             = 11
	JSPLexerDTD                               = 12
	JSPLexerDTD_START                         = 13
	JSPLexerWHITESPACE_SKIP                   = 14
	JSPLexerCLOSE_TAG_BEGIN                   = 15
	JSPLexerTAG_BEGIN                         = 16
	JSPLexerDIRECTIVE_BEGIN                   = 17
	JSPLexerDECLARATION_BEGIN                 = 18
	JSPLexerECHO_EXPRESSION_OPEN              = 19
	JSPLexerSCRIPTLET_OPEN                    = 20
	JSPLexerEXPRESSION_OPEN                   = 21
	JSPLexerDOUBLE_QUOTE                      = 22
	JSPLexerSINGLE_QUOTE                      = 23
	JSPLexerQUOTE                             = 24
	JSPLexerTAG_END                           = 25
	JSPLexerEQUALS                            = 26
	JSPLexerJSP_STATIC_CONTENT_CHARS_MIXED    = 27
	JSPLexerJSP_STATIC_CONTENT_CHARS          = 28
	JSPLexerJSP_STATIC_CONTENT_CHAR           = 29
	JSPLexerJSP_END                           = 30
	JSPLexerJSP_CONDITIONAL_COMMENT_END       = 31
	JSPLexerJSP_CONDITIONAL_COMMENT           = 32
	JSPLexerJSP_COMMENT_TEXT                  = 33
	JSPLexerDTD_PUBLIC                        = 34
	JSPLexerDTD_SYSTEM                        = 35
	JSPLexerDTD_WHITESPACE_SKIP               = 36
	JSPLexerDTD_QUOTED                        = 37
	JSPLexerDTD_IDENTIFIER                    = 38
	JSPLexerBLOB_CLOSE                        = 39
	JSPLexerBLOB_CONTENT                      = 40
	JSPLexerJSPEXPR_CONTENT_CLOSE             = 41
	JSPLexerJSP_JSTL_COLON                    = 42
	JSPLexerTAG_SLASH_END                     = 43
	JSPLexerTAG_CLOSE                         = 44
	JSPLexerTAG_SLASH                         = 45
	JSPLexerDIRECTIVE_END                     = 46
	JSPLexerTAG_IDENTIFIER                    = 47
	JSPLexerTAG_WHITESPACE                    = 48
	JSPLexerSCRIPT_BODY                       = 49
	JSPLexerSCRIPT_SHORT_BODY                 = 50
	JSPLexerSTYLE_BODY                        = 51
	JSPLexerSTYLE_SHORT_BODY                  = 52
	JSPLexerATTVAL_ATTRIBUTE                  = 53
	JSPLexerEL_EXPR                           = 54
)

JSPLexer tokens.

View Source
const (
	JSPLexerIN_CONDITIONAL_COMMENT = iota + 1
	JSPLexerIN_JSP_COMMENT
	JSPLexerIN_DTD
	JSPLexerJSP_BLOB
	JSPLexerIN_JSP_EXPRESSION
	JSPLexerTAG
	JSPLexerSCRIPT
	JSPLexerSTYLE
	JSPLexerATTVALUE
	JSPLexerATTVALUE_SINGLE_QUOTE
	JSPLexerATTVALUE_DOUBLE_QUOTE
)

JSPLexer modes.

View Source
const (
	JSPParserEOF                               = antlr.TokenEOF
	JSPParserJSP_COMMENT_START                 = 1
	JSPParserJSP_COMMENT_END                   = 2
	JSPParserJSP_COMMENT_START_TAG             = 3
	JSPParserWHITESPACES                       = 4
	JSPParserHTML_TEXT                         = 5
	JSPParserJSP_COMMENT_END_TAG               = 6
	JSPParserJSP_CONDITIONAL_COMMENT_START     = 7
	JSPParserJSP_CONDITIONAL_COMMENT_START_TAG = 8
	JSPParserJSP_CONDITIONAL_COMMENT_END_TAG   = 9
	JSPParserXML_DECLARATION                   = 10
	JSPParserCDATA                             = 11
	JSPParserDTD                               = 12
	JSPParserDTD_START                         = 13
	JSPParserWHITESPACE_SKIP                   = 14
	JSPParserCLOSE_TAG_BEGIN                   = 15
	JSPParserTAG_BEGIN                         = 16
	JSPParserDIRECTIVE_BEGIN                   = 17
	JSPParserDECLARATION_BEGIN                 = 18
	JSPParserECHO_EXPRESSION_OPEN              = 19
	JSPParserSCRIPTLET_OPEN                    = 20
	JSPParserEXPRESSION_OPEN                   = 21
	JSPParserDOUBLE_QUOTE                      = 22
	JSPParserSINGLE_QUOTE                      = 23
	JSPParserQUOTE                             = 24
	JSPParserTAG_END                           = 25
	JSPParserEQUALS                            = 26
	JSPParserJSP_STATIC_CONTENT_CHARS_MIXED    = 27
	JSPParserJSP_STATIC_CONTENT_CHARS          = 28
	JSPParserJSP_STATIC_CONTENT_CHAR           = 29
	JSPParserJSP_END                           = 30
	JSPParserJSP_CONDITIONAL_COMMENT_END       = 31
	JSPParserJSP_CONDITIONAL_COMMENT           = 32
	JSPParserJSP_COMMENT_TEXT                  = 33
	JSPParserDTD_PUBLIC                        = 34
	JSPParserDTD_SYSTEM                        = 35
	JSPParserDTD_WHITESPACE_SKIP               = 36
	JSPParserDTD_QUOTED                        = 37
	JSPParserDTD_IDENTIFIER                    = 38
	JSPParserBLOB_CLOSE                        = 39
	JSPParserBLOB_CONTENT                      = 40
	JSPParserJSPEXPR_CONTENT_CLOSE             = 41
	JSPParserJSP_JSTL_COLON                    = 42
	JSPParserTAG_SLASH_END                     = 43
	JSPParserTAG_CLOSE                         = 44
	JSPParserTAG_SLASH                         = 45
	JSPParserDIRECTIVE_END                     = 46
	JSPParserTAG_IDENTIFIER                    = 47
	JSPParserTAG_WHITESPACE                    = 48
	JSPParserSCRIPT_BODY                       = 49
	JSPParserSCRIPT_SHORT_BODY                 = 50
	JSPParserSTYLE_BODY                        = 51
	JSPParserSTYLE_SHORT_BODY                  = 52
	JSPParserATTVAL_ATTRIBUTE                  = 53
	JSPParserEL_EXPR                           = 54
)

JSPParser tokens.

View Source
const (
	JSPParserRULE_jspDocuments               = 0
	JSPParserRULE_jspDocument                = 1
	JSPParserRULE_jspStart                   = 2
	JSPParserRULE_jspElements                = 3
	JSPParserRULE_jspElement                 = 4
	JSPParserRULE_htmlBegin                  = 5
	JSPParserRULE_htmlTag                    = 6
	JSPParserRULE_jspDirective               = 7
	JSPParserRULE_htmlContents               = 8
	JSPParserRULE_htmlContent                = 9
	JSPParserRULE_jspExpression              = 10
	JSPParserRULE_htmlAttribute              = 11
	JSPParserRULE_htmlAttributeName          = 12
	JSPParserRULE_htmlAttributeValue         = 13
	JSPParserRULE_htmlAttributeValueExpr     = 14
	JSPParserRULE_htmlAttributeValueConstant = 15
	JSPParserRULE_htmlTagName                = 16
	JSPParserRULE_htmlChardata               = 17
	JSPParserRULE_htmlMisc                   = 18
	JSPParserRULE_htmlComment                = 19
	JSPParserRULE_htmlCommentText            = 20
	JSPParserRULE_htmlConditionalCommentText = 21
	JSPParserRULE_xhtmlCDATA                 = 22
	JSPParserRULE_dtd                        = 23
	JSPParserRULE_dtdElementName             = 24
	JSPParserRULE_publicId                   = 25
	JSPParserRULE_systemId                   = 26
	JSPParserRULE_xml                        = 27
	JSPParserRULE_scriptlet                  = 28
)

JSPParser rules.

Variables

This section is empty.

Functions

func JSPLexerInit

func JSPLexerInit()

JSPLexerInit initializes any static state used to implement JSPLexer. By default the static state used to implement the lexer is lazily initialized during the first call to NewJSPLexer(). You can call this function if you wish to initialize the static state ahead of time.

func JSPParserInit

func JSPParserInit()

JSPParserInit initializes any static state used to implement JSPParser. By default the static state used to implement the parser is lazily initialized during the first call to NewJSPParser(). You can call this function if you wish to initialize the static state ahead of time.

Types

type BaseJSPParserVisitor

type BaseJSPParserVisitor struct {
	*antlr.BaseParseTreeVisitor
}

func (*BaseJSPParserVisitor) VisitDtd

func (v *BaseJSPParserVisitor) VisitDtd(ctx *DtdContext) interface{}

func (*BaseJSPParserVisitor) VisitDtdElementName

func (v *BaseJSPParserVisitor) VisitDtdElementName(ctx *DtdElementNameContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttribute

func (v *BaseJSPParserVisitor) VisitHtmlAttribute(ctx *HtmlAttributeContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeName

func (v *BaseJSPParserVisitor) VisitHtmlAttributeName(ctx *HtmlAttributeNameContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeValue

func (v *BaseJSPParserVisitor) VisitHtmlAttributeValue(ctx *HtmlAttributeValueContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeValueConstant

func (v *BaseJSPParserVisitor) VisitHtmlAttributeValueConstant(ctx *HtmlAttributeValueConstantContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlAttributeValueExpr

func (v *BaseJSPParserVisitor) VisitHtmlAttributeValueExpr(ctx *HtmlAttributeValueExprContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlBegin

func (v *BaseJSPParserVisitor) VisitHtmlBegin(ctx *HtmlBeginContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlChardata

func (v *BaseJSPParserVisitor) VisitHtmlChardata(ctx *HtmlChardataContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlComment

func (v *BaseJSPParserVisitor) VisitHtmlComment(ctx *HtmlCommentContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlCommentText

func (v *BaseJSPParserVisitor) VisitHtmlCommentText(ctx *HtmlCommentTextContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlConditionalCommentText

func (v *BaseJSPParserVisitor) VisitHtmlConditionalCommentText(ctx *HtmlConditionalCommentTextContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlContent

func (v *BaseJSPParserVisitor) VisitHtmlContent(ctx *HtmlContentContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlContents

func (v *BaseJSPParserVisitor) VisitHtmlContents(ctx *HtmlContentsContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlMisc

func (v *BaseJSPParserVisitor) VisitHtmlMisc(ctx *HtmlMiscContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlTag

func (v *BaseJSPParserVisitor) VisitHtmlTag(ctx *HtmlTagContext) interface{}

func (*BaseJSPParserVisitor) VisitHtmlTagName

func (v *BaseJSPParserVisitor) VisitHtmlTagName(ctx *HtmlTagNameContext) interface{}

func (*BaseJSPParserVisitor) VisitJspDirective

func (v *BaseJSPParserVisitor) VisitJspDirective(ctx *JspDirectiveContext) interface{}

func (*BaseJSPParserVisitor) VisitJspDocument

func (v *BaseJSPParserVisitor) VisitJspDocument(ctx *JspDocumentContext) interface{}

func (*BaseJSPParserVisitor) VisitJspDocuments

func (v *BaseJSPParserVisitor) VisitJspDocuments(ctx *JspDocumentsContext) interface{}

func (*BaseJSPParserVisitor) VisitJspElement

func (v *BaseJSPParserVisitor) VisitJspElement(ctx *JspElementContext) interface{}

func (*BaseJSPParserVisitor) VisitJspElements

func (v *BaseJSPParserVisitor) VisitJspElements(ctx *JspElementsContext) interface{}

func (*BaseJSPParserVisitor) VisitJspExpression

func (v *BaseJSPParserVisitor) VisitJspExpression(ctx *JspExpressionContext) interface{}

func (*BaseJSPParserVisitor) VisitJspStart

func (v *BaseJSPParserVisitor) VisitJspStart(ctx *JspStartContext) interface{}

func (*BaseJSPParserVisitor) VisitPublicId

func (v *BaseJSPParserVisitor) VisitPublicId(ctx *PublicIdContext) interface{}

func (*BaseJSPParserVisitor) VisitScriptlet

func (v *BaseJSPParserVisitor) VisitScriptlet(ctx *ScriptletContext) interface{}

func (*BaseJSPParserVisitor) VisitSystemId

func (v *BaseJSPParserVisitor) VisitSystemId(ctx *SystemIdContext) interface{}

func (*BaseJSPParserVisitor) VisitXhtmlCDATA

func (v *BaseJSPParserVisitor) VisitXhtmlCDATA(ctx *XhtmlCDATAContext) interface{}

func (*BaseJSPParserVisitor) VisitXml

func (v *BaseJSPParserVisitor) VisitXml(ctx *XmlContext) interface{}

type DtdContext

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

func NewDtdContext

func NewDtdContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *DtdContext

func NewEmptyDtdContext

func NewEmptyDtdContext() *DtdContext

func (*DtdContext) Accept

func (s *DtdContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*DtdContext) DTD

func (s *DtdContext) DTD() antlr.TerminalNode

func (*DtdContext) DTD_PUBLIC

func (s *DtdContext) DTD_PUBLIC() antlr.TerminalNode

func (*DtdContext) DTD_SYSTEM

func (s *DtdContext) DTD_SYSTEM() antlr.TerminalNode

func (*DtdContext) DtdElementName

func (s *DtdContext) DtdElementName() IDtdElementNameContext

func (*DtdContext) GetParser

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

func (*DtdContext) GetRuleContext

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

func (*DtdContext) IsDtdContext

func (*DtdContext) IsDtdContext()

func (*DtdContext) PublicId

func (s *DtdContext) PublicId() IPublicIdContext

func (*DtdContext) SystemId

func (s *DtdContext) SystemId() ISystemIdContext

func (*DtdContext) TAG_END

func (s *DtdContext) TAG_END() antlr.TerminalNode

func (*DtdContext) ToStringTree

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

type DtdElementNameContext

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

func NewDtdElementNameContext

func NewDtdElementNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *DtdElementNameContext

func NewEmptyDtdElementNameContext

func NewEmptyDtdElementNameContext() *DtdElementNameContext

func (*DtdElementNameContext) Accept

func (s *DtdElementNameContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*DtdElementNameContext) DTD_IDENTIFIER

func (s *DtdElementNameContext) DTD_IDENTIFIER() antlr.TerminalNode

func (*DtdElementNameContext) GetParser

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

func (*DtdElementNameContext) GetRuleContext

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

func (*DtdElementNameContext) IsDtdElementNameContext

func (*DtdElementNameContext) IsDtdElementNameContext()

func (*DtdElementNameContext) ToStringTree

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

type HtmlAttributeContext

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

func NewEmptyHtmlAttributeContext

func NewEmptyHtmlAttributeContext() *HtmlAttributeContext

func NewHtmlAttributeContext

func NewHtmlAttributeContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeContext

func (*HtmlAttributeContext) Accept

func (s *HtmlAttributeContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeContext) EQUALS

func (s *HtmlAttributeContext) EQUALS() antlr.TerminalNode

func (*HtmlAttributeContext) GetParser

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

func (*HtmlAttributeContext) GetRuleContext

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

func (*HtmlAttributeContext) HtmlAttributeName

func (s *HtmlAttributeContext) HtmlAttributeName() IHtmlAttributeNameContext

func (*HtmlAttributeContext) HtmlAttributeValue

func (s *HtmlAttributeContext) HtmlAttributeValue() IHtmlAttributeValueContext

func (*HtmlAttributeContext) IsHtmlAttributeContext

func (*HtmlAttributeContext) IsHtmlAttributeContext()

func (*HtmlAttributeContext) Scriptlet

func (s *HtmlAttributeContext) Scriptlet() IScriptletContext

func (*HtmlAttributeContext) ToStringTree

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

type HtmlAttributeNameContext

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

func NewEmptyHtmlAttributeNameContext

func NewEmptyHtmlAttributeNameContext() *HtmlAttributeNameContext

func NewHtmlAttributeNameContext

func NewHtmlAttributeNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeNameContext

func (*HtmlAttributeNameContext) Accept

func (s *HtmlAttributeNameContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeNameContext) GetParser

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

func (*HtmlAttributeNameContext) GetRuleContext

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

func (*HtmlAttributeNameContext) IsHtmlAttributeNameContext

func (*HtmlAttributeNameContext) IsHtmlAttributeNameContext()

func (*HtmlAttributeNameContext) TAG_IDENTIFIER

func (s *HtmlAttributeNameContext) TAG_IDENTIFIER() antlr.TerminalNode

func (*HtmlAttributeNameContext) ToStringTree

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

type HtmlAttributeValueConstantContext

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

func NewEmptyHtmlAttributeValueConstantContext

func NewEmptyHtmlAttributeValueConstantContext() *HtmlAttributeValueConstantContext

func NewHtmlAttributeValueConstantContext

func NewHtmlAttributeValueConstantContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeValueConstantContext

func (*HtmlAttributeValueConstantContext) ATTVAL_ATTRIBUTE

func (s *HtmlAttributeValueConstantContext) ATTVAL_ATTRIBUTE() antlr.TerminalNode

func (*HtmlAttributeValueConstantContext) Accept

func (s *HtmlAttributeValueConstantContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeValueConstantContext) GetParser

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

func (*HtmlAttributeValueConstantContext) GetRuleContext

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

func (*HtmlAttributeValueConstantContext) IsHtmlAttributeValueConstantContext

func (*HtmlAttributeValueConstantContext) IsHtmlAttributeValueConstantContext()

func (*HtmlAttributeValueConstantContext) ToStringTree

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

type HtmlAttributeValueContext

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

func NewEmptyHtmlAttributeValueContext

func NewEmptyHtmlAttributeValueContext() *HtmlAttributeValueContext

func NewHtmlAttributeValueContext

func NewHtmlAttributeValueContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeValueContext

func (*HtmlAttributeValueContext) Accept

func (s *HtmlAttributeValueContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeValueContext) AllQUOTE

func (s *HtmlAttributeValueContext) AllQUOTE() []antlr.TerminalNode

func (*HtmlAttributeValueContext) GetParser

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

func (*HtmlAttributeValueContext) GetRuleContext

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

func (*HtmlAttributeValueContext) HtmlAttributeValueConstant

func (s *HtmlAttributeValueContext) HtmlAttributeValueConstant() IHtmlAttributeValueConstantContext

func (*HtmlAttributeValueContext) HtmlAttributeValueExpr

func (s *HtmlAttributeValueContext) HtmlAttributeValueExpr() IHtmlAttributeValueExprContext

func (*HtmlAttributeValueContext) IsHtmlAttributeValueContext

func (*HtmlAttributeValueContext) IsHtmlAttributeValueContext()

func (*HtmlAttributeValueContext) JspElement

func (*HtmlAttributeValueContext) QUOTE

func (s *HtmlAttributeValueContext) QUOTE(i int) antlr.TerminalNode

func (*HtmlAttributeValueContext) ToStringTree

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

type HtmlAttributeValueExprContext

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

func NewEmptyHtmlAttributeValueExprContext

func NewEmptyHtmlAttributeValueExprContext() *HtmlAttributeValueExprContext

func NewHtmlAttributeValueExprContext

func NewHtmlAttributeValueExprContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlAttributeValueExprContext

func (*HtmlAttributeValueExprContext) Accept

func (s *HtmlAttributeValueExprContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlAttributeValueExprContext) EL_EXPR

func (s *HtmlAttributeValueExprContext) EL_EXPR() antlr.TerminalNode

func (*HtmlAttributeValueExprContext) GetParser

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

func (*HtmlAttributeValueExprContext) GetRuleContext

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

func (*HtmlAttributeValueExprContext) IsHtmlAttributeValueExprContext

func (*HtmlAttributeValueExprContext) IsHtmlAttributeValueExprContext()

func (*HtmlAttributeValueExprContext) ToStringTree

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

type HtmlBeginContext

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

func NewEmptyHtmlBeginContext

func NewEmptyHtmlBeginContext() *HtmlBeginContext

func NewHtmlBeginContext

func NewHtmlBeginContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlBeginContext

func (*HtmlBeginContext) Accept

func (s *HtmlBeginContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlBeginContext) AllHtmlAttribute

func (s *HtmlBeginContext) AllHtmlAttribute() []IHtmlAttributeContext

func (*HtmlBeginContext) GetParser

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

func (*HtmlBeginContext) GetRuleContext

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

func (*HtmlBeginContext) HtmlAttribute

func (s *HtmlBeginContext) HtmlAttribute(i int) IHtmlAttributeContext

func (*HtmlBeginContext) HtmlTag

func (s *HtmlBeginContext) HtmlTag() IHtmlTagContext

func (*HtmlBeginContext) IsHtmlBeginContext

func (*HtmlBeginContext) IsHtmlBeginContext()

func (*HtmlBeginContext) TAG_BEGIN

func (s *HtmlBeginContext) TAG_BEGIN() antlr.TerminalNode

func (*HtmlBeginContext) ToStringTree

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

type HtmlChardataContext

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

func NewEmptyHtmlChardataContext

func NewEmptyHtmlChardataContext() *HtmlChardataContext

func NewHtmlChardataContext

func NewHtmlChardataContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlChardataContext

func (*HtmlChardataContext) Accept

func (s *HtmlChardataContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlChardataContext) AllHTML_TEXT

func (s *HtmlChardataContext) AllHTML_TEXT() []antlr.TerminalNode

func (*HtmlChardataContext) EL_EXPR

func (s *HtmlChardataContext) EL_EXPR() antlr.TerminalNode

func (*HtmlChardataContext) GetParser

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

func (*HtmlChardataContext) GetRuleContext

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

func (*HtmlChardataContext) HTML_TEXT

func (s *HtmlChardataContext) HTML_TEXT(i int) antlr.TerminalNode

func (*HtmlChardataContext) IsHtmlChardataContext

func (*HtmlChardataContext) IsHtmlChardataContext()

func (*HtmlChardataContext) JSP_STATIC_CONTENT_CHARS

func (s *HtmlChardataContext) JSP_STATIC_CONTENT_CHARS() antlr.TerminalNode

func (*HtmlChardataContext) JSP_STATIC_CONTENT_CHARS_MIXED

func (s *HtmlChardataContext) JSP_STATIC_CONTENT_CHARS_MIXED() antlr.TerminalNode

func (*HtmlChardataContext) ToStringTree

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

func (*HtmlChardataContext) WHITESPACES

func (s *HtmlChardataContext) WHITESPACES() antlr.TerminalNode

type HtmlCommentContext

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

func NewEmptyHtmlCommentContext

func NewEmptyHtmlCommentContext() *HtmlCommentContext

func NewHtmlCommentContext

func NewHtmlCommentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlCommentContext

func (*HtmlCommentContext) Accept

func (s *HtmlCommentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlCommentContext) GetParser

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

func (*HtmlCommentContext) GetRuleContext

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

func (*HtmlCommentContext) HtmlCommentText

func (s *HtmlCommentContext) HtmlCommentText() IHtmlCommentTextContext

func (*HtmlCommentContext) HtmlConditionalCommentText

func (s *HtmlCommentContext) HtmlConditionalCommentText() IHtmlConditionalCommentTextContext

func (*HtmlCommentContext) IsHtmlCommentContext

func (*HtmlCommentContext) IsHtmlCommentContext()

func (*HtmlCommentContext) JSP_COMMENT_END

func (s *HtmlCommentContext) JSP_COMMENT_END() antlr.TerminalNode

func (*HtmlCommentContext) JSP_COMMENT_START

func (s *HtmlCommentContext) JSP_COMMENT_START() antlr.TerminalNode

func (*HtmlCommentContext) JSP_CONDITIONAL_COMMENT_END

func (s *HtmlCommentContext) JSP_CONDITIONAL_COMMENT_END() antlr.TerminalNode

func (*HtmlCommentContext) JSP_CONDITIONAL_COMMENT_START

func (s *HtmlCommentContext) JSP_CONDITIONAL_COMMENT_START() antlr.TerminalNode

func (*HtmlCommentContext) ToStringTree

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

type HtmlCommentTextContext

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

func NewEmptyHtmlCommentTextContext

func NewEmptyHtmlCommentTextContext() *HtmlCommentTextContext

func NewHtmlCommentTextContext

func NewHtmlCommentTextContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlCommentTextContext

func (*HtmlCommentTextContext) Accept

func (s *HtmlCommentTextContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlCommentTextContext) AllJSP_COMMENT_TEXT

func (s *HtmlCommentTextContext) AllJSP_COMMENT_TEXT() []antlr.TerminalNode

func (*HtmlCommentTextContext) GetParser

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

func (*HtmlCommentTextContext) GetRuleContext

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

func (*HtmlCommentTextContext) IsHtmlCommentTextContext

func (*HtmlCommentTextContext) IsHtmlCommentTextContext()

func (*HtmlCommentTextContext) JSP_COMMENT_TEXT

func (s *HtmlCommentTextContext) JSP_COMMENT_TEXT(i int) antlr.TerminalNode

func (*HtmlCommentTextContext) ToStringTree

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

type HtmlConditionalCommentTextContext

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

func NewEmptyHtmlConditionalCommentTextContext

func NewEmptyHtmlConditionalCommentTextContext() *HtmlConditionalCommentTextContext

func NewHtmlConditionalCommentTextContext

func NewHtmlConditionalCommentTextContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlConditionalCommentTextContext

func (*HtmlConditionalCommentTextContext) Accept

func (s *HtmlConditionalCommentTextContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlConditionalCommentTextContext) GetParser

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

func (*HtmlConditionalCommentTextContext) GetRuleContext

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

func (*HtmlConditionalCommentTextContext) IsHtmlConditionalCommentTextContext

func (*HtmlConditionalCommentTextContext) IsHtmlConditionalCommentTextContext()

func (*HtmlConditionalCommentTextContext) JSP_CONDITIONAL_COMMENT

func (s *HtmlConditionalCommentTextContext) JSP_CONDITIONAL_COMMENT() antlr.TerminalNode

func (*HtmlConditionalCommentTextContext) ToStringTree

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

type HtmlContentContext

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

func NewEmptyHtmlContentContext

func NewEmptyHtmlContentContext() *HtmlContentContext

func NewHtmlContentContext

func NewHtmlContentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlContentContext

func (*HtmlContentContext) Accept

func (s *HtmlContentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlContentContext) GetParser

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

func (*HtmlContentContext) GetRuleContext

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

func (*HtmlContentContext) HtmlComment

func (s *HtmlContentContext) HtmlComment() IHtmlCommentContext

func (*HtmlContentContext) IsHtmlContentContext

func (*HtmlContentContext) IsHtmlContentContext()

func (*HtmlContentContext) JspDirective

func (s *HtmlContentContext) JspDirective() IJspDirectiveContext

func (*HtmlContentContext) JspElements

func (s *HtmlContentContext) JspElements() IJspElementsContext

func (*HtmlContentContext) JspExpression

func (s *HtmlContentContext) JspExpression() IJspExpressionContext

func (*HtmlContentContext) Scriptlet

func (s *HtmlContentContext) Scriptlet() IScriptletContext

func (*HtmlContentContext) ToStringTree

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

func (*HtmlContentContext) XhtmlCDATA

func (s *HtmlContentContext) XhtmlCDATA() IXhtmlCDATAContext

type HtmlContentsContext

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

func NewEmptyHtmlContentsContext

func NewEmptyHtmlContentsContext() *HtmlContentsContext

func NewHtmlContentsContext

func NewHtmlContentsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlContentsContext

func (*HtmlContentsContext) Accept

func (s *HtmlContentsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlContentsContext) AllHtmlChardata

func (s *HtmlContentsContext) AllHtmlChardata() []IHtmlChardataContext

func (*HtmlContentsContext) AllHtmlContent

func (s *HtmlContentsContext) AllHtmlContent() []IHtmlContentContext

func (*HtmlContentsContext) GetParser

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

func (*HtmlContentsContext) GetRuleContext

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

func (*HtmlContentsContext) HtmlChardata

func (s *HtmlContentsContext) HtmlChardata(i int) IHtmlChardataContext

func (*HtmlContentsContext) HtmlContent

func (s *HtmlContentsContext) HtmlContent(i int) IHtmlContentContext

func (*HtmlContentsContext) IsHtmlContentsContext

func (*HtmlContentsContext) IsHtmlContentsContext()

func (*HtmlContentsContext) ToStringTree

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

type HtmlMiscContext

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

func NewEmptyHtmlMiscContext

func NewEmptyHtmlMiscContext() *HtmlMiscContext

func NewHtmlMiscContext

func NewHtmlMiscContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlMiscContext

func (*HtmlMiscContext) Accept

func (s *HtmlMiscContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlMiscContext) GetParser

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

func (*HtmlMiscContext) GetRuleContext

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

func (*HtmlMiscContext) HtmlComment

func (s *HtmlMiscContext) HtmlComment() IHtmlCommentContext

func (*HtmlMiscContext) IsHtmlMiscContext

func (*HtmlMiscContext) IsHtmlMiscContext()

func (*HtmlMiscContext) JspExpression

func (s *HtmlMiscContext) JspExpression() IJspExpressionContext

func (*HtmlMiscContext) Scriptlet

func (s *HtmlMiscContext) Scriptlet() IScriptletContext

func (*HtmlMiscContext) ToStringTree

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

func (*HtmlMiscContext) WHITESPACES

func (s *HtmlMiscContext) WHITESPACES() antlr.TerminalNode

type HtmlTagContext

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

func NewEmptyHtmlTagContext

func NewEmptyHtmlTagContext() *HtmlTagContext

func NewHtmlTagContext

func NewHtmlTagContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlTagContext

func (*HtmlTagContext) Accept

func (s *HtmlTagContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlTagContext) AllHtmlTagName

func (s *HtmlTagContext) AllHtmlTagName() []IHtmlTagNameContext

func (*HtmlTagContext) GetParser

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

func (*HtmlTagContext) GetRuleContext

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

func (*HtmlTagContext) HtmlTagName

func (s *HtmlTagContext) HtmlTagName(i int) IHtmlTagNameContext

func (*HtmlTagContext) IsHtmlTagContext

func (*HtmlTagContext) IsHtmlTagContext()

func (*HtmlTagContext) JSP_JSTL_COLON

func (s *HtmlTagContext) JSP_JSTL_COLON() antlr.TerminalNode

func (*HtmlTagContext) ToStringTree

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

type HtmlTagNameContext

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

func NewEmptyHtmlTagNameContext

func NewEmptyHtmlTagNameContext() *HtmlTagNameContext

func NewHtmlTagNameContext

func NewHtmlTagNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *HtmlTagNameContext

func (*HtmlTagNameContext) Accept

func (s *HtmlTagNameContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*HtmlTagNameContext) GetParser

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

func (*HtmlTagNameContext) GetRuleContext

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

func (*HtmlTagNameContext) IsHtmlTagNameContext

func (*HtmlTagNameContext) IsHtmlTagNameContext()

func (*HtmlTagNameContext) TAG_IDENTIFIER

func (s *HtmlTagNameContext) TAG_IDENTIFIER() antlr.TerminalNode

func (*HtmlTagNameContext) ToStringTree

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

type IDtdContext

type IDtdContext interface {
	antlr.ParserRuleContext

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

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

IDtdContext is an interface to support dynamic dispatch.

type IDtdElementNameContext

type IDtdElementNameContext interface {
	antlr.ParserRuleContext

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

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

IDtdElementNameContext is an interface to support dynamic dispatch.

type IHtmlAttributeContext

type IHtmlAttributeContext interface {
	antlr.ParserRuleContext

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

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

IHtmlAttributeContext is an interface to support dynamic dispatch.

type IHtmlAttributeNameContext

type IHtmlAttributeNameContext interface {
	antlr.ParserRuleContext

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

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

IHtmlAttributeNameContext is an interface to support dynamic dispatch.

type IHtmlAttributeValueConstantContext

type IHtmlAttributeValueConstantContext interface {
	antlr.ParserRuleContext

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

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

IHtmlAttributeValueConstantContext is an interface to support dynamic dispatch.

type IHtmlAttributeValueContext

type IHtmlAttributeValueContext interface {
	antlr.ParserRuleContext

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

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

IHtmlAttributeValueContext is an interface to support dynamic dispatch.

type IHtmlAttributeValueExprContext

type IHtmlAttributeValueExprContext interface {
	antlr.ParserRuleContext

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

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

IHtmlAttributeValueExprContext is an interface to support dynamic dispatch.

type IHtmlBeginContext

type IHtmlBeginContext interface {
	antlr.ParserRuleContext

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

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

IHtmlBeginContext is an interface to support dynamic dispatch.

type IHtmlChardataContext

type IHtmlChardataContext interface {
	antlr.ParserRuleContext

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

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

IHtmlChardataContext is an interface to support dynamic dispatch.

type IHtmlCommentContext

type IHtmlCommentContext interface {
	antlr.ParserRuleContext

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

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

IHtmlCommentContext is an interface to support dynamic dispatch.

type IHtmlCommentTextContext

type IHtmlCommentTextContext interface {
	antlr.ParserRuleContext

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

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

IHtmlCommentTextContext is an interface to support dynamic dispatch.

type IHtmlConditionalCommentTextContext

type IHtmlConditionalCommentTextContext interface {
	antlr.ParserRuleContext

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

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

IHtmlConditionalCommentTextContext is an interface to support dynamic dispatch.

type IHtmlContentContext

type IHtmlContentContext interface {
	antlr.ParserRuleContext

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

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

IHtmlContentContext is an interface to support dynamic dispatch.

type IHtmlContentsContext

type IHtmlContentsContext interface {
	antlr.ParserRuleContext

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

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

IHtmlContentsContext is an interface to support dynamic dispatch.

type IHtmlMiscContext

type IHtmlMiscContext interface {
	antlr.ParserRuleContext

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

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

IHtmlMiscContext is an interface to support dynamic dispatch.

type IHtmlTagContext

type IHtmlTagContext interface {
	antlr.ParserRuleContext

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

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

IHtmlTagContext is an interface to support dynamic dispatch.

type IHtmlTagNameContext

type IHtmlTagNameContext interface {
	antlr.ParserRuleContext

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

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

IHtmlTagNameContext is an interface to support dynamic dispatch.

type IJspDirectiveContext

type IJspDirectiveContext interface {
	antlr.ParserRuleContext

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

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

IJspDirectiveContext is an interface to support dynamic dispatch.

type IJspDocumentContext

type IJspDocumentContext interface {
	antlr.ParserRuleContext

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

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

IJspDocumentContext is an interface to support dynamic dispatch.

type IJspDocumentsContext

type IJspDocumentsContext interface {
	antlr.ParserRuleContext

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

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

IJspDocumentsContext is an interface to support dynamic dispatch.

type IJspElementContext

type IJspElementContext interface {
	antlr.ParserRuleContext

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

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

IJspElementContext is an interface to support dynamic dispatch.

type IJspElementsContext

type IJspElementsContext interface {
	antlr.ParserRuleContext

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

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

IJspElementsContext is an interface to support dynamic dispatch.

type IJspExpressionContext

type IJspExpressionContext interface {
	antlr.ParserRuleContext

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

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

IJspExpressionContext is an interface to support dynamic dispatch.

type IJspStartContext

type IJspStartContext interface {
	antlr.ParserRuleContext

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

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

IJspStartContext is an interface to support dynamic dispatch.

type IPublicIdContext

type IPublicIdContext interface {
	antlr.ParserRuleContext

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

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

IPublicIdContext is an interface to support dynamic dispatch.

type IScriptletContext

type IScriptletContext interface {
	antlr.ParserRuleContext

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

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

IScriptletContext is an interface to support dynamic dispatch.

type ISystemIdContext

type ISystemIdContext interface {
	antlr.ParserRuleContext

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

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

ISystemIdContext is an interface to support dynamic dispatch.

type IXhtmlCDATAContext

type IXhtmlCDATAContext interface {
	antlr.ParserRuleContext

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

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

IXhtmlCDATAContext is an interface to support dynamic dispatch.

type IXmlContext

type IXmlContext interface {
	antlr.ParserRuleContext

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

	// GetName returns the name rule contexts.
	GetName() IHtmlTagNameContext

	// Get_htmlAttribute returns the _htmlAttribute rule contexts.
	Get_htmlAttribute() IHtmlAttributeContext

	// SetName sets the name rule contexts.
	SetName(IHtmlTagNameContext)

	// Set_htmlAttribute sets the _htmlAttribute rule contexts.
	Set_htmlAttribute(IHtmlAttributeContext)

	// GetAtts returns the atts rule context list.
	GetAtts() []IHtmlAttributeContext

	// SetAtts sets the atts rule context list.
	SetAtts([]IHtmlAttributeContext)

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

IXmlContext is an interface to support dynamic dispatch.

type JSPLexer

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

func NewJSPLexer

func NewJSPLexer(input antlr.CharStream) *JSPLexer

NewJSPLexer produces a new lexer instance for the optional input antlr.CharStream.

func (*JSPLexer) JSP_STATIC_CONTENT_CHARS_MIXED_Sempred

func (p *JSPLexer) JSP_STATIC_CONTENT_CHARS_MIXED_Sempred(localctx antlr.RuleContext, predIndex int) bool

func (*JSPLexer) JSP_STATIC_CONTENT_CHARS_Sempred

func (p *JSPLexer) JSP_STATIC_CONTENT_CHARS_Sempred(localctx antlr.RuleContext, predIndex int) bool

func (*JSPLexer) LA

func (p *JSPLexer) LA(idx int) int

func (*JSPLexer) Sempred

func (l *JSPLexer) Sempred(localctx antlr.RuleContext, ruleIndex, predIndex int) bool

type JSPParser

type JSPParser struct {
	*antlr.BaseParser
}

func NewJSPParser

func NewJSPParser(input antlr.TokenStream) *JSPParser

NewJSPParser produces a new parser instance for the optional input antlr.TokenStream.

func (*JSPParser) Dtd

func (p *JSPParser) Dtd() (localctx IDtdContext)

func (*JSPParser) DtdElementName

func (p *JSPParser) DtdElementName() (localctx IDtdElementNameContext)

func (*JSPParser) HtmlAttribute

func (p *JSPParser) HtmlAttribute() (localctx IHtmlAttributeContext)

func (*JSPParser) HtmlAttributeName

func (p *JSPParser) HtmlAttributeName() (localctx IHtmlAttributeNameContext)

func (*JSPParser) HtmlAttributeValue

func (p *JSPParser) HtmlAttributeValue() (localctx IHtmlAttributeValueContext)

func (*JSPParser) HtmlAttributeValueConstant

func (p *JSPParser) HtmlAttributeValueConstant() (localctx IHtmlAttributeValueConstantContext)

func (*JSPParser) HtmlAttributeValueExpr

func (p *JSPParser) HtmlAttributeValueExpr() (localctx IHtmlAttributeValueExprContext)

func (*JSPParser) HtmlBegin

func (p *JSPParser) HtmlBegin() (localctx IHtmlBeginContext)

func (*JSPParser) HtmlChardata

func (p *JSPParser) HtmlChardata() (localctx IHtmlChardataContext)

func (*JSPParser) HtmlComment

func (p *JSPParser) HtmlComment() (localctx IHtmlCommentContext)

func (*JSPParser) HtmlCommentText

func (p *JSPParser) HtmlCommentText() (localctx IHtmlCommentTextContext)

func (*JSPParser) HtmlConditionalCommentText

func (p *JSPParser) HtmlConditionalCommentText() (localctx IHtmlConditionalCommentTextContext)

func (*JSPParser) HtmlContent

func (p *JSPParser) HtmlContent() (localctx IHtmlContentContext)

func (*JSPParser) HtmlContents

func (p *JSPParser) HtmlContents() (localctx IHtmlContentsContext)

func (*JSPParser) HtmlMisc

func (p *JSPParser) HtmlMisc() (localctx IHtmlMiscContext)

func (*JSPParser) HtmlTag

func (p *JSPParser) HtmlTag() (localctx IHtmlTagContext)

func (*JSPParser) HtmlTagName

func (p *JSPParser) HtmlTagName() (localctx IHtmlTagNameContext)

func (*JSPParser) JspDirective

func (p *JSPParser) JspDirective() (localctx IJspDirectiveContext)

func (*JSPParser) JspDocument

func (p *JSPParser) JspDocument() (localctx IJspDocumentContext)

func (*JSPParser) JspDocuments

func (p *JSPParser) JspDocuments() (localctx IJspDocumentsContext)

func (*JSPParser) JspElement

func (p *JSPParser) JspElement() (localctx IJspElementContext)

func (*JSPParser) JspElements

func (p *JSPParser) JspElements() (localctx IJspElementsContext)

func (*JSPParser) JspExpression

func (p *JSPParser) JspExpression() (localctx IJspExpressionContext)

func (*JSPParser) JspStart

func (p *JSPParser) JspStart() (localctx IJspStartContext)

func (*JSPParser) PublicId

func (p *JSPParser) PublicId() (localctx IPublicIdContext)

func (*JSPParser) Scriptlet

func (p *JSPParser) Scriptlet() (localctx IScriptletContext)

func (*JSPParser) SystemId

func (p *JSPParser) SystemId() (localctx ISystemIdContext)

func (*JSPParser) XhtmlCDATA

func (p *JSPParser) XhtmlCDATA() (localctx IXhtmlCDATAContext)

func (*JSPParser) Xml

func (p *JSPParser) Xml() (localctx IXmlContext)

type JSPParserVisitor

type JSPParserVisitor interface {
	antlr.ParseTreeVisitor

	// Visit a parse tree produced by JSPParser#jspDocuments.
	VisitJspDocuments(ctx *JspDocumentsContext) interface{}

	// Visit a parse tree produced by JSPParser#jspDocument.
	VisitJspDocument(ctx *JspDocumentContext) interface{}

	// Visit a parse tree produced by JSPParser#jspStart.
	VisitJspStart(ctx *JspStartContext) interface{}

	// Visit a parse tree produced by JSPParser#jspElements.
	VisitJspElements(ctx *JspElementsContext) interface{}

	// Visit a parse tree produced by JSPParser#jspElement.
	VisitJspElement(ctx *JspElementContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlBegin.
	VisitHtmlBegin(ctx *HtmlBeginContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlTag.
	VisitHtmlTag(ctx *HtmlTagContext) interface{}

	// Visit a parse tree produced by JSPParser#jspDirective.
	VisitJspDirective(ctx *JspDirectiveContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlContents.
	VisitHtmlContents(ctx *HtmlContentsContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlContent.
	VisitHtmlContent(ctx *HtmlContentContext) interface{}

	// Visit a parse tree produced by JSPParser#jspExpression.
	VisitJspExpression(ctx *JspExpressionContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttribute.
	VisitHtmlAttribute(ctx *HtmlAttributeContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeName.
	VisitHtmlAttributeName(ctx *HtmlAttributeNameContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeValue.
	VisitHtmlAttributeValue(ctx *HtmlAttributeValueContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeValueExpr.
	VisitHtmlAttributeValueExpr(ctx *HtmlAttributeValueExprContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlAttributeValueConstant.
	VisitHtmlAttributeValueConstant(ctx *HtmlAttributeValueConstantContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlTagName.
	VisitHtmlTagName(ctx *HtmlTagNameContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlChardata.
	VisitHtmlChardata(ctx *HtmlChardataContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlMisc.
	VisitHtmlMisc(ctx *HtmlMiscContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlComment.
	VisitHtmlComment(ctx *HtmlCommentContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlCommentText.
	VisitHtmlCommentText(ctx *HtmlCommentTextContext) interface{}

	// Visit a parse tree produced by JSPParser#htmlConditionalCommentText.
	VisitHtmlConditionalCommentText(ctx *HtmlConditionalCommentTextContext) interface{}

	// Visit a parse tree produced by JSPParser#xhtmlCDATA.
	VisitXhtmlCDATA(ctx *XhtmlCDATAContext) interface{}

	// Visit a parse tree produced by JSPParser#dtd.
	VisitDtd(ctx *DtdContext) interface{}

	// Visit a parse tree produced by JSPParser#dtdElementName.
	VisitDtdElementName(ctx *DtdElementNameContext) interface{}

	// Visit a parse tree produced by JSPParser#publicId.
	VisitPublicId(ctx *PublicIdContext) interface{}

	// Visit a parse tree produced by JSPParser#systemId.
	VisitSystemId(ctx *SystemIdContext) interface{}

	// Visit a parse tree produced by JSPParser#xml.
	VisitXml(ctx *XmlContext) interface{}

	// Visit a parse tree produced by JSPParser#scriptlet.
	VisitScriptlet(ctx *ScriptletContext) interface{}
}

A complete Visitor for a parse tree produced by JSPParser.

type JspDirectiveContext

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

func NewEmptyJspDirectiveContext

func NewEmptyJspDirectiveContext() *JspDirectiveContext

func NewJspDirectiveContext

func NewJspDirectiveContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspDirectiveContext

func (*JspDirectiveContext) Accept

func (s *JspDirectiveContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspDirectiveContext) AllHtmlAttribute

func (s *JspDirectiveContext) AllHtmlAttribute() []IHtmlAttributeContext

func (*JspDirectiveContext) AllTAG_WHITESPACE

func (s *JspDirectiveContext) AllTAG_WHITESPACE() []antlr.TerminalNode

func (*JspDirectiveContext) DIRECTIVE_BEGIN

func (s *JspDirectiveContext) DIRECTIVE_BEGIN() antlr.TerminalNode

func (*JspDirectiveContext) DIRECTIVE_END

func (s *JspDirectiveContext) DIRECTIVE_END() antlr.TerminalNode

func (*JspDirectiveContext) GetParser

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

func (*JspDirectiveContext) GetRuleContext

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

func (*JspDirectiveContext) HtmlAttribute

func (s *JspDirectiveContext) HtmlAttribute(i int) IHtmlAttributeContext

func (*JspDirectiveContext) HtmlTagName

func (s *JspDirectiveContext) HtmlTagName() IHtmlTagNameContext

func (*JspDirectiveContext) IsJspDirectiveContext

func (*JspDirectiveContext) IsJspDirectiveContext()

func (*JspDirectiveContext) TAG_WHITESPACE

func (s *JspDirectiveContext) TAG_WHITESPACE(i int) antlr.TerminalNode

func (*JspDirectiveContext) ToStringTree

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

type JspDocumentContext

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

func NewEmptyJspDocumentContext

func NewEmptyJspDocumentContext() *JspDocumentContext

func NewJspDocumentContext

func NewJspDocumentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspDocumentContext

func (*JspDocumentContext) Accept

func (s *JspDocumentContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspDocumentContext) AllJspElements

func (s *JspDocumentContext) AllJspElements() []IJspElementsContext

func (*JspDocumentContext) AllJspStart

func (s *JspDocumentContext) AllJspStart() []IJspStartContext

func (*JspDocumentContext) Dtd

func (*JspDocumentContext) GetParser

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

func (*JspDocumentContext) GetRuleContext

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

func (*JspDocumentContext) IsJspDocumentContext

func (*JspDocumentContext) IsJspDocumentContext()

func (*JspDocumentContext) JspElements

func (s *JspDocumentContext) JspElements(i int) IJspElementsContext

func (*JspDocumentContext) JspStart

func (s *JspDocumentContext) JspStart(i int) IJspStartContext

func (*JspDocumentContext) ToStringTree

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

func (*JspDocumentContext) Xml

type JspDocumentsContext

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

func NewEmptyJspDocumentsContext

func NewEmptyJspDocumentsContext() *JspDocumentsContext

func NewJspDocumentsContext

func NewJspDocumentsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspDocumentsContext

func (*JspDocumentsContext) Accept

func (s *JspDocumentsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspDocumentsContext) AllJspDocument

func (s *JspDocumentsContext) AllJspDocument() []IJspDocumentContext

func (*JspDocumentsContext) GetParser

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

func (*JspDocumentsContext) GetRuleContext

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

func (*JspDocumentsContext) IsJspDocumentsContext

func (*JspDocumentsContext) IsJspDocumentsContext()

func (*JspDocumentsContext) JspDocument

func (s *JspDocumentsContext) JspDocument(i int) IJspDocumentContext

func (*JspDocumentsContext) ToStringTree

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

type JspElementContext

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

func NewEmptyJspElementContext

func NewEmptyJspElementContext() *JspElementContext

func NewJspElementContext

func NewJspElementContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspElementContext

func (*JspElementContext) Accept

func (s *JspElementContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspElementContext) AllTAG_CLOSE

func (s *JspElementContext) AllTAG_CLOSE() []antlr.TerminalNode

func (*JspElementContext) CLOSE_TAG_BEGIN

func (s *JspElementContext) CLOSE_TAG_BEGIN() antlr.TerminalNode

func (*JspElementContext) GetParser

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

func (*JspElementContext) GetRuleContext

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

func (*JspElementContext) HtmlBegin

func (s *JspElementContext) HtmlBegin() IHtmlBeginContext

func (*JspElementContext) HtmlContents

func (s *JspElementContext) HtmlContents() IHtmlContentsContext

func (*JspElementContext) HtmlTag

func (s *JspElementContext) HtmlTag() IHtmlTagContext

func (*JspElementContext) IsJspElementContext

func (*JspElementContext) IsJspElementContext()

func (*JspElementContext) TAG_CLOSE

func (s *JspElementContext) TAG_CLOSE(i int) antlr.TerminalNode

func (*JspElementContext) TAG_SLASH_END

func (s *JspElementContext) TAG_SLASH_END() antlr.TerminalNode

func (*JspElementContext) ToStringTree

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

type JspElementsContext

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

func NewEmptyJspElementsContext

func NewEmptyJspElementsContext() *JspElementsContext

func NewJspElementsContext

func NewJspElementsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspElementsContext

func (*JspElementsContext) Accept

func (s *JspElementsContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspElementsContext) AllHtmlMisc

func (s *JspElementsContext) AllHtmlMisc() []IHtmlMiscContext

func (*JspElementsContext) GetParser

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

func (*JspElementsContext) GetRuleContext

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

func (*JspElementsContext) HtmlMisc

func (s *JspElementsContext) HtmlMisc(i int) IHtmlMiscContext

func (*JspElementsContext) IsJspElementsContext

func (*JspElementsContext) IsJspElementsContext()

func (*JspElementsContext) JspDirective

func (s *JspElementsContext) JspDirective() IJspDirectiveContext

func (*JspElementsContext) JspElement

func (s *JspElementsContext) JspElement() IJspElementContext

func (*JspElementsContext) Scriptlet

func (s *JspElementsContext) Scriptlet() IScriptletContext

func (*JspElementsContext) ToStringTree

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

type JspExpressionContext

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

func NewEmptyJspExpressionContext

func NewEmptyJspExpressionContext() *JspExpressionContext

func NewJspExpressionContext

func NewJspExpressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspExpressionContext

func (*JspExpressionContext) Accept

func (s *JspExpressionContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspExpressionContext) EL_EXPR

func (s *JspExpressionContext) EL_EXPR() antlr.TerminalNode

func (*JspExpressionContext) GetParser

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

func (*JspExpressionContext) GetRuleContext

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

func (*JspExpressionContext) IsJspExpressionContext

func (*JspExpressionContext) IsJspExpressionContext()

func (*JspExpressionContext) ToStringTree

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

type JspStartContext

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

func NewEmptyJspStartContext

func NewEmptyJspStartContext() *JspStartContext

func NewJspStartContext

func NewJspStartContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *JspStartContext

func (*JspStartContext) Accept

func (s *JspStartContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*JspStartContext) GetParser

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

func (*JspStartContext) GetRuleContext

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

func (*JspStartContext) IsJspStartContext

func (*JspStartContext) IsJspStartContext()

func (*JspStartContext) JspDirective

func (s *JspStartContext) JspDirective() IJspDirectiveContext

func (*JspStartContext) Scriptlet

func (s *JspStartContext) Scriptlet() IScriptletContext

func (*JspStartContext) ToStringTree

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

func (*JspStartContext) WHITESPACES

func (s *JspStartContext) WHITESPACES() antlr.TerminalNode

type PublicIdContext

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

func NewEmptyPublicIdContext

func NewEmptyPublicIdContext() *PublicIdContext

func NewPublicIdContext

func NewPublicIdContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *PublicIdContext

func (*PublicIdContext) Accept

func (s *PublicIdContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*PublicIdContext) DTD_QUOTED

func (s *PublicIdContext) DTD_QUOTED() antlr.TerminalNode

func (*PublicIdContext) GetParser

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

func (*PublicIdContext) GetRuleContext

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

func (*PublicIdContext) IsPublicIdContext

func (*PublicIdContext) IsPublicIdContext()

func (*PublicIdContext) ToStringTree

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

type ScriptletContext

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

func NewEmptyScriptletContext

func NewEmptyScriptletContext() *ScriptletContext

func NewScriptletContext

func NewScriptletContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ScriptletContext

func (*ScriptletContext) Accept

func (s *ScriptletContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*ScriptletContext) BLOB_CLOSE

func (s *ScriptletContext) BLOB_CLOSE() antlr.TerminalNode

func (*ScriptletContext) BLOB_CONTENT

func (s *ScriptletContext) BLOB_CONTENT() antlr.TerminalNode

func (*ScriptletContext) DECLARATION_BEGIN

func (s *ScriptletContext) DECLARATION_BEGIN() antlr.TerminalNode

func (*ScriptletContext) ECHO_EXPRESSION_OPEN

func (s *ScriptletContext) ECHO_EXPRESSION_OPEN() antlr.TerminalNode

func (*ScriptletContext) GetParser

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

func (*ScriptletContext) GetRuleContext

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

func (*ScriptletContext) IsScriptletContext

func (*ScriptletContext) IsScriptletContext()

func (*ScriptletContext) SCRIPTLET_OPEN

func (s *ScriptletContext) SCRIPTLET_OPEN() antlr.TerminalNode

func (*ScriptletContext) ToStringTree

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

type SystemIdContext

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

func NewEmptySystemIdContext

func NewEmptySystemIdContext() *SystemIdContext

func NewSystemIdContext

func NewSystemIdContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *SystemIdContext

func (*SystemIdContext) Accept

func (s *SystemIdContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*SystemIdContext) DTD_QUOTED

func (s *SystemIdContext) DTD_QUOTED() antlr.TerminalNode

func (*SystemIdContext) GetParser

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

func (*SystemIdContext) GetRuleContext

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

func (*SystemIdContext) IsSystemIdContext

func (*SystemIdContext) IsSystemIdContext()

func (*SystemIdContext) ToStringTree

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

type XhtmlCDATAContext

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

func NewEmptyXhtmlCDATAContext

func NewEmptyXhtmlCDATAContext() *XhtmlCDATAContext

func NewXhtmlCDATAContext

func NewXhtmlCDATAContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *XhtmlCDATAContext

func (*XhtmlCDATAContext) Accept

func (s *XhtmlCDATAContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*XhtmlCDATAContext) CDATA

func (s *XhtmlCDATAContext) CDATA() antlr.TerminalNode

func (*XhtmlCDATAContext) GetParser

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

func (*XhtmlCDATAContext) GetRuleContext

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

func (*XhtmlCDATAContext) IsXhtmlCDATAContext

func (*XhtmlCDATAContext) IsXhtmlCDATAContext()

func (*XhtmlCDATAContext) ToStringTree

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

type XmlContext

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

func NewEmptyXmlContext

func NewEmptyXmlContext() *XmlContext

func NewXmlContext

func NewXmlContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *XmlContext

func (*XmlContext) Accept

func (s *XmlContext) Accept(visitor antlr.ParseTreeVisitor) interface{}

func (*XmlContext) AllHtmlAttribute

func (s *XmlContext) AllHtmlAttribute() []IHtmlAttributeContext

func (*XmlContext) GetAtts

func (s *XmlContext) GetAtts() []IHtmlAttributeContext

func (*XmlContext) GetName

func (s *XmlContext) GetName() IHtmlTagNameContext

func (*XmlContext) GetParser

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

func (*XmlContext) GetRuleContext

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

func (*XmlContext) Get_htmlAttribute

func (s *XmlContext) Get_htmlAttribute() IHtmlAttributeContext

func (*XmlContext) HtmlAttribute

func (s *XmlContext) HtmlAttribute(i int) IHtmlAttributeContext

func (*XmlContext) HtmlTagName

func (s *XmlContext) HtmlTagName() IHtmlTagNameContext

func (*XmlContext) IsXmlContext

func (*XmlContext) IsXmlContext()

func (*XmlContext) SetAtts

func (s *XmlContext) SetAtts(v []IHtmlAttributeContext)

func (*XmlContext) SetName

func (s *XmlContext) SetName(v IHtmlTagNameContext)

func (*XmlContext) Set_htmlAttribute

func (s *XmlContext) Set_htmlAttribute(v IHtmlAttributeContext)

func (*XmlContext) TAG_END

func (s *XmlContext) TAG_END() antlr.TerminalNode

func (*XmlContext) ToStringTree

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

func (*XmlContext) XML_DECLARATION

func (s *XmlContext) XML_DECLARATION() antlr.TerminalNode

Jump to

Keyboard shortcuts

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