()
| 1633 | } |
| 1634 | ts.maybeBind = maybeBind; |
| 1635 | function createMultiMap() { |
| 1636 | var map = new ts.Map(); |
| 1637 | map.add = multiMapAdd; |
| 1638 | map.remove = multiMapRemove; |
| 1639 | return map; |
| 1640 | } |
| 1641 | ts.createMultiMap = createMultiMap; |
| 1642 | function multiMapAdd(key, value) { |
| 1643 | var values = this.get(key); |
no outgoing calls
no test coverage detected