Lines Matching refs:scope_
337 : stmts_(move(stmts)), scope_(NULL) {} in DECLARE()
338 ~BlockStmtNode() { delete scope_; } in ~BlockStmtNode() local
340 Scopes::VarScope* scope_; variable
507 Scopes::StateScope* scope_; member
508 Sub(decltype(id_) id, decltype(block_) block, decltype(parser_) parser, decltype(scope_) scope) in Sub()
509 : id_(move(id)), block_(move(block)), parser_(move(parser)), scope_(scope) {} in Sub()
510 ~Sub() { delete scope_; } in ~Sub() local
511 Sub(Sub&& other) : scope_(NULL) { in Sub()
521 std::swap(scope_, other.scope_);
612 Scopes::StateScope* scope_; variable
614 : id_(move(id)), formals_(move(formals)), block_(move(block)), scope_(NULL) {} in FuncDeclStmtNode()