2016-03-25 19:57:17 +00:00
|
|
|
'use strict'
|
2016-02-22 02:52:21 +00:00
|
|
|
|
2017-03-16 17:21:23 +00:00
|
|
|
// Note: Don't use destructuring assignment for `Buffer`, or we'll hit a
|
|
|
|
// browserify bug that makes the statement invalid, throwing an error in
|
|
|
|
// sandboxed renderer.
|
|
|
|
const Buffer = require('buffer').Buffer
|
2016-03-25 19:57:17 +00:00
|
|
|
const v8Util = process.atomBinding('v8_util')
|
2016-07-25 07:39:09 +00:00
|
|
|
const {ipcRenderer, isPromise, CallbacksRegistry} = require('electron')
|
2017-03-06 19:23:28 +00:00
|
|
|
const resolvePromise = Promise.resolve.bind(Promise)
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-29 00:35:49 +00:00
|
|
|
const callbacksRegistry = new CallbacksRegistry()
|
2016-07-11 17:28:01 +00:00
|
|
|
const remoteObjectCache = v8Util.createIDWeakMap()
|
2016-02-17 07:57:46 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Convert the arguments object into an array of meta data.
|
2017-10-26 03:41:11 +00:00
|
|
|
function wrapArgs (args, visited = new Set()) {
|
|
|
|
const valueToMeta = (value) => {
|
2016-07-11 17:39:21 +00:00
|
|
|
// Check for circular reference.
|
|
|
|
if (visited.has(value)) {
|
2016-01-12 02:40:23 +00:00
|
|
|
return {
|
2016-07-11 17:28:01 +00:00
|
|
|
type: 'value',
|
|
|
|
value: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(value)) {
|
2016-07-11 17:39:21 +00:00
|
|
|
visited.add(value)
|
2016-07-11 17:28:01 +00:00
|
|
|
let meta = {
|
2016-01-12 02:40:23 +00:00
|
|
|
type: 'array',
|
2016-07-11 17:28:01 +00:00
|
|
|
value: wrapArgs(value, visited)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-07-11 17:28:01 +00:00
|
|
|
visited.delete(value)
|
|
|
|
return meta
|
2016-07-25 07:39:09 +00:00
|
|
|
} else if (ArrayBuffer.isView(value)) {
|
2016-01-12 02:40:23 +00:00
|
|
|
return {
|
|
|
|
type: 'buffer',
|
2016-08-24 22:02:51 +00:00
|
|
|
value: Buffer.from(value)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (value instanceof Date) {
|
|
|
|
return {
|
|
|
|
type: 'date',
|
|
|
|
value: value.getTime()
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2017-11-03 12:47:21 +00:00
|
|
|
} else if ((value != null) && typeof value === 'object') {
|
2016-05-25 05:38:35 +00:00
|
|
|
if (isPromise(value)) {
|
2016-04-20 05:26:49 +00:00
|
|
|
return {
|
|
|
|
type: 'promise',
|
2016-05-23 22:07:01 +00:00
|
|
|
then: valueToMeta(function (onFulfilled, onRejected) {
|
|
|
|
value.then(onFulfilled, onRejected)
|
|
|
|
})
|
2016-04-20 05:26:49 +00:00
|
|
|
}
|
|
|
|
} else if (v8Util.getHiddenValue(value, 'atomId')) {
|
|
|
|
return {
|
|
|
|
type: 'remote-object',
|
|
|
|
id: v8Util.getHiddenValue(value, 'atomId')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-11 17:28:01 +00:00
|
|
|
let meta = {
|
2016-01-12 02:40:23 +00:00
|
|
|
type: 'object',
|
2017-10-26 03:41:11 +00:00
|
|
|
name: value.constructor ? value.constructor.name : '',
|
2016-01-12 02:40:23 +00:00
|
|
|
members: []
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-07-11 17:39:21 +00:00
|
|
|
visited.add(value)
|
2016-07-11 17:28:01 +00:00
|
|
|
for (let prop in value) {
|
|
|
|
meta.members.push({
|
2016-01-12 02:40:23 +00:00
|
|
|
name: prop,
|
2016-07-11 17:28:01 +00:00
|
|
|
value: valueToMeta(value[prop])
|
2016-03-25 19:57:17 +00:00
|
|
|
})
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-07-11 17:28:01 +00:00
|
|
|
visited.delete(value)
|
|
|
|
return meta
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (typeof value === 'function' && v8Util.getHiddenValue(value, 'returnValue')) {
|
|
|
|
return {
|
|
|
|
type: 'function-with-return-value',
|
|
|
|
value: valueToMeta(value())
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (typeof value === 'function') {
|
|
|
|
return {
|
|
|
|
type: 'function',
|
|
|
|
id: callbacksRegistry.add(value),
|
2016-11-09 13:05:46 +00:00
|
|
|
location: v8Util.getHiddenValue(value, 'location'),
|
|
|
|
length: value.length
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
type: 'value',
|
|
|
|
value: value
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-12-02 01:29:51 +00:00
|
|
|
return args.map(valueToMeta)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-02-22 02:52:21 +00:00
|
|
|
// Populate object's members from descriptors.
|
2016-04-01 06:45:36 +00:00
|
|
|
// The |ref| will be kept referenced by |members|.
|
2016-02-22 02:52:21 +00:00
|
|
|
// This matches |getObjectMemebers| in rpc-server.
|
2017-10-25 13:51:21 +00:00
|
|
|
function setObjectMembers (ref, object, metaId, members) {
|
2016-11-15 17:44:41 +00:00
|
|
|
if (!Array.isArray(members)) return
|
|
|
|
|
2016-02-22 02:52:21 +00:00
|
|
|
for (let member of members) {
|
2016-03-29 00:35:49 +00:00
|
|
|
if (object.hasOwnProperty(member.name)) continue
|
2016-02-22 02:52:21 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
let descriptor = { enumerable: member.enumerable }
|
2016-02-22 02:52:21 +00:00
|
|
|
if (member.type === 'method') {
|
2016-12-02 01:29:51 +00:00
|
|
|
const remoteMemberFunction = function (...args) {
|
2017-11-03 01:07:40 +00:00
|
|
|
let command
|
2016-02-22 02:52:21 +00:00
|
|
|
if (this && this.constructor === remoteMemberFunction) {
|
2017-11-03 01:07:40 +00:00
|
|
|
command = 'ELECTRON_BROWSER_MEMBER_CONSTRUCTOR'
|
2016-02-22 02:52:21 +00:00
|
|
|
} else {
|
2017-11-03 01:07:40 +00:00
|
|
|
command = 'ELECTRON_BROWSER_MEMBER_CALL'
|
2016-02-22 02:52:21 +00:00
|
|
|
}
|
2017-11-03 01:07:40 +00:00
|
|
|
const ret = ipcRenderer.sendSync(command, metaId, member.name, wrapArgs(args))
|
|
|
|
return metaToValue(ret)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-08-16 20:54:21 +00:00
|
|
|
|
2016-08-17 20:58:48 +00:00
|
|
|
let descriptorFunction = proxyFunctionProperties(remoteMemberFunction, metaId, member.name)
|
2016-08-16 20:54:21 +00:00
|
|
|
|
2017-11-03 01:07:40 +00:00
|
|
|
descriptor.get = () => {
|
2016-08-16 20:54:21 +00:00
|
|
|
descriptorFunction.ref = ref // The member should reference its object.
|
|
|
|
return descriptorFunction
|
2016-04-01 06:26:30 +00:00
|
|
|
}
|
|
|
|
// Enable monkey-patch the method
|
2017-11-03 01:07:40 +00:00
|
|
|
descriptor.set = (value) => {
|
2016-08-16 20:54:21 +00:00
|
|
|
descriptorFunction = value
|
2016-04-01 06:26:30 +00:00
|
|
|
return value
|
|
|
|
}
|
2016-03-25 19:57:17 +00:00
|
|
|
descriptor.configurable = true
|
2016-02-22 02:52:21 +00:00
|
|
|
} else if (member.type === 'get') {
|
2017-11-03 01:07:40 +00:00
|
|
|
descriptor.get = () => {
|
|
|
|
const command = 'ELECTRON_BROWSER_MEMBER_GET'
|
|
|
|
const meta = ipcRenderer.sendSync(command, metaId, member.name)
|
|
|
|
return metaToValue(meta)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-02-22 02:52:21 +00:00
|
|
|
|
|
|
|
if (member.writable) {
|
2017-11-03 01:07:40 +00:00
|
|
|
descriptor.set = (value) => {
|
2017-04-03 21:18:04 +00:00
|
|
|
const args = wrapArgs([value])
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_MEMBER_SET'
|
|
|
|
const meta = ipcRenderer.sendSync(command, metaId, member.name, args)
|
2017-10-26 03:41:11 +00:00
|
|
|
if (meta != null) metaToValue(meta)
|
2016-03-25 19:57:17 +00:00
|
|
|
return value
|
|
|
|
}
|
2016-02-22 02:52:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
Object.defineProperty(object, member.name, descriptor)
|
2016-02-22 02:52:21 +00:00
|
|
|
}
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-02-22 02:52:21 +00:00
|
|
|
|
|
|
|
// Populate object's prototype from descriptor.
|
|
|
|
// This matches |getObjectPrototype| in rpc-server.
|
2017-10-25 13:51:21 +00:00
|
|
|
function setObjectPrototype (ref, object, metaId, descriptor) {
|
2017-11-03 01:07:40 +00:00
|
|
|
if (descriptor === null) return
|
2016-03-25 19:57:17 +00:00
|
|
|
let proto = {}
|
2016-04-01 06:45:36 +00:00
|
|
|
setObjectMembers(ref, proto, metaId, descriptor.members)
|
|
|
|
setObjectPrototype(ref, proto, metaId, descriptor.proto)
|
2016-03-25 19:57:17 +00:00
|
|
|
Object.setPrototypeOf(object, proto)
|
|
|
|
}
|
2016-02-22 02:52:21 +00:00
|
|
|
|
2016-08-17 20:58:48 +00:00
|
|
|
// Wrap function in Proxy for accessing remote properties
|
2017-10-25 13:51:21 +00:00
|
|
|
function proxyFunctionProperties (remoteMemberFunction, metaId, name) {
|
2016-08-17 20:58:48 +00:00
|
|
|
let loaded = false
|
2016-08-17 21:21:50 +00:00
|
|
|
|
|
|
|
// Lazily load function properties
|
2016-08-17 20:58:48 +00:00
|
|
|
const loadRemoteProperties = () => {
|
|
|
|
if (loaded) return
|
|
|
|
loaded = true
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_MEMBER_GET'
|
|
|
|
const meta = ipcRenderer.sendSync(command, metaId, name)
|
2016-11-15 17:44:41 +00:00
|
|
|
setObjectMembers(remoteMemberFunction, remoteMemberFunction, meta.id, meta.members)
|
2016-08-17 20:58:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return new Proxy(remoteMemberFunction, {
|
2016-09-14 20:21:44 +00:00
|
|
|
set: (target, property, value, receiver) => {
|
|
|
|
if (property !== 'ref') loadRemoteProperties()
|
|
|
|
target[property] = value
|
|
|
|
return true
|
|
|
|
},
|
2016-08-17 20:58:48 +00:00
|
|
|
get: (target, property, receiver) => {
|
|
|
|
if (!target.hasOwnProperty(property)) loadRemoteProperties()
|
2017-03-17 17:29:07 +00:00
|
|
|
const value = target[property]
|
|
|
|
if (property === 'toString' && typeof value === 'function') {
|
|
|
|
return value.bind(target)
|
|
|
|
}
|
|
|
|
return value
|
2016-08-17 20:58:48 +00:00
|
|
|
},
|
|
|
|
ownKeys: (target) => {
|
|
|
|
loadRemoteProperties()
|
|
|
|
return Object.getOwnPropertyNames(target)
|
|
|
|
},
|
|
|
|
getOwnPropertyDescriptor: (target, property) => {
|
|
|
|
let descriptor = Object.getOwnPropertyDescriptor(target, property)
|
2017-10-25 13:51:21 +00:00
|
|
|
if (descriptor) return descriptor
|
2016-08-17 20:58:48 +00:00
|
|
|
loadRemoteProperties()
|
|
|
|
return Object.getOwnPropertyDescriptor(target, property)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Convert meta data from browser into real value.
|
2017-10-25 13:51:21 +00:00
|
|
|
function metaToValue (meta) {
|
|
|
|
const types = {
|
2017-11-03 01:07:40 +00:00
|
|
|
value: () => meta.value,
|
|
|
|
array: () => meta.members.map((member) => metaToValue(member)),
|
|
|
|
buffer: () => Buffer.from(meta.value),
|
|
|
|
promise: () => resolvePromise({then: metaToValue(meta.then)}),
|
|
|
|
error: () => metaToPlainObject(meta),
|
|
|
|
date: () => new Date(meta.value),
|
|
|
|
exception: () => { throw new Error(`${meta.message}\n${meta.stack}`) }
|
2017-10-25 13:51:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (meta.type in types) {
|
2017-11-03 01:07:40 +00:00
|
|
|
return types[meta.type]()
|
2017-10-25 13:51:21 +00:00
|
|
|
} else {
|
|
|
|
let ret
|
2017-11-03 01:07:40 +00:00
|
|
|
if (remoteObjectCache.has(meta.id)) {
|
|
|
|
return remoteObjectCache.get(meta.id)
|
|
|
|
}
|
2017-10-25 13:51:21 +00:00
|
|
|
|
|
|
|
// A shadow class to represent the remote function object.
|
|
|
|
if (meta.type === 'function') {
|
|
|
|
let remoteFunction = function (...args) {
|
2017-11-03 01:07:40 +00:00
|
|
|
let command
|
2017-10-25 13:51:21 +00:00
|
|
|
if (this && this.constructor === remoteFunction) {
|
2017-11-03 01:07:40 +00:00
|
|
|
command = 'ELECTRON_BROWSER_CONSTRUCTOR'
|
2017-10-25 13:51:21 +00:00
|
|
|
} else {
|
2017-11-03 01:07:40 +00:00
|
|
|
command = 'ELECTRON_BROWSER_FUNCTION_CALL'
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2017-11-03 01:07:40 +00:00
|
|
|
const obj = ipcRenderer.sendSync(command, meta.id, wrapArgs(args))
|
|
|
|
return metaToValue(obj)
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2017-10-25 13:51:21 +00:00
|
|
|
ret = remoteFunction
|
|
|
|
} else {
|
|
|
|
ret = {}
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-10-25 13:51:21 +00:00
|
|
|
setObjectMembers(ret, ret, meta.id, meta.members)
|
|
|
|
setObjectPrototype(ret, ret, meta.id, meta.proto)
|
|
|
|
Object.defineProperty(ret.constructor, 'name', { value: meta.name })
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-10-25 13:51:21 +00:00
|
|
|
// Track delegate obj's lifetime & tell browser to clean up when object is GCed.
|
|
|
|
v8Util.setRemoteObjectFreer(ret, meta.id)
|
|
|
|
v8Util.setHiddenValue(ret, 'atomId', meta.id)
|
|
|
|
remoteObjectCache.set(meta.id, ret)
|
|
|
|
return ret
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Construct a plain object from the meta.
|
2017-10-25 13:51:21 +00:00
|
|
|
function metaToPlainObject (meta) {
|
2017-11-03 01:29:17 +00:00
|
|
|
const obj = (() => meta.type === 'error' ? new Error() : {})()
|
|
|
|
for (let i = 0; i < meta.members.length; i++) {
|
|
|
|
let {name, value} = meta.members[i]
|
|
|
|
obj[name] = value
|
|
|
|
}
|
2016-03-25 19:57:17 +00:00
|
|
|
return obj
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Browser calls a callback in renderer.
|
2017-10-25 19:36:16 +00:00
|
|
|
ipcRenderer.on('ELECTRON_RENDERER_CALLBACK', (event, id, args) => {
|
2016-05-19 22:28:08 +00:00
|
|
|
callbacksRegistry.apply(id, metaToValue(args))
|
2016-03-25 19:57:17 +00:00
|
|
|
})
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// A callback in browser is released.
|
2017-10-25 19:36:16 +00:00
|
|
|
ipcRenderer.on('ELECTRON_RENDERER_RELEASE_CALLBACK', (event, id) => {
|
2016-05-19 22:28:08 +00:00
|
|
|
callbacksRegistry.remove(id)
|
2016-03-25 19:57:17 +00:00
|
|
|
})
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-05-15 11:57:23 +00:00
|
|
|
process.on('exit', () => {
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_CONTEXT_RELEASE'
|
2018-03-20 04:54:47 +00:00
|
|
|
ipcRenderer.sendSync(command, initialContext)
|
2017-05-15 11:57:23 +00:00
|
|
|
})
|
|
|
|
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.require = (module) => {
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_REQUIRE'
|
|
|
|
const meta = ipcRenderer.sendSync(command, module)
|
|
|
|
return metaToValue(meta)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Alias to remote.require('electron').xxx.
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.getBuiltin = (module) => {
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_GET_BUILTIN'
|
|
|
|
const meta = ipcRenderer.sendSync(command, module)
|
|
|
|
return metaToValue(meta)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.getCurrentWindow = () => {
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_CURRENT_WINDOW'
|
|
|
|
const meta = ipcRenderer.sendSync(command)
|
|
|
|
return metaToValue(meta)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Get current WebContents object.
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.getCurrentWebContents = () => {
|
2017-10-25 19:36:16 +00:00
|
|
|
return metaToValue(ipcRenderer.sendSync('ELECTRON_BROWSER_CURRENT_WEB_CONTENTS'))
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2018-03-20 04:54:47 +00:00
|
|
|
const CONTEXT_ARG = '--context-id='
|
|
|
|
let initialContext = process.argv.find(arg => arg.startsWith(CONTEXT_ARG))
|
|
|
|
if (initialContext) {
|
|
|
|
initialContext = parseInt(initialContext.substr(CONTEXT_ARG.length), 10)
|
|
|
|
} else {
|
|
|
|
// In sandbox we need to pull this from remote
|
|
|
|
initialContext = exports.getCurrentWebContents().getId()
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Get a global object in browser.
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.getGlobal = (name) => {
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_GLOBAL'
|
|
|
|
const meta = ipcRenderer.sendSync(command, name)
|
|
|
|
return metaToValue(meta)
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Get the process object in browser.
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.__defineGetter__('process', () => exports.getGlobal('process'))
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-10-26 03:41:11 +00:00
|
|
|
// Create a function that will return the specified value when called in browser.
|
|
|
|
exports.createFunctionWithReturnValue = (returnValue) => {
|
2017-10-25 13:51:21 +00:00
|
|
|
const func = () => returnValue
|
2016-03-25 19:57:17 +00:00
|
|
|
v8Util.setHiddenValue(func, 'returnValue', true)
|
|
|
|
return func
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Get the guest WebContents from guestInstanceId.
|
2017-10-26 03:41:11 +00:00
|
|
|
exports.getGuestWebContents = (guestInstanceId) => {
|
2017-11-03 01:07:40 +00:00
|
|
|
const command = 'ELECTRON_BROWSER_GUEST_WEB_CONTENTS'
|
|
|
|
const meta = ipcRenderer.sendSync(command, guestInstanceId)
|
2016-03-25 19:57:17 +00:00
|
|
|
return metaToValue(meta)
|
|
|
|
}
|
2017-02-23 18:01:27 +00:00
|
|
|
|
|
|
|
const addBuiltinProperty = (name) => {
|
|
|
|
Object.defineProperty(exports, name, {
|
2017-11-03 01:07:40 +00:00
|
|
|
get: () => exports.getBuiltin(name)
|
2017-02-23 18:01:27 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-06 14:58:10 +00:00
|
|
|
const browserModules =
|
|
|
|
require('../../common/api/module-list').concat(
|
|
|
|
require('../../browser/api/module-list'))
|
|
|
|
|
|
|
|
// And add a helper receiver for each one.
|
|
|
|
browserModules
|
|
|
|
.filter((m) => !m.private)
|
|
|
|
.map((m) => m.name)
|
|
|
|
.forEach(addBuiltinProperty)
|