(ParserUtils.StringPosition source,
char ch)
| 141 | } |
| 142 | |
| 143 | private static boolean consumeChar(ParserUtils.StringPosition source, |
| 144 | char ch) { |
| 145 | boolean result = source.position < source.length && |
| 146 | source.value.charAt(source.position) == ch; |
| 147 | if (result) { |
| 148 | source.position += 1; |
| 149 | } |
| 150 | return result; |
| 151 | } |
| 152 | |
| 153 | private static void parseUnion(TypeDescription type, |
| 154 | ParserUtils.StringPosition source) { |
no outgoing calls
no test coverage detected