()
| 79867 | } |
| 79868 | |
| 79869 | function precision_or_not() { |
| 79870 | if(is_precision(token)) { |
| 79871 | state.unshift(keyword()) |
| 79872 | return Advance |
| 79873 | } else { |
| 79874 | state.fake(mknode(PLACEHOLDER, {data: '', position: token.position})) |
| 79875 | return Advance |
| 79876 | } |
| 79877 | } |
| 79878 | |
| 79879 | function struct_or_type() { |
| 79880 | if(token.data === 'struct') { |
nothing calls this directly
no test coverage detected