summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp/AST.h
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2021-04-02 11:15:51 +0300
committerAndreas Kling <kling@serenityos.org>2021-04-06 21:51:58 +0200
commitec2c54ee2e1092fd8e8a26ce4044b35b69523640 (patch)
tree77068b52b808e41b5686514134fa9c641ca8f891 /Userland/Libraries/LibCpp/AST.h
parent44833f1621358c0c8ec9f82eb49d36bc70a63ae3 (diff)
downloadserenity-ec2c54ee2e1092fd8e8a26ce4044b35b69523640.zip
LibCpp: Parse "arrow" operator
Diffstat (limited to 'Userland/Libraries/LibCpp/AST.h')
-rw-r--r--Userland/Libraries/LibCpp/AST.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCpp/AST.h b/Userland/Libraries/LibCpp/AST.h
index 902c9645fb..51289f0477 100644
--- a/Userland/Libraries/LibCpp/AST.h
+++ b/Userland/Libraries/LibCpp/AST.h
@@ -422,6 +422,7 @@ enum class BinaryOp {
NotEqual,
LogicalOr,
LogicalAnd,
+ Arrow,
};
class BinaryExpression : public Expression {