Browse Source

merge abstract implementation classes

Simon Krajewski 12 years ago
parent
commit
207a6a8e7d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      std/haxe/rtti/XmlParser.hx

+ 1 - 0
std/haxe/rtti/XmlParser.hx

@@ -186,6 +186,7 @@ class XmlParser {
 		for( i in 0...a.supers.length )
 			if( !TypeApi.typeEq(a.supers[i],a2.supers[i]) )
 				return false;
+		if (a2.impl != null) mergeClasses(a.impl, a2.impl);
 		a.platforms.add(curplatform);
 		return true;
 	}