Boo.Lang.Compiler.CompilerErrorFactory.InvalidGeneratorReturnType C# (CSharp) Метод

InvalidGeneratorReturnType() публичный статический Метод

public static InvalidGeneratorReturnType ( Node node, IType type ) : CompilerError
node Node
type IType
Результат CompilerError
        public static CompilerError InvalidGeneratorReturnType(Node node, IType type)
        {
            return Instantiate("BCE0101", node, type, LanguageAmbiance.DefaultGeneratorTypeFor(type.DisplayName()));
        }
CompilerErrorFactory