File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5747,6 +5747,14 @@ public function debug(): array
57475747 $ descriptions [$ key ] = $ nativeTypeHolder ->getType ()->describe (VerbosityLevel::precise ());
57485748 }
57495749
5750+ foreach (array_keys ($ this ->currentlyAssignedExpressions ) as $ exprString ) {
5751+ $ descriptions [sprintf ('currently assigned %s ' , $ exprString )] = 'true ' ;
5752+ }
5753+
5754+ foreach (array_keys ($ this ->currentlyAllowedUndefinedExpressions ) as $ exprString ) {
5755+ $ descriptions [sprintf ('currently allowed undefined %s ' , $ exprString )] = 'true ' ;
5756+ }
5757+
57505758 foreach ($ this ->conditionalExpressions as $ exprString => $ holders ) {
57515759 foreach (array_values ($ holders ) as $ i => $ holder ) {
57525760 $ key = sprintf ('condition about %s #%d ' , $ exprString , $ i + 1 );
You can’t perform that action at this time.
0 commit comments