Skip to content

Commit e2d2eab

Browse files
committed
Turns out this whole thing was issue 26 after all \o/
1 parent a52cc7a commit e2d2eab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Issue8.hx renamed to tests/Issue26.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import js.Browser.*;
99
using tink.CoreApi;
1010

1111
@:asserts
12-
class Issue8 {
12+
class Issue26 {
1313
static final msgs = [];
1414
static public function log(v)
1515
msgs.push(v);
@@ -35,7 +35,7 @@ class Root extends View {
3535
});
3636

3737
function render() {
38-
Issue8.log('render Root ${value.raw.length}');
38+
Issue26.log('render Root ${value.raw.length}');
3939
return @hxx '
4040
<>
4141
<for ${i in 0...value.raw.length}>
@@ -54,7 +54,7 @@ class Sub extends View {
5454
@:attr var value:Value<Obj, Obj>;
5555
@:attr var onClick:Void->Void;
5656
function render() {
57-
Issue8.log('render Sub ${value.raw}');
57+
Issue26.log('render Sub ${value.raw}');
5858
return @hxx '<Div onclick=${onClick}>${value.raw == null ? null : value.raw.foo}</Div>';
5959
}
6060
}

tests/RunTests.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class RunTests {
1212
static function main() {
1313
Runner.run(TestBatch.make([
1414
new InjectTest(),
15-
new Issue8(),
15+
new Issue26(),
1616
])).handle(Runner.exit);
1717
}
1818
}

0 commit comments

Comments
 (0)