File tree 1 file changed +8
-2
lines changed
src/Peachpie.CodeAnalysis/CodeGen
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2242,9 +2242,15 @@ internal void EmitParameterDefaultValue(ParameterSymbol targetp)
2242
2242
}
2243
2243
else if ( ( boundinitializer = ( targetp as IPhpValue ) ? . Initializer ) != null )
2244
2244
{
2245
+ // TODO: use `boundinitializer.Parent` instead of following
2245
2246
// magically determine the source routine corresponding to the initializer expression:
2246
- var srcr = targetp . ContainingSymbol as SourceRoutineSymbol // common case
2247
- ?? ( targetp . ContainingSymbol as SynthesizedMethodSymbol ) ? . ForwardedCall ? . OriginalDefinition as SourceRoutineSymbol ; // a trait method
2247
+ SourceRoutineSymbol srcr = null ;
2248
+ for ( var r = targetp . ContainingSymbol ;
2249
+ srcr == null && r != null ; // we still don't have to original SourceRoutineSymbol, but we have "r"
2250
+ r = ( r as SynthesizedMethodSymbol ) ? . ForwardedCall ? . OriginalDefinition ) // dig in and find original SourceRoutineSymbol wrapped by this synthesized stub
2251
+ {
2252
+ srcr = r as SourceRoutineSymbol ;
2253
+ }
2248
2254
2249
2255
Debug . Assert ( srcr != null , "!srcr" ) ;
2250
2256
You can’t perform that action at this time.
0 commit comments