mirror of
https://github.com/Cekis/SWG-ScriptConverter.git
synced 2026-09-11 22:44:59 -04:00
13 lines
293 B
C#
13 lines
293 B
C#
using ScriptConverter.Ast.Expressions;
|
|
|
|
namespace ScriptConverter.Parser.Parselets.Expressions
|
|
{
|
|
class NullParselet : IPrefixParselet
|
|
{
|
|
public Expression Parse(ScriptParser parser, ScriptToken token)
|
|
{
|
|
return new NullExpression(token);
|
|
}
|
|
}
|
|
}
|