Files
2019-01-23 22:52:45 -05:00

13 lines
305 B
C#

using ScriptConverter.Ast.Expressions;
namespace ScriptConverter.Parser.Parselets.Expressions
{
class IdentifierParselet : IPrefixParselet
{
public Expression Parse(ScriptParser parser, ScriptToken token)
{
return new IdentifierExpression(token);
}
}
}