Boo.Lang.Compiler.Steps.ProcessMethodBodiesWithDuckTyping.NamedArgumentNotFound C# (CSharp) Method

NamedArgumentNotFound() protected method

protected NamedArgumentNotFound ( IType type, ReferenceExpression name ) : void
type IType
name Boo.Lang.Compiler.Ast.ReferenceExpression
return void
        protected override void NamedArgumentNotFound(IType type, ReferenceExpression name)
        {
            if (!TypeSystemServices.IsDuckType(type))
            {
                base.NamedArgumentNotFound(type, name);
                return;
            }

            BindQuack(name);
        }