-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Document that Symbol can used as event names. * Add test for using Symbol as event names PR-URL: #4151 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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), []); |