Skip to content

Commit

Permalink
adjust optimization tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Simn committed Dec 17, 2024
1 parent 84b7c2b commit 64b43e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/optimization/src/Test.hx
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ class Test {
}

@:js('
var _g_set_amount = 10;
var _g_current = 0;
while(_g_current++ < 10) {
var i_set_amount = 10;
var i_current = 0;
while(i_current++ < 10) {
var i = null;
}
')
Expand All @@ -130,9 +130,9 @@ class Test {
}

@:js('
var _g_set_amount = 10;
var _g_current = 0;
while(_g_current++ < 10) {
var i_set_amount = 10;
var i_current = 0;
while(i_current++ < 10) {
var i = null;
}
')
Expand Down

0 comments on commit 64b43e5

Please sign in to comment.