Implements binding binary expressions
This commit is contained in:
@@ -8,12 +8,14 @@
|
||||
class Binder {
|
||||
BoundStatement *BindStatement(ParsedStatement *statement);
|
||||
BoundStatement *BindBlockStatement(ParsedStatement *statement);
|
||||
BoundStatement *BindExpressionStatement(ParsedStatement *statement);
|
||||
|
||||
BoundExpression *BindExpression(ParsedExpression *expression);
|
||||
BoundExpression *BindBinaryOperator(BinaryExpression *expression);
|
||||
|
||||
public:
|
||||
static BoundScriptStatement* Bind(ParsedScriptStatement* s);
|
||||
|
||||
BoundExpression *BindExpression(ParsedExpression *expression);
|
||||
|
||||
BoundStatement *BindExpressionStatement(ParsedStatement *statement);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user