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

Method Literal

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

Source from the content-addressed store, hash-verified

2427 * Literal Reserved Keywords
2428 */
2429 final public void Literal() throws ParseException {
2430 switch ((jj_ntk == -1) ? jj_ntk_f() : jj_ntk) {
2431 case TRUE:
2432 case FALSE: {
2433 Boolean();
2434 break;
2435 }
2436 case FLOATING_POINT_LITERAL: {
2437 FloatingPoint();
2438 break;
2439 }
2440 case INTEGER_LITERAL: {
2441 Integer();
2442 break;
2443 }
2444 case STRING_LITERAL: {
2445 String();
2446 break;
2447 }
2448 case NULL: {
2449 Null();
2450 break;
2451 }
2452 default:
2453 jj_la1[54] = jj_gen;
2454 jj_consume_token(-1);
2455 throw new ParseException();
2456 }
2457 }
2458
2459 /*
2460 * Boolean For 'true' 'false'

Callers 1

ValuePrefixMethod · 0.95

Calls 7

jj_ntk_fMethod · 0.95
BooleanMethod · 0.95
FloatingPointMethod · 0.95
IntegerMethod · 0.95
StringMethod · 0.95
NullMethod · 0.95
jj_consume_tokenMethod · 0.95

Tested by

no test coverage detected