We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b56486 commit aeee000Copy full SHA for aeee000
src/Essentials/Tokenizer.cpp
@@ -67,14 +67,17 @@ namespace FPL::Tokenizer {
67
} else if (currentToken.TokenType == ENTIER) {
68
currentToken.TokenType = DECIMAL;
69
currentToken.TokenText.append(1, element);
70
- } else if (currentToken.TokenType == CHAINE_LITTERAL) {
+ } else{
71
+ currentToken.TokenText.append(1, element);
72
+ }
73
+ /*else if (currentToken.TokenType == CHAINE_LITTERAL) {
74
75
} else {
76
TokenBuilder::ParseEndToken(currentToken, AllTokens);
77
currentToken.TokenType = OPERATEUR;
78
79
- }
80
+ }*/
81
break;
82
83
case '{':
0 commit comments