Skip to content

Commit c1dc415

Browse files
committed
trait method with default value
1 parent f0530c7 commit c1dc415

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/Peachpie.CodeAnalysis/CodeGen/CodeGenerator.Emit.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -2242,9 +2242,15 @@ internal void EmitParameterDefaultValue(ParameterSymbol targetp)
22422242
}
22432243
else if ((boundinitializer = (targetp as IPhpValue)?.Initializer) != null)
22442244
{
2245+
// TODO: use `boundinitializer.Parent` instead of following
22452246
// 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+
}
22482254

22492255
Debug.Assert(srcr != null, "!srcr");
22502256

0 commit comments

Comments
 (0)