Skip to content

Commit

Permalink
Fix tests for properties with default impls
Browse files Browse the repository at this point in the history
... by properly forwarding the "standalone" flag in the newly added
collector.
  • Loading branch information
stakx committed Aug 31, 2023
1 parent 1b6cb2c commit 001f261
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -53,7 +53,7 @@ protected override MetaMethod GetMethodToGenerate(MethodInfo method, IProxyGener
return null;
}

return new MetaMethod(method, methodOnTarget, true, proxyable, !method.IsAbstract);
return new MetaMethod(method, methodOnTarget, isStandalone, proxyable, !method.IsAbstract);
}
}
}

0 comments on commit 001f261

Please sign in to comment.