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 fa7bd15 commit 2feea55Copy full SHA for 2feea55
src/engine/internal/engine.cpp
@@ -109,7 +109,7 @@ void Engine::compile()
109
Compiler compiler(this, target.get());
110
auto blocks = target->blocks();
111
for (auto block : blocks) {
112
- if (block->topLevel()) {
+ if (block->topLevel() && !block->shadow()) {
113
auto section = blockSection(block->opcode());
114
if (section) {
115
auto script = std::make_shared<Script>(target.get(), this);
0 commit comments