add change note for EventEmitter

This commit is contained in:
Erik Krogh Kristensen
2020-01-22 10:31:38 +01:00
parent 86477a2249
commit 750e9786f6

View File

@@ -36,3 +36,4 @@
## Changes to libraries
* The predicates `RegExpTerm.getSuccessor` and `RegExpTerm.getPredecessor` have been changed to reflect textual, not operational, matching order. This only makes a difference in lookbehind assertions, which are operationally matched backwards. Previously, `getSuccessor` would mimick this, so in an assertion `(?<=ab)` the term `b` would be considered the predecessor, not the successor, of `a`. Textually, however, `a` is still matched before `b`, and this is the order we now follow.
* A model has been added for the NodeJS `EventEmitter`. The `SocketIO` model has been refactored to use this model.