Boo.Lang.Parser.BooParser.ParseReader C# (CSharp) Method

ParseReader() public static method

public static ParseReader ( int tabSize, string readerName, TextReader reader ) : Boo.Lang.Compiler.Ast.CompileUnit
tabSize int
readerName string
reader TextReader
return Boo.Lang.Compiler.Ast.CompileUnit
        public static CompileUnit ParseReader(int tabSize, string readerName, TextReader reader)
        {
            CompileUnit cu = new CompileUnit();
            ParseModule(tabSize, cu, readerName, reader, null);
            return cu;
        }

Same methods

BooParser::ParseReader ( string readerName, TextReader reader ) : Boo.Lang.Compiler.Ast.CompileUnit