Cleanup built-in constructor modules.

This commit is contained in:
John-David Dalton
2017-01-09 17:56:33 -08:00
parent 9e467f872e
commit 44950212a0
7 changed files with 2 additions and 13 deletions

View File

@@ -1,7 +1,6 @@
import getNative from './_getNative.js';
import root from './_root.js';
/* Built-in method references that are verified to be native. */
const DataView = getNative(root, 'DataView');
export default DataView;

View File

@@ -1,7 +1,6 @@
import getNative from './_getNative.js';
import root from './_root.js';
/* Built-in method references that are verified to be native. */
const Map = getNative(root, 'Map');
export default Map;

View File

@@ -1,7 +1,6 @@
import getNative from './_getNative.js';
import root from './_root.js';
/* Built-in method references that are verified to be native. */
const Promise = getNative(root, 'Promise');
export default Promise;

View File

@@ -1,7 +1,6 @@
import getNative from './_getNative.js';
import root from './_root.js';
/* Built-in method references that are verified to be native. */
const Set = getNative(root, 'Set');
export default Set;

View File

@@ -1,6 +1,3 @@
import root from './_root.js';
/** Built-in value references. */
const Symbol = root.Symbol;
export default Symbol;
export default root.Symbol;

View File

@@ -1,6 +1,3 @@
import root from './_root.js';
/** Built-in value references. */
const Uint8Array = root.Uint8Array;
export default Uint8Array;
export default root.Uint8Array;

View File

@@ -1,7 +1,6 @@
import getNative from './_getNative.js';
import root from './_root.js';
/* Built-in method references that are verified to be native. */
const WeakMap = getNative(root, 'WeakMap');
export default WeakMap;