- Note
- This Source File belongs to 7GUIs Cells Example. Please follow the link for example explanation.
#include "Tokens.h"
t->readChar();
try {
while (!t->isEof()) {
switch (char c = t->readChar()) {
case ' ':
break;
case '(':
out << token::LPar {};
break;
case ')':
out << token::RPar {};
break;
case ';':
out << token::Semicolon {};
break;
case ':':
out << token::Colon {};
break;
case '+':
out << token::Plus {};
break;
case '-':
out << token::Minus {};
break;
case '*':
out << token::Asterisk {};
break;
case '/':
out << token::Slash {};
break;
case '<':
out << token::LAngle {};
break;
case '>':
out << token::RAngle {};
break;
case '\'':
out << token::StringLiteral { t->readStringUntilUnescaped('\'') };
break;
case '"':
out << token::StringLiteral { t->readStringUntilUnescaped('"') };
break;
default:
if ('0' <= c && c <= '9') {
t->reverseByte();
out << token::Double { t->readFloat() };
continue;
}
if ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
t->reverseByte();
out << token::Identifier { t->readStringWhile([](char c) -> bool { return std::isalnum(c); }) };
continue;
}
}
}
return out;
}
Thrown when stream has reached end (end of file).
Definition AEOFException.h:20
Abstract AUI exception.
Definition AException.h:28
A std::vector with AUI extensions.
Definition AVector.h:39
Does not allow escaping, allowing to accept lvalue ref, rvalue ref, shared_ptr and etc without overhe...
Definition values.h:128