()
| 79839 | } |
| 79840 | |
| 79841 | function storage_or_not() { |
| 79842 | if(is_storage(token)) { |
| 79843 | if(stmt.flags & DECL_ALLOW_STORAGE) { |
| 79844 | state.unshift(keyword()) |
| 79845 | return Advance |
| 79846 | } else { |
| 79847 | return unexpected('storage is not allowed here') |
| 79848 | } |
| 79849 | } else { |
| 79850 | state.fake(mknode(PLACEHOLDER, {data: '', position: token.position})) |
| 79851 | return Advance |
| 79852 | } |
| 79853 | } |
| 79854 | |
| 79855 | function parameter_or_not() { |
| 79856 | if(is_parameter(token)) { |
nothing calls this directly
no test coverage detected