mirror of
https://github.com/Cekis/SWG-ScriptConverter.git
synced 2026-09-11 22:44:59 -04:00
Add code
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using ScriptConverter.Ast.Statements;
|
||||
|
||||
namespace ScriptConverter.Parser.Parselets.Statements
|
||||
{
|
||||
class WhileParselet : IStatementParselet
|
||||
{
|
||||
public Statement Parse(ScriptParser parser, ScriptToken token, out bool trailingSemicolon)
|
||||
{
|
||||
trailingSemicolon = false;
|
||||
|
||||
parser.Take(ScriptTokenType.LeftParen);
|
||||
var condition = parser.ParseExpression();
|
||||
parser.Take(ScriptTokenType.RightParen);
|
||||
|
||||
var block = parser.ParseBlock();
|
||||
|
||||
return new WhileStatement(token, parser.Previous, condition, block);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user