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

Unified Diff: lib/coreUtils.js

Issue 29350382: Issue 4353 - Remove deprecated __proto__ syntax (Closed)
Patch Set: Make use of Object.getOwnPropertyDescriptor Created Sept. 2, 2016, 11:51 a.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 | lib/filterClasses.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreUtils.js
diff --git a/lib/coreUtils.js b/lib/coreUtils.js
new file mode 100644
index 0000000000000000000000000000000000000000..da02097978dc520fb68a73f8d744951859388148
--- /dev/null
+++ b/lib/coreUtils.js
@@ -0,0 +1,27 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-2016 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/>.
+ */
+
+function desc(properties)
Wladimir Palant 2016/09/02 12:19:48 Since we are only using this for inheritance, how
kzar 2016/09/02 15:06:41 Done.
+{
+ let descriptor = {};
+
+ for (let key in properties)
+ descriptor[key] = Object.getOwnPropertyDescriptor(properties, key);
Wladimir Palant 2016/09/02 12:19:48 This will fail should we ever hit a property defin
kzar 2016/09/02 15:06:41 Done.
+
+ return descriptor;
+}
+exports.desc = desc;
« no previous file with comments | « no previous file | lib/filterClasses.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld