mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-23 03:18:43 +08:00
29 lines
424 B
Plaintext
29 lines
424 B
Plaintext
if(this_token.type==__if)
|
|
{
|
|
parse.push(this_token);
|
|
return;
|
|
}
|
|
elsif(this_token.type==__elsif)
|
|
{
|
|
parse.push(this_token);
|
|
return;
|
|
}
|
|
else if(this_token.type!=__else)
|
|
{
|
|
exit(0);
|
|
}
|
|
elsif(this_token.type==__elsif)
|
|
{
|
|
parse.push(this_token);
|
|
return;
|
|
}
|
|
elsif(this_token.type==__elsif)
|
|
{
|
|
parse.push(this_token);
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
parse.push(this_token);
|
|
return;
|
|
} |