Skip to content

Commit 65af3ef

Browse files
authored
prepare v1.7.0 (#471)
1 parent 2b15d8c commit 65af3ef

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## dev branch / next version (1.x.x)
44

5-
## version 1.7.0 (2019-05-16)
5+
## version 1.7.0 (2019-05-17)
66

77
- Added `wrapping.multiVar`, fixes [#355](https://github.com/HaxeCheckstyle/haxe-formatter/issues/355), fixes [#430](https://github.com/HaxeCheckstyle/haxe-formatter/issues/430) ([#422](https://github.com/HaxeCheckstyle/haxe-formatter/issues/422) + [#434](https://github.com/HaxeCheckstyle/haxe-formatter/issues/434))
88
- Added `emptylines.afterFieldsWithDocComments`, fixes [#385](https://github.com/HaxeCheckstyle/haxe-formatter/issues/385), fixes [#432](https://github.com/HaxeCheckstyle/haxe-formatter/issues/432) ([#425](https://github.com/HaxeCheckstyle/haxe-formatter/issues/425) + [#434](https://github.com/HaxeCheckstyle/haxe-formatter/issues/434))

test/testcases/indentation/opassignop.hxtest

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
class Main {
77
public function main(){
88
profiles.get (className).get (methodName).elapsedTime += t - profiles.get (className).get (methodName).startTime;
9+
profiles.get (className).get (methodName).elapsedTime = t - profiles.get (className).get (methodName).startTime;
910
profiles.get (className)
1011
.get (methodName)
1112
.elapsedTime += t - profiles.get (className)
@@ -23,6 +24,11 @@ class Main {
2324
.elapsedTime += t - profiles.get(className)
2425
.get(methodName)
2526
.startTime;
27+
profiles.get(className)
28+
.get(methodName)
29+
.elapsedTime = t - profiles.get(className)
30+
.get(methodName)
31+
.startTime;
2632
profiles.get(className)
2733
.get(methodName)
2834
.elapsedTime += t - profiles.get(className)

0 commit comments

Comments
 (0)