| 1114 | } |
| 1115 | |
| 1116 | bool isClassOrStruct() const { |
| 1117 | return (type == ScopeType::eClass || type == ScopeType::eStruct); |
| 1118 | } |
| 1119 | |
| 1120 | bool isClassOrStructOrUnion() const { |
| 1121 | return (type == ScopeType::eClass || type == ScopeType::eStruct || type == ScopeType::eUnion); |
no outgoing calls
no test coverage detected