Assembler.Tokenizer.Tokenizer C# (CSharp) 메소드

Tokenizer() 공개 메소드

public Tokenizer ( string input ) : System
input string
리턴 System
        public Tokenizer(string input)
        {
            tokens = new List<BasicToken>();
            source = input;
            hasTokenized = false;
            currentLine = futureLine = 1;
        }