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 d03e655 commit 075ee50Copy full SHA for 075ee50
src/Parser.cpp
@@ -26,7 +26,6 @@ namespace FPL {
26
"vide",
27
"auto",
28
"importer",
29
- "requete",
30
"convertir",
31
"bool",
32
"booleen"
@@ -304,6 +303,11 @@ namespace FPL {
304
303
if (CheckerOperateur(";").has_value()) {
305
fonction.HasReturn = true;
306
fonction.ReturnIsIdentfiant = true;
+ if (va->mText == "vrai" || va->mText == "faux") {
307
+ fonction.ReturnType = Type("bool", BOOL);
308
+ fonction.ReturnIsIdentfiant = false;
309
+ fonction.ReturnValue = va->mText;
310
+ }
311
fonction.ReturnIdentifantValue = va->mText;
312
313
if (CheckerIdentifiant().has_value() || CheckerValue().has_value() || CheckerType().has_value()) {
0 commit comments