| 856 | |
| 857 | |
| 858 | void cParserHelper::PushScope(cAttrScopeInfo* pSI) |
| 859 | { |
| 860 | // add previous scope's info to this one |
| 861 | if (!mScopedAttrs.empty()) |
| 862 | { |
| 863 | pSI->GetAttrList()->MergeNoOverwrite(mScopedAttrs.back()->GetAttrList()); |
| 864 | } |
| 865 | |
| 866 | mScopedAttrs.push_back(pSI); |
| 867 | } |
| 868 | |
| 869 | |
| 870 | //========================================================================= |
nothing calls this directly
no test coverage detected