Skip to content

Commit

Permalink
Update CHANGES.md for 1.0.4 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlavaRa authored Aug 24, 2016
1 parent 6a316b2 commit 2c91660
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
##2016-06-08
##2016-08-24(1.0.4)
- Fixed conversion of unary operator after declaration of block
- Fixed convesion ```of if(number)```
- Fixed conversion of ```array.join("\n")```
- Fixed conversion of ```var cls : Class = Object(this).constructor as Class```
- Fixed conversion of ```var some : Some = new someType() as Class```
- Fixed parsing when semicolumn is missing
- Fixed conversion of ```some || = new Some()```
- Fixed crash when using setting -dictionary2hash
- Only first character of package will be transformed to lower case
- Loops will be converted to ```while``` instead of ```for``` for proper iteration variable modification
- Call ```Reflect.deleteField(dynamic, fieldName)``` instead of ```delete object[fieldname]```
- Call ```as3hx.Compat.Regex::exec``` instead of ```RegExp::exec```
- Call ```as3hx.Compat.FLOAT_MAX``` instead of ```Number.MAX_VALUE```
- Call ```as3hx.Compat.FLOAT_MIN``` instead of ```Number.MIN_VALUE```
- Call ```as3hx.Compat.INT_MAX``` instead of ```int.MAX_VALUE```
- Call ```as3hx.Compat.INT_MIN``` instead of ```int.MIN_VALUE```
- Call ```as3hx.Compat.parseFloat``` instead ```parseFloat```
- Call ```as3hx.Compat.parseInt``` instead ```parseInt```
- Call ```as3hx.Compat.arraySplice(array, position, length, args)``` instead of ```array.splice(position, length, args)```
- Call ```Reflect.callMethod(null, function, args)``` instead of ```function.apply(null, args)```
- Call ```Reflect.callMethod(null, function, [arg0, arg1])``` instead of ```function.call(null, arg0, args1)```

##2016-08-05(1.0.3)
- Fixed conversion of regular expressions with '[' character (closes issue #14)
- Fixed ternary operator conversion (closes issue #28)
- Fixed conversion of compound loop conditions (closes issue #29)
Expand Down

0 comments on commit 2c91660

Please sign in to comment.