Class ArrayAccessGrammarMatcher
java.lang.Object
com.singularsys.jep.configurableparser.matchers.ArrayAccessGrammarMatcher
- All Implemented Interfaces:
GrammarMatcher,Serializable
Matches syntax for array element access a[3].
For multiple dimension arrays the syntax a[2][3] can be used.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionArrayAccessGrammarMatcher(SymbolToken open, SymbolToken close) Construct a matcher for array access. -
Method Summary
Modifier and TypeMethodDescriptionvoidDelayed initialisation, this method is called whenever components of the jep instance are changed.match(Lookahead2Iterator<Token> it, GrammarParser parser) Test whether the input matches this pattern.
-
Constructor Details
-
ArrayAccessGrammarMatcher
Construct a matcher for array access.- Parameters:
open- token representing the opening delimiterclose- token representing the closing delimiter
-
-
Method Details
-
init
Description copied from interface:GrammarMatcherDelayed initialisation, this method is called whenever components of the jep instance are changed.- Specified by:
initin interfaceGrammarMatcher- Parameters:
jep- the current jep instance.
-
match
Description copied from interface:GrammarMatcherTest whether the input matches this pattern.- Specified by:
matchin interfaceGrammarMatcher- Parameters:
it- An iterator inspecting the inputparser- the parser to use when evaluating sub expressions- Returns:
- if matched returns a node representing the content, return null is does not match
- Throws:
ParseException- if there is a syntactical error in the input.
-