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

BindSwitchLabelReferences() приватный статический Метод

private static BindSwitchLabelReferences ( MethodInvocationExpression node ) : void
node Boo.Lang.Compiler.Ast.MethodInvocationExpression
Результат void
        private static void BindSwitchLabelReferences(MethodInvocationExpression node)
        {
            for (int i = 1; i < node.Arguments.Count; ++i)
            {
                ReferenceExpression label = (ReferenceExpression)node.Arguments[i];
                label.ExpressionType = Unknown.Default;
            }
        }
ProcessMethodBodies