| 3685 | } |
| 3686 | |
| 3687 | void Program::updateSemanticHash() { |
| 3688 | thisModule->structures.foreach([&](StructurePtr & ps){ |
| 3689 | HashBuilder hb; |
| 3690 | das_set<Structure *> dep; |
| 3691 | das_set<Annotation *> adep; |
| 3692 | ps->ownSemanticHash = ps->getOwnSemanticHash(hb,dep,adep); |
| 3693 | }); |
| 3694 | } |
| 3695 | |
| 3696 | bool Program::simulate ( Context & context, TextWriter & logs, StackAllocator * sharedStack ) { |
| 3697 | CompilationCallbackGuard callbackGuard("", thisModule->fileName, "simulation"); |
no test coverage detected