Issue #725 AS3 direct edit - Unbounded type fix

This commit is contained in:
Jindra Petřík
2014-11-23 12:00:42 +01:00
parent 4c78517715
commit 9cc4fd5a52

View File

@@ -1308,6 +1308,9 @@ public class AVM2SourceGenerator implements SourceGenerator {
if (type instanceof UnboundedTypeItem) {
return 0;
}
if((""+type).equals("*")){
return 0;
}
return resolveType(localData, type, abc, allABCs);
/*