mirror of
https://github.com/Cekis/SWG-ScriptConverter.git
synced 2026-09-11 22:44:59 -04:00
10 lines
227 B
C#
10 lines
227 B
C#
using ScriptConverter.Ast.Statements;
|
|
|
|
namespace ScriptConverter.Parser.Parselets
|
|
{
|
|
interface IStatementParselet
|
|
{
|
|
Statement Parse(ScriptParser parser, ScriptToken token, out bool trailingSemicolon);
|
|
}
|
|
}
|