feat: remove MapWrapper.clear().

It's the same in Dart and JavaScript.
This commit is contained in:
Martin Probst
2015-06-18 09:59:51 -07:00
parent dfd30910aa
commit 941362014b
6 changed files with 6 additions and 10 deletions

View File

@ -621,7 +621,7 @@ class _DuplicateMap {
get isEmpty(): boolean { return MapWrapper.size(this.map) === 0; }
clear() { MapWrapper.clear(this.map); }
clear() { this.map.clear(); }
toString(): string { return '_DuplicateMap(' + stringify(this.map) + ')'; }
}