The value of a literal token, recorded as a string. For integers, leading 0x and 'l' suffixes are suppressed.
()
| 3067 | * The value of a literal token, recorded as a string. For integers, leading 0x and 'l' suffixes are suppressed. |
| 3068 | */ |
| 3069 | public final String stringVal() { |
| 3070 | if (stringVal == null) { |
| 3071 | stringVal = subString(mark, bufPos); |
| 3072 | } |
| 3073 | return stringVal; |
| 3074 | } |
| 3075 | |
| 3076 | private void stringVal(StringBuilder out) { |
| 3077 | if (stringVal != null) { |