mirror of https://github.com/lukechilds/node.git
Browse Source
* Document that Symbol can used as event names. * Add test for using Symbol as event names PR-URL: https://github.com/nodejs/node/pull/4151 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>process-exit-stdio-flushing
committed by
James M Snell
2 changed files with 27 additions and 3 deletions
@ -0,0 +1,23 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
const common = require('../common'); |
||||
|
const EventEmitter = require('events'); |
||||
|
const assert = require('assert'); |
||||
|
|
||||
|
const ee = new EventEmitter(); |
||||
|
const foo = Symbol('foo'); |
||||
|
const listener = common.mustCall(function() {}); |
||||
|
|
||||
|
ee.on(foo, listener); |
||||
|
assert.deepEqual(ee.listeners(foo), [listener]); |
||||
|
|
||||
|
ee.emit(foo); |
||||
|
|
||||
|
ee.removeAllListeners(); |
||||
|
assert.deepEqual(ee.listeners(foo), []); |
||||
|
|
||||
|
ee.on(foo, listener); |
||||
|
assert.deepEqual(ee.listeners(foo), [listener]); |
||||
|
|
||||
|
ee.removeListener(foo, listener); |
||||
|
assert.deepEqual(ee.listeners(foo), []); |
Loading…
Reference in new issue