summaryrefslogtreecommitdiff
path: root/chromium/v8/src/ic.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/ic.h')
-rw-r--r--chromium/v8/src/ic.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chromium/v8/src/ic.h b/chromium/v8/src/ic.h
index fcf0de58f1a..7820d407ec1 100644
--- a/chromium/v8/src/ic.h
+++ b/chromium/v8/src/ic.h
@@ -714,6 +714,14 @@ class KeyedStoreIC: public StoreIC {
};
+class UnaryOpIC: public IC {
+ public:
+ explicit UnaryOpIC(Isolate* isolate) : IC(EXTRA_CALL_FRAME, isolate) { }
+
+ MUST_USE_RESULT MaybeObject* Transition(Handle<Object> object);
+};
+
+
// Type Recording BinaryOpIC, that records the types of the inputs and outputs.
class BinaryOpIC: public IC {
public: