Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 94084db

Browse files
committed
quick fix for dirty checking, tests forthcoming
1 parent 2dda1f1 commit 94084db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/change_detection/dirty_checking_change_detector_static.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ class StaticFieldGetterFactory implements FieldGetterFactory {
2727
Function method(Object object, String name) {
2828
var method = getters[name];
2929
if (method == null) throw "Missing method: $name";
30-
return method;
30+
return method(object);
3131
}
3232
}

0 commit comments

Comments
 (0)