From 9ff58ea849a6aeae07a01919e0e4af31ce20bd14 Mon Sep 17 00:00:00 2001 From: Arnab De Date: Fri, 8 Apr 2022 07:11:04 -0700 Subject: [PATCH] Delete lazyclass contbuild Summary: Lazy classes are on by default. Reviewed By: ricklavoie Differential Revision: D35472059 fbshipit-source-id: 611289160945ae3bd1868f0668e5dfbf019f7b63 --- hphp/test/run.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hphp/test/run.php b/hphp/test/run.php index 0034d364075..af554163a4a 100644 --- a/hphp/test/run.php +++ b/hphp/test/run.php @@ -527,7 +527,6 @@ function get_options( '*hh_single_type_check:' => '', 'write-to-checkout' => '', 'bespoke' => '', - 'lazyclass' => '', ]; $options = new Options() as dynamic; $files = vec[]; @@ -918,10 +917,6 @@ function extra_args(Options $options): string { $args .= escapeshellarg($options->vendor.'/hh_autoload.php'); } - if ($options->lazyclass) { - $args .= ' -vEval.EmitClassPointers=2'; - $args .= ' -vEval.ClassPassesClassname=true'; - } return $args; } -- 2.11.4.GIT