Assembler.Tokenizer.Tokenizer C# (CSharp) Method

Tokenizer() public method

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