()
| 33154 | } |
| 33155 | |
| 33156 | function storage_or_not() { |
| 33157 | if(is_storage(token)) { |
| 33158 | if(stmt.flags & DECL_ALLOW_STORAGE) { |
| 33159 | state.unshift(keyword()) |
| 33160 | return Advance |
| 33161 | } else { |
| 33162 | return unexpected('storage is not allowed here') |
| 33163 | } |
| 33164 | } else { |
| 33165 | state.fake(mknode(PLACEHOLDER, {data: '', position: token.position})) |
| 33166 | return Advance |
| 33167 | } |
| 33168 | } |
| 33169 | |
| 33170 | function parameter_or_not() { |
| 33171 | if(is_parameter(token)) { |
nothing calls this directly
no test coverage detected