diff --git a/src/Perl6/World.nqp b/src/Perl6/World.nqp index 77c8db1e9f1..f9522b4f8f2 100644 --- a/src/Perl6/World.nqp +++ b/src/Perl6/World.nqp @@ -516,7 +516,6 @@ class Perl6::World is HLL::World { has $!setting_fixup_task; has int $!in_unit_parse; - has int $!unit_ready; has int $!have_outer; has int $!setting_loaded; has $!setting_name; @@ -526,7 +525,6 @@ class Perl6::World is HLL::World { %!code_object_fixup_list := {}; $!record_precompilation_dependencies := 1; %!quote_lang_cache := {}; - $!unit_ready := 0; $!setting_loaded := 0; $!in_unit_parse := 0; } @@ -829,8 +827,6 @@ class Perl6::World is HLL::World { } } - $!unit_ready := 1; - self.add_load_dependency_task(:deserialize_ast($!setting_fixup_task), :fixup_ast($!setting_fixup_task)); }