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

ParseFile() public static method

public static ParseFile ( int tabSize, string fname ) : Boo.Lang.Compiler.Ast.CompileUnit
tabSize int
fname string
return Boo.Lang.Compiler.Ast.CompileUnit
        public static CompileUnit ParseFile(int tabSize, string fname)
        {
            if (null == fname)
            {
                throw new ArgumentNullException("fname");
            }

            using (StreamReader reader = File.OpenText(fname))
            {
                return ParseReader(tabSize, fname, reader);
            }
        }

Same methods

BooParser::ParseFile ( string fname ) : Boo.Lang.Compiler.Ast.CompileUnit