Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: base.js

Issue 29711592: Issue 6424 - Use internal symbol in ext namespace (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Support internal methods Created Feb. 28, 2018, 4:32 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | composer.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base.js
===================================================================
new file mode 100644
--- /dev/null
+++ b/base.js
@@ -0,0 +1,49 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-present eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+"use strict";
+
+{
+ const {create, defineProperty, getPrototypeOf, keys} = Object;
+
+ const {hasOwnProperty} = Object.prototype;
+ const {bind} = Function.prototype;
+
+ window.defineNamespace = (object, namespace) =>
+ {
+ let prototype = null;
+
+ // If the object has a prototype and the prototype has the same namespace,
+ // copy over all the functions in that namespace to our prototype,
+ // additionally binding them to the object.
+ let objectPrototype = getPrototypeOf(object);
+ if (objectPrototype && hasOwnProperty.call(objectPrototype, namespace))
+ {
+ prototype = create(null);
+
+ let objectPrototypeNamespace = objectPrototype[namespace];
+ for (let key of keys(objectPrototypeNamespace))
+ {
+ let value = objectPrototypeNamespace[key];
+ if (typeof value == "function")
+ prototype[key] = bind.call(value, object);
+ }
+ }
+
+ return defineProperty(object, namespace, {value: create(prototype)});
+ };
+}
« no previous file with comments | « no previous file | composer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld