singletons that are retroactively turned into EventEmitters should call the EventEmitter ctor

This commit is contained in:
Charles Kerr 2017-11-01 23:05:27 -05:00
parent 577012370e
commit 1c09dede1a
7 changed files with 14 additions and 0 deletions

View file

@ -1,6 +1,8 @@
const {EventEmitter} = require('events')
const {systemPreferences, SystemPreferences} = process.atomBinding('system_preferences')
// SystemPreferences is an EventEmitter.
Object.setPrototypeOf(SystemPreferences.prototype, EventEmitter.prototype)
EventEmitter.call(systemPreferences)
module.exports = systemPreferences