We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 00ee677 + f82872a commit 67461faCopy full SHA for 67461fa
src/lime/tools/ConfigData.hx
@@ -228,8 +228,8 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic
228
229
var valueSource = Reflect.field(source, field);
230
var valueDest = Reflect.field(destination, field);
231
- var typeSource = Type.typeof(valueSource).getName();
232
- var typeDest = Type.typeof(valueDest).getName();
+ var typeSource:String = Type.typeof(valueSource).getName();
+ var typeDest:String = Type.typeof(valueDest).getName();
233
234
// if trying to copy a non object over an object, don't
235
if (typeSource != "TObject" && typeDest == "TObject")
0 commit comments