| 882 | |
| 883 | |
| 884 | void SymbolDatabase::createSymbolDatabaseVariableInfo() |
| 885 | { |
| 886 | // fill in variable info |
| 887 | for (Scope& scope : scopeList) { |
| 888 | // find variables |
| 889 | scope.getVariableList(); |
| 890 | } |
| 891 | |
| 892 | // fill in function arguments |
| 893 | for (Scope& scope : scopeList) { |
| 894 | for (auto func = scope.functionList.begin(); func != scope.functionList.end(); ++func) { |
| 895 | // add arguments |
| 896 | func->addArguments(&scope); |
| 897 | } |
| 898 | } |
| 899 | } |
| 900 | |
| 901 | void SymbolDatabase::createSymbolDatabaseCopyAndMoveConstructors() |
| 902 | { |
nothing calls this directly
no test coverage detected