| 4972 | //--------------------------------------------------------------------------- |
| 4973 | |
| 4974 | Scope::Scope(const SymbolDatabase &symdb_, const Token *classDef_, const Scope *nestedIn_, ScopeType type_, const Token *start_) : |
| 4975 | symdb(symdb_), |
| 4976 | classDef(classDef_), |
| 4977 | nestedIn(nestedIn_), |
| 4978 | type(type_) |
| 4979 | { |
| 4980 | setBodyStartEnd(start_); |
| 4981 | } |
| 4982 | |
| 4983 | Scope::Scope(const SymbolDatabase &symdb_, const Token *classDef_, const Scope *nestedIn_) : |
| 4984 | symdb(symdb_), |
nothing calls this directly
no test coverage detected