We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d86ce2 commit f3bc87fCopy full SHA for f3bc87f
src/engine/internal/engine.cpp
@@ -265,7 +265,7 @@ void Engine::compile()
265
Compiler compiler(this, target.get());
266
const auto &blocks = target->blocks();
267
for (auto block : blocks) {
268
- if (block->topLevel() && !block->shadow()) {
+ if (block->topLevel() && !block->isTopLevelReporter() && !block->shadow()) {
269
auto section = blockSection(block->opcode());
270
if (section) {
271
auto script = std::make_shared<Script>(target.get(), block, this);
0 commit comments