Boo.Lang.Compiler.Steps.ProcessMethodBodies.BindConstructorInvocation C# (CSharp) Метод

BindConstructorInvocation() приватный Метод

private BindConstructorInvocation ( MethodInvocationExpression node, IConstructor ctor ) : void
node Boo.Lang.Compiler.Ast.MethodInvocationExpression
ctor IConstructor
Результат void
        void BindConstructorInvocation(MethodInvocationExpression node, IConstructor ctor)
        {
            // rebind the target now we know
            // it is a constructor call
            Bind(node.Target, ctor);
            BindExpressionType(node.Target, ctor.Type);
            BindExpressionType(node, ctor.DeclaringType);
        }
ProcessMethodBodies