Add another TODO in lexer.cpp.

This commit is contained in:
Username404-59 2021-02-23 15:07:08 +01:00
parent eeb4ec2e9c
commit ea0f3ac037
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

View File

@ -44,7 +44,7 @@ vector<tok>& lex(const string& in)
case '"': isLexingString = true; break;
case ' ': case '\t': case '\r':
case '\n': separate(); break;
default: {
default: { // TODO Lex entire identifiers and numbers
tok::type type = getIdentifierCharType(current);
if (type != tok::UNEXPECTED) resVal.emplace_back(type, string(1, current));
}