summaryrefslogtreecommitdiff
path: root/deps/v8/src/runtime/runtime-object.cc
diff options
context:
space:
mode:
authorAli Ijaz Sheikh <ofrobots@google.com>2016-05-04 16:46:17 +0200
committerAli Ijaz Sheikh <ofrobots@google.com>2016-05-11 18:46:47 -0700
commite16e611089f0bf1870a760f7e344e8da6f001428 (patch)
treeb04581928b854007a20b2fc6c3ce0ce357d02806 /deps/v8/src/runtime/runtime-object.cc
parentfe4837afcc17566a44a7744fb77c195e7b3bf2fd (diff)
downloadandroid-node-v8-e16e611089f0bf1870a760f7e344e8da6f001428.tar.gz
android-node-v8-e16e611089f0bf1870a760f7e344e8da6f001428.tar.bz2
android-node-v8-e16e611089f0bf1870a760f7e344e8da6f001428.zip
deps: upgrade to V8 5.0.71.47
Pick up the latest set of patch level updates from the V8 5.0 branch. https://github.com/v8/v8/compare/5.0.71.35...5.0.71.47 PR-URL: https://github.com/nodejs/node/pull/6572 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: JungMinu - Minwoo Jung <jmwsoft@gmail.com>
Diffstat (limited to 'deps/v8/src/runtime/runtime-object.cc')
-rw-r--r--deps/v8/src/runtime/runtime-object.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/v8/src/runtime/runtime-object.cc b/deps/v8/src/runtime/runtime-object.cc
index 415920d6c6..45a49925bd 100644
--- a/deps/v8/src/runtime/runtime-object.cc
+++ b/deps/v8/src/runtime/runtime-object.cc
@@ -1073,28 +1073,6 @@ RUNTIME_FUNCTION(Runtime_ToName) {
}
-RUNTIME_FUNCTION(Runtime_Equals) {
- HandleScope scope(isolate);
- DCHECK_EQ(2, args.length());
- CONVERT_ARG_HANDLE_CHECKED(Object, x, 0);
- CONVERT_ARG_HANDLE_CHECKED(Object, y, 1);
- Maybe<bool> result = Object::Equals(x, y);
- if (!result.IsJust()) return isolate->heap()->exception();
- // TODO(bmeurer): Change this at some point to return true/false instead.
- return Smi::FromInt(result.FromJust() ? EQUAL : NOT_EQUAL);
-}
-
-
-RUNTIME_FUNCTION(Runtime_StrictEquals) {
- SealHandleScope scope(isolate);
- DCHECK_EQ(2, args.length());
- CONVERT_ARG_CHECKED(Object, x, 0);
- CONVERT_ARG_CHECKED(Object, y, 1);
- // TODO(bmeurer): Change this at some point to return true/false instead.
- return Smi::FromInt(x->StrictEquals(y) ? EQUAL : NOT_EQUAL);
-}
-
-
RUNTIME_FUNCTION(Runtime_SameValue) {
SealHandleScope scope(isolate);
DCHECK_EQ(2, args.length());