mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 16:20:49 +01:00
[poincare/parsing] Parse greek small letter theta
This commit is contained in:
@@ -176,6 +176,11 @@ Token Tokenizer::popToken() {
|
||||
result.setCodePoint(c);
|
||||
return result;
|
||||
}
|
||||
if (c == UCodePointGreekSmallLetterTheta) {
|
||||
Token result(Token::Identifier);
|
||||
result.setString(start, UTF8Decoder::CharSizeOfCodePoint(UCodePointGreekSmallLetterTheta));
|
||||
return result;
|
||||
}
|
||||
if (c == UCodePointSquareRoot) {
|
||||
Token result(Token::Identifier);
|
||||
// TODO compute size manually?
|
||||
|
||||
Reference in New Issue
Block a user