Lexer.Lexer C# (CSharp) 메소드

Lexer() 공개 메소드

public Lexer ( String f ) : System
f String
리턴 System
    public Lexer(String f)
    {
	tokens = new Queue();
	file = f;
	FileSize = file.Length;
	success = true;
    }