| 930 | } |
| 931 | |
| 932 | BfType * BfContext::FindTypeById(int typeId) |
| 933 | { |
| 934 | for (auto type : mResolvedTypes) |
| 935 | { |
| 936 | if (type->mTypeId == typeId) |
| 937 | return type; |
| 938 | } |
| 939 | |
| 940 | return NULL; |
| 941 | } |
| 942 | |
| 943 | void BfContext::AddTypeToWorkList(BfType* type) |
| 944 | { |
no outgoing calls
no test coverage detected