Interface InlineHTMLTree
-
- All Superinterfaces:
StatementTree
,Tree
- All Known Implementing Classes:
InlineHTMLTreeImpl
public interface InlineHTMLTree extends StatementTree
This interface presents HTML code embedded into php code.NOTE! If you want consider all HTML code in the tree you should use
SyntaxToken
with kindTree.Kind.INLINE_HTML_TOKEN
.In the following code both "?> </a>
Tree.Kind.INLINE_HTML_TOKEN
but in first line this token is part of assignment statement (ExpressionStatementTree.eosToken()
).... $a = 5 ?> </a> </a> </a> </a>
InlineHTMLTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxToken
inlineHTMLToken()
-
-
-
Method Detail
-
inlineHTMLToken
SyntaxToken inlineHTMLToken()
-
-