@@ -47,7 +47,8 @@ package haxe.ds;
")
@:coreApi class IntMap<T> implements haxe.Constraints.IMap<Int,T> {
- @:ifFeature("haxe.ds.IntMap.*") private var h : Dynamic;
+ @:ifFeature("haxe.ds.IntMap.*")
+ private var h : Dynamic;
public function new() : Void { }
@@ -46,6 +46,7 @@ package haxe.ds;
@:coreApi
class ObjectMap<K:{},V> implements haxe.Constraints.IMap<K,V> {
+ @:ifFeature("haxe.ds.ObjectMap.*")
private var h : Dynamic;
@@ -44,6 +44,7 @@ package haxe.ds;
class WeakMap<K:{},V> implements haxe.Constraints.IMap<K,V> {
+ @:ifFeature("haxe.ds.WeakMap.*")