| 701 | } |
| 702 | |
| 703 | Scope *clangimport::AstNode::createScope(TokenList &tokenList, ScopeType scopeType, AstNodePtr astNode, const Token *def) |
| 704 | { |
| 705 | std::vector<AstNodePtr> children2{std::move(astNode)}; |
| 706 | return createScope(tokenList, scopeType, children2, def); |
| 707 | } |
| 708 | |
| 709 | Scope *clangimport::AstNode::createScope(TokenList &tokenList, ScopeType scopeType, const std::vector<AstNodePtr> & children2, const Token *def) |
| 710 | { |
nothing calls this directly
no test coverage detected