@@ -5,6 +5,7 @@
neko : fixed neko.Web.getParamsString() returning "null" instead of ""
flash9 : fixed issue with @:bind
flash9 : added some missing errors
+ flash9 : fixed TypedDictionary.exists
2010-08-14: 2.06
neko : change serializer to be able to handle instances of basic classes from other modules
@@ -38,7 +38,7 @@ class TypedDictionary<K,T> extends Dictionary {
}
public inline function exists( k : K ) {
- return this[cast k] != null;
+ return untyped this[k] != null;
public inline function delete( k : K ) {