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

14 lines
361 B
C#

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