Assembler.Tokenizer.AddToken C# (CSharp) Method

AddToken() private method

private AddToken ( BasicTokenType type, string value = "" ) : void
type BasicTokenType
value string
return void
        private void AddToken(BasicTokenType type, string value = "")
        {
            // TODO Fix
            tokens.Add(new BasicToken(type, value, futureLine));
        }