MCPcopy Create free account
hub / github.com/apache/tomcat / ValuePrefix

Method ValuePrefix

java/org/apache/el/parser/ELParser.java:1808–1831  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1806 * ValuePrefix For Literals, Variables, and Functions
1807 */
1808 final public void ValuePrefix() throws ParseException {
1809 switch ((jj_ntk == -1) ? jj_ntk_f() : jj_ntk) {
1810 case INTEGER_LITERAL:
1811 case FLOATING_POINT_LITERAL:
1812 case STRING_LITERAL:
1813 case TRUE:
1814 case FALSE:
1815 case NULL: {
1816 Literal();
1817 break;
1818 }
1819 case START_SET_OR_MAP:
1820 case LPAREN:
1821 case LBRACK:
1822 case IDENTIFIER: {
1823 NonLiteral();
1824 break;
1825 }
1826 default:
1827 jj_la1[38] = jj_gen;
1828 jj_consume_token(-1);
1829 throw new ParseException();
1830 }
1831 }
1832
1833 /*
1834 * ValueSuffix Either dot or bracket notation

Callers 1

ValueMethod · 0.95

Calls 4

jj_ntk_fMethod · 0.95
LiteralMethod · 0.95
NonLiteralMethod · 0.95
jj_consume_tokenMethod · 0.95

Tested by

no test coverage detected