()
| 33182 | } |
| 33183 | |
| 33184 | function precision_or_not() { |
| 33185 | if(is_precision(token)) { |
| 33186 | state.unshift(keyword()) |
| 33187 | return Advance |
| 33188 | } else { |
| 33189 | state.fake(mknode(PLACEHOLDER, {data: '', position: token.position})) |
| 33190 | return Advance |
| 33191 | } |
| 33192 | } |
| 33193 | |
| 33194 | function struct_or_type() { |
| 33195 | if(token.data === 'struct') { |
nothing calls this directly
no test coverage detected