Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(768)

Unified Diff: include/v8.h

Issue 967243002: Polish Maybe API a bit, removing useless creativity and fixing some signatures. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Simplified friendship. Added check in FromJust. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 620d8df9bd8a1cd9ac91411d263b600b497ea5e9..a38dc0a68fbf2686f67ee72db85ce41bd2d36d98 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -81,6 +81,8 @@ class ImplementationUtilities;
class Int32;
class Integer;
class Isolate;
+template <class T>
+class Maybe;
class Name;
class Number;
class NumberObject;
@@ -973,47 +975,6 @@ class V8_EXPORT EscapableHandleScope : public HandleScope {
};
-/**
- * A simple Maybe type, representing an object which may or may not have a
- * value.
- */
-template <class T>
-class Maybe {
- public:
- Maybe() : has_value(false) {}
- explicit Maybe(const T& t) : has_value(true), value(t) {}
- // TODO(dcarney): remove this constructor, it makes no sense.
- Maybe(bool has, const T& t) : has_value(has), value(t) {}
-
- V8_INLINE bool HasValue() const { return has_value; }
-
- V8_WARN_UNUSED_RESULT V8_INLINE bool ToValue(T* out) const {
- *out = has_value ? value : T();
- return has_value;
- }
-
- V8_INLINE T ToValueChecked() const {
- // TODO(dcarney): add DCHECK.
- return value;
- }
-
- V8_INLINE T From(const T& default_value) const {
- return has_value ? value : default_value;
- }
-
- // TODO(dcarney): make private.
- bool has_value;
- T value;
-};
-
-
-// Convenience wrapper.
-template <class T>
-inline Maybe<T> maybe(T t) {
- return Maybe<T>(t);
-}
-
-
// --- Special objects ---
@@ -5750,8 +5711,12 @@ class V8_EXPORT V8 {
int* index);
static Local<Value> GetEternal(Isolate* isolate, int index);
+ static void CheckIsJust(bool is_just);
+
template <class T> friend class Handle;
template <class T> friend class Local;
+ template <class T>
+ friend class Maybe;
template <class T> friend class Eternal;
template <class T> friend class PersistentBase;
template <class T, class M> friend class Persistent;
@@ -5760,6 +5725,56 @@ class V8_EXPORT V8 {
/**
+ * A simple Maybe type, representing an object which may or may not have a
+ * value.
+ */
+template <class T>
+class Maybe {
+ public:
+ // TODO(dcarney): remove this constructor, it makes no sense.
+ Maybe(bool has, const T& t) : has_value(has), value(t) {}
+
+ V8_INLINE bool IsJust() const { return has_value; }
Nico 2016/02/26 19:18:26 I saw this since someone made a similar name chang
+
+ V8_INLINE T FromJust() const {
+#ifdef V8_ENABLE_CHECKS
+ V8::CheckIsJust(IsJust());
+#endif
+ return value;
+ }
+
+ V8_INLINE T FromMaybe(const T& default_value) const {
+ return has_value ? value : default_value;
+ }
+
+ // TODO(dcarney): make private.
+ bool has_value;
+ T value;
+
+ private:
+ template <class U>
+ friend Maybe<U> Nothing();
+ template <class U>
+ friend Maybe<U> Just(const U& u);
+
+ Maybe() : has_value(false) {}
+ explicit Maybe(const T& t) : has_value(true), value(t) {}
+};
+
+
+template <class T>
+inline Maybe<T> Nothing() {
+ return Maybe<T>();
+}
+
+
+template <class T>
+inline Maybe<T> Just(const T& t) {
+ return Maybe<T>(t);
+}
+
+
+/**
* An external exception handler.
*/
class V8_EXPORT TryCatch {
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698