-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[VarDumper] Fixed dumping of terminated generator #21542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,20 @@ public static function castClosure(\Closure $c, array $a, Stub $stub, $isNested) | |
|
||
public static function castGenerator(\Generator $c, array $a, Stub $stub, $isNested) | ||
{ | ||
return class_exists('ReflectionGenerator', false) ? self::castReflectionGenerator(new \ReflectionGenerator($c), $a, $stub, $isNested) : $a; | ||
if (!class_exists('ReflectionGenerator', false)) { | ||
return $a; | ||
} | ||
|
||
// Cannot create ReflectionGenerator based on a terminated Generator | ||
try { | ||
$reflectionGenerator = new \ReflectionGenerator($c); | ||
} catch (\Exception $e) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I confirm that an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This has been fixed as part of PHP 7.2 in php/php-src@ed4216c |
||
$a[Caster::PREFIX_VIRTUAL.'closed'] = true; | ||
|
||
return $a; | ||
} | ||
|
||
return self::castReflectionGenerator($reflectionGenerator, $a, $stub, $isNested); | ||
} | ||
|
||
public static function castType(\ReflectionType $c, array $a, Stub $stub, $isNested) | ||
|
@@ -99,31 +112,33 @@ public static function castReflectionGenerator(\ReflectionGenerator $c, array $a | |
if ($c->getThis()) { | ||
$a[$prefix.'this'] = new CutStub($c->getThis()); | ||
} | ||
$x = $c->getFunction(); | ||
$function = $c->getFunction(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. diff irrelevant for review |
||
$frame = array( | ||
'class' => isset($x->class) ? $x->class : null, | ||
'type' => isset($x->class) ? ($x->isStatic() ? '::' : '->') : null, | ||
'function' => $x->name, | ||
'class' => isset($function->class) ? $function->class : null, | ||
'type' => isset($function->class) ? ($function->isStatic() ? '::' : '->') : null, | ||
'function' => $function->name, | ||
'file' => $c->getExecutingFile(), | ||
'line' => $c->getExecutingLine(), | ||
); | ||
if ($trace = $c->getTrace(DEBUG_BACKTRACE_IGNORE_ARGS)) { | ||
$x = new \ReflectionGenerator($c->getExecutingGenerator()); | ||
$function = new \ReflectionGenerator($c->getExecutingGenerator()); | ||
array_unshift($trace, array( | ||
'function' => 'yield', | ||
'file' => $x->getExecutingFile(), | ||
'line' => $x->getExecutingLine() - 1, | ||
'file' => $function->getExecutingFile(), | ||
'line' => $function->getExecutingLine() - 1, | ||
)); | ||
$trace[] = $frame; | ||
$a[$prefix.'trace'] = new TraceStub($trace, false, 0, -1, -1); | ||
} else { | ||
$x = new FrameStub($frame, false, true); | ||
$x = ExceptionCaster::castFrameStub($x, array(), $x, true); | ||
$function = new FrameStub($frame, false, true); | ||
$function = ExceptionCaster::castFrameStub($function, array(), $function, true); | ||
$a[$prefix.'executing'] = new EnumStub(array( | ||
$frame['class'].$frame['type'].$frame['function'].'()' => $x[$prefix.'src'], | ||
$frame['class'].$frame['type'].$frame['function'].'()' => $function[$prefix.'src'], | ||
)); | ||
} | ||
|
||
$a[Caster::PREFIX_VIRTUAL.'closed'] = false; | ||
|
||
return $a; | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
closed: true/false
virtual prop?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can I know?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
call
->valid()
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can not because it alters the generator. That's why I used the try catch method and not
->valid()
.