| 597 | } |
| 598 | |
| 599 | void CheckForImmutable(TypeInfo* type, const char* pos) |
| 600 | { |
| 601 | if(type->refLevel == 0) |
| 602 | ThrowError(pos, "ERROR: cannot change immutable value of type %s", type->GetFullTypeName()); |
| 603 | } |
| 604 | |
| 605 | void CheckCollisionWithFunction(const char* pos, InplaceStr varName, unsigned hash, unsigned scope) |
| 606 | { |
no test coverage detected