mirror of
https://github.com/Cekis/SWG-ScriptConverter.git
synced 2026-09-11 22:44:59 -04:00
12 lines
247 B
C#
12 lines
247 B
C#
using ScriptConverter.Ast.Expressions;
|
|
|
|
namespace ScriptConverter.Parser.Parselets
|
|
{
|
|
interface IInfixParselet
|
|
{
|
|
int Precedence { get; }
|
|
|
|
Expression Parse(ScriptParser parser, Expression left, ScriptToken token);
|
|
}
|
|
}
|