We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83b690b + 96c1c71 commit 958b540Copy full SHA for 958b540
test/evaluate_test.dart
@@ -36,9 +36,12 @@ void main() {
36
});
37
38
test("with a semantics function", () {
39
- _expectEval("foo", false, semantics: (variable) => variable.contains("a"));
40
- _expectEval("bar", true, semantics: (variable) => variable.contains("a"));
41
- _expectEval("baz", true, semantics: (variable) => variable.contains("a"));
+ _expectEval("foo", false,
+ semantics: (String variable) => variable.contains("a"));
+ _expectEval("bar", true,
42
43
+ _expectEval("baz", true,
44
45
46
}
47
0 commit comments