Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsErrorAny C# (CSharp) Method

IsErrorAny() public static method

public static IsErrorAny ( Boo.Lang.Compiler.Ast.ExpressionCollection collection ) : bool
collection Boo.Lang.Compiler.Ast.ExpressionCollection
return bool
        public static bool IsErrorAny(ExpressionCollection collection)
        {
            return collection.Any(IsError);
        }
TypeSystemServices