Skip to content

Commit

Permalink
Binary expression AST operations for regex objects.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Sep 17, 2024
1 parent 259f9c0 commit aee34db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/ast/expression/BinaryExpression.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class BinaryExpression : public ASTNode {
DynamicObject applyStringOp(DynamicObject& lValue, DynamicObject& rValue);
DynamicObject applyNumOp(DynamicObject& lValue, DynamicObject& rValue);
DynamicObject applyBoolOp(DynamicObject& lValue, DynamicObject& rValue);
DynamicObject applyRegexOp(DynamicObject& lValue, DynamicObject& rValue);

public:
explicit BinaryExpression(
Expand Down

0 comments on commit aee34db

Please sign in to comment.