| 257 | } |
| 258 | |
| 259 | static bool initIsAllocatedOnStack ( Expression * init ) { |
| 260 | if ( init && init->rtti_isNewExpr() ) return ((ExprNew *)init)->allocate_on_stack; |
| 261 | if ( init && init->rtti_isAscend() ) return ((ExprAscend *)init)->allocate_on_stack; |
| 262 | return false; |
| 263 | } |
| 264 | |
| 265 | class ScopeFreeVisitor : public Visitor { |
| 266 | public: |