summaryrefslogtreecommitdiff
path: root/deps/v8/src/harmony-object-observe.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/harmony-object-observe.js')
-rw-r--r--deps/v8/src/harmony-object-observe.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/deps/v8/src/harmony-object-observe.js b/deps/v8/src/harmony-object-observe.js
deleted file mode 100644
index 44006cd2e9..0000000000
--- a/deps/v8/src/harmony-object-observe.js
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2015 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-(function(global, utils) {
-
-"use strict";
-
-%CheckIsBootstrapping();
-
-utils.InstallFunctions(global.Object, DONT_ENUM, $observeObjectMethods);
-utils.InstallFunctions(global.Array, DONT_ENUM, $observeArrayMethods);
-
-})