jspparser

package
v1.3.7-beta7 Latest Latest
Warning

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

Go to latest
Published: Nov 22, 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
	JSPLexerJSP_COMMENT_END_TAG               = 4
	JSPLexerJSP_CONDITIONAL_COMMENT_START     = 5
	JSPLexerJSP_CONDITIONAL_COMMENT_START_TAG = 6
	JSPLexerJSP_CONDITIONAL_COMMENT_END_TAG   = 7
	JSPLexerXML_DECLARATION                   = 8
	JSPLexerCDATA                             = 9
	JSPLexerDTD                               = 10
	JSPLexerDTD_START                         = 11
	JSPLexerWHITESPACE_SKIP                   = 12
	JSPLexerCLOSE_TAG_BEGIN                   = 13
	JSPLexerTAG_BEGIN                         = 14
	JSPLexerDIRECTIVE_BEGIN                   = 15
	JSPLexerDECLARATION_BEGIN                 = 16
	JSPLexerECHO_EXPRESSION_OPEN              = 17
	JSPLexerSCRIPTLET_OPEN                    = 18
	JSPLexerEXPRESSION_OPEN                   = 19
	JSPLexerWHITESPACES                       = 20
	JSPLexerDOUBLE_QUOTE                      = 21
	JSPLexerSINGLE_QUOTE                      = 22
	JSPLexerQUOTE                             = 23
	JSPLexerTAG_END                           = 24
	JSPLexerEQUALS                            = 25
	JSPLexerJSP_STATIC_CONTENT_CHARS_MIXED    = 26
	JSPLexerJSP_STATIC_CONTENT_CHARS          = 27
	JSPLexerJSP_STATIC_CONTENT_CHAR           = 28
	JSPLexerJSP_END                           = 29
	JSPLexerJSP_CONDITIONAL_COMMENT_END       = 30
	JSPLexerJSP_CONDITIONAL_COMMENT           = 31
	JSPLexerJSP_COMMENT_TEXT                  = 32
	JSPLexerDTD_PUBLIC                        = 33
	JSPLexerDTD_SYSTEM                        = 34
	JSPLexerDTD_WHITESPACE_SKIP               = 35
	JSPLexerDTD_QUOTED                        = 36
	JSPLexerDTD_IDENTIFIER                    = 37
	JSPLexerBLOB_CLOSE                        = 38
	JSPLexerBLOB_CONTENT                      = 39
	JSPLexerJSPEXPR_CONTENT_CLOSE             = 40
	JSPLexerTAG_SLASH_END                     = 41
	JSPLexerTAG_SLASH                         = 42
	JSPLexerDIRECTIVE_END                     = 43
	JSPLexerTAG_IDENTIFIER                    = 44
	JSPLexerTAG_WHITESPACE                    = 45
	JSPLexerSCRIPT_BODY                       = 46
	JSPLexerSCRIPT_SHORT_BODY                 = 47
	JSPLexerSTYLE_BODY                        = 48
	JSPLexerSTYLE_SHORT_BODY                  = 49
	JSPLexerATTVAL_ATTRIBUTE                  = 50
	JSPLexerEL_EXPR                           = 51
)

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
	JSPParserJSP_COMMENT_END_TAG               = 4
	JSPParserJSP_CONDITIONAL_COMMENT_START     = 5
	JSPParserJSP_CONDITIONAL_COMMENT_START_TAG = 6
	JSPParserJSP_CONDITIONAL_COMMENT_END_TAG   = 7
	JSPParserXML_DECLARATION                   = 8
	JSPParserCDATA                             = 9
	JSPParserDTD                               = 10
	JSPParserDTD_START                         = 11
	JSPParserWHITESPACE_SKIP                   = 12
	JSPParserCLOSE_TAG_BEGIN                   = 13
	JSPParserTAG_BEGIN                         = 14
	JSPParserDIRECTIVE_BEGIN                   = 15
	JSPParserDECLARATION_BEGIN                 = 16
	JSPParserECHO_EXPRESSION_OPEN              = 17
	JSPParserSCRIPTLET_OPEN                    = 18
	JSPParserEXPRESSION_OPEN                   = 19
	JSPParserWHITESPACES                       = 20
	JSPParserDOUBLE_QUOTE                      = 21
	JSPParserSINGLE_QUOTE                      = 22
	JSPParserQUOTE                             = 23
	JSPParserTAG_END                           = 24
	JSPParserEQUALS                            = 25
	JSPParserJSP_STATIC_CONTENT_CHARS_MIXED    = 26
	JSPParserJSP_STATIC_CONTENT_CHARS          = 27
	JSPParserJSP_STATIC_CONTENT_CHAR           = 28
	JSPParserJSP_END                           = 29
	JSPParserJSP_CONDITIONAL_COMMENT_END       = 30
	JSPParserJSP_CONDITIONAL_COMMENT           = 31
	JSPParserJSP_COMMENT_TEXT                  = 32
	JSPParserDTD_PUBLIC                        = 33
	JSPParserDTD_SYSTEM                        = 34
	JSPParserDTD_WHITESPACE_SKIP               = 35
	JSPParserDTD_QUOTED                        = 36
	JSPParserDTD_IDENTIFIER                    = 37
	JSPParserBLOB_CLOSE                        = 38
	JSPParserBLOB_CONTENT                      = 39
	JSPParserJSPEXPR_CONTENT_CLOSE             = 40
	JSPParserTAG_SLASH_END                     = 41
	JSPParserTAG_SLASH                         = 42
	JSPParserDIRECTIVE_END                     = 43
	JSPParserTAG_IDENTIFIER                    = 44
	JSPParserTAG_WHITESPACE                    = 45
	JSPParserSCRIPT_BODY                       = 46
	JSPParserSCRIPT_SHORT_BODY                 = 47
	JSPParserSTYLE_BODY                        = 48
	JSPParserSTYLE_SHORT_BODY                  = 49
	JSPParserATTVAL_ATTRIBUTE                  = 50
	JSPParserEL_EXPR                           = 51
)

JSPParser tokens.

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

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) 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) VisitHtmlMisc

func (v *BaseJSPParserVisitor) VisitHtmlMisc(ctx *HtmlMiscContext) 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) 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) 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) GetName

func (*HtmlAttributeContext) GetParser

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

func (*HtmlAttributeContext) GetRuleContext

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

func (*HtmlAttributeContext) GetValue

func (*HtmlAttributeContext) HtmlAttributeName

func (s *HtmlAttributeContext) HtmlAttributeName() IHtmlAttributeNameContext

func (*HtmlAttributeContext) HtmlAttributeValue

func (s *HtmlAttributeContext) HtmlAttributeValue() IHtmlAttributeValueContext

func (*HtmlAttributeContext) IsHtmlAttributeContext

func (*HtmlAttributeContext) IsHtmlAttributeContext()

func (*HtmlAttributeContext) JspElement

func (s *HtmlAttributeContext) JspElement() IJspElementContext

func (*HtmlAttributeContext) Scriptlet

func (s *HtmlAttributeContext) Scriptlet() IScriptletContext

func (*HtmlAttributeContext) SetName

func (*HtmlAttributeContext) SetValue

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 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) GetParser

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

func (*HtmlChardataContext) GetRuleContext

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

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) HtmlChardata

func (s *HtmlContentContext) HtmlChardata() IHtmlChardataContext

func (*HtmlContentContext) HtmlComment

func (s *HtmlContentContext) HtmlComment() IHtmlCommentContext

func (*HtmlContentContext) IsHtmlContentContext

func (*HtmlContentContext) IsHtmlContentContext()

func (*HtmlContentContext) JspDirective

func (s *HtmlContentContext) JspDirective() IJspDirectiveContext

func (*HtmlContentContext) JspElement

func (s *HtmlContentContext) JspElement() IJspElementContext

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 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) HtmlChardata

func (s *HtmlMiscContext) HtmlChardata() IHtmlChardataContext

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

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

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

	// GetValue returns the value rule contexts.
	GetValue() IHtmlAttributeValueContext

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

	// SetValue sets the value rule contexts.
	SetValue(IHtmlAttributeValueContext)

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

	// 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)

	// 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 IJspElementContext

type IJspElementContext 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)

	// 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 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) 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) HtmlMisc

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

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) 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) 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#jspDocument.
	VisitJspDocument(ctx *JspDocumentContext) 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#jspDirective.
	VisitJspDirective(ctx *JspDirectiveContext) 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) GetAtts

func (*JspDirectiveContext) GetName

func (*JspDirectiveContext) GetParser

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

func (*JspDirectiveContext) GetRuleContext

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

func (*JspDirectiveContext) Get_htmlAttribute

func (s *JspDirectiveContext) Get_htmlAttribute() IHtmlAttributeContext

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) SetAtts

func (*JspDirectiveContext) SetName

func (*JspDirectiveContext) Set_htmlAttribute

func (s *JspDirectiveContext) Set_htmlAttribute(v IHtmlAttributeContext)

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) AllJspDirective

func (s *JspDocumentContext) AllJspDirective() []IJspDirectiveContext

func (*JspDocumentContext) AllJspElements

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

func (*JspDocumentContext) AllScriptlet

func (s *JspDocumentContext) AllScriptlet() []IScriptletContext

func (*JspDocumentContext) AllWHITESPACES

func (s *JspDocumentContext) AllWHITESPACES() []antlr.TerminalNode

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) JspDirective

func (s *JspDocumentContext) JspDirective(i int) IJspDirectiveContext

func (*JspDocumentContext) JspElements

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

func (*JspDocumentContext) Scriptlet

func (s *JspDocumentContext) Scriptlet(i int) IScriptletContext

func (*JspDocumentContext) ToStringTree

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

func (*JspDocumentContext) WHITESPACES

func (s *JspDocumentContext) WHITESPACES(i int) antlr.TerminalNode

func (*JspDocumentContext) Xml

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) AllHtmlAttribute

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

func (*JspElementContext) AllHtmlContent

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

func (*JspElementContext) AllHtmlTagName

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

func (*JspElementContext) AllTAG_END

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

func (*JspElementContext) CLOSE_TAG_BEGIN

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

func (*JspElementContext) GetAtts

func (*JspElementContext) GetName

func (*JspElementContext) GetParser

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

func (*JspElementContext) GetRuleContext

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

func (*JspElementContext) Get_htmlAttribute

func (s *JspElementContext) Get_htmlAttribute() IHtmlAttributeContext

func (*JspElementContext) HtmlAttribute

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

func (*JspElementContext) HtmlContent

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

func (*JspElementContext) HtmlTagName

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

func (*JspElementContext) IsJspElementContext

func (*JspElementContext) IsJspElementContext()

func (*JspElementContext) SetAtts

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

func (*JspElementContext) SetName

func (s *JspElementContext) SetName(v IHtmlTagNameContext)

func (*JspElementContext) Set_htmlAttribute

func (s *JspElementContext) Set_htmlAttribute(v IHtmlAttributeContext)

func (*JspElementContext) TAG_BEGIN

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

func (*JspElementContext) TAG_END

func (s *JspElementContext) TAG_END(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 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_CONTENT

func (s *ScriptletContext) BLOB_CONTENT() 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) JSP_END

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

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