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>v5.x
Bryan English
9 years ago
committed by
cjihrig
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