Files
SWG-ScriptConverter/ScriptConverter/Parser/Parselets/Statements/ContinueParselet.cs
Rohan Singh ad50a19057 Add code
2019-01-23 22:52:45 -05:00

14 lines
366 B
C#

using ScriptConverter.Ast.Statements;
namespace ScriptConverter.Parser.Parselets.Statements
{
class ContinueParselet : IStatementParselet
{
public Statement Parse(ScriptParser parser, ScriptToken token, out bool trailingSemicolon)
{
trailingSemicolon = true;
return new ContinueStatement(token);
}
}
}