aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/ast
diff options
context:
space:
mode:
Diffstat (limited to 'libsolidity/ast')
-rw-r--r--libsolidity/ast/Types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libsolidity/ast/Types.h b/libsolidity/ast/Types.h
index 022b67c4..960b7e86 100644
--- a/libsolidity/ast/Types.h
+++ b/libsolidity/ast/Types.h
@@ -847,7 +847,8 @@ public:
ArrayPush, ///< .push() to a dynamically sized array in storage
ByteArrayPush, ///< .push() to a dynamically sized byte array in storage
ObjectCreation, ///< array creation using new
- Assert ///< assert()
+ Assert, ///< assert()
+ Require ///< require()
};
virtual Category category() const override { return Category::Function; }