diff options
author | Itamar <itamar8910@gmail.com> | 2021-04-02 11:15:51 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-06 21:51:58 +0200 |
commit | ec2c54ee2e1092fd8e8a26ce4044b35b69523640 (patch) | |
tree | 77068b52b808e41b5686514134fa9c641ca8f891 /Userland/Libraries/LibCpp/AST.h | |
parent | 44833f1621358c0c8ec9f82eb49d36bc70a63ae3 (diff) | |
download | serenity-ec2c54ee2e1092fd8e8a26ce4044b35b69523640.zip |
LibCpp: Parse "arrow" operator
Diffstat (limited to 'Userland/Libraries/LibCpp/AST.h')
-rw-r--r-- | Userland/Libraries/LibCpp/AST.h | 1 |
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 { |