Index: pkg/analyzer/test/generated/all_the_rest.dart |
diff --git a/pkg/analyzer/test/generated/all_the_rest.dart b/pkg/analyzer/test/generated/all_the_rest.dart |
index 09632eb8621d3d29ff18ab0b44b848366fb07e43..128ea5d2063ec36fb61814737488a9af69d4935a 100644 |
--- a/pkg/analyzer/test/generated/all_the_rest.dart |
+++ b/pkg/analyzer/test/generated/all_the_rest.dart |
@@ -2235,7 +2235,7 @@ class MyController { |
assertResolvedIdentifier2("ctrl", "MyController"); |
} |
- void test_resolveExpression_withFilter() { |
+ void test_resolveExpression_withFormatter() { |
addMyController(); |
_resolveIndexNoErrors( |
AngularTest.createHtmlWithMyController("{{ctrl.field | uppercase}}")); |
@@ -2243,7 +2243,14 @@ class MyController { |
assertResolvedIdentifier("uppercase"); |
} |
- void test_resolveExpression_withFilter_notSimpleIdentifier() { |
+ void test_resolveExpression_withFormatter_missingColon() { |
+ addMyController(); |
+ resolveIndex2( |
+ AngularTest.createHtmlWithMyController("{{ctrl.field | uppercase, lowercase}}")); |
+ assertErrors(indexSource, [AngularCode.MISSING_FORMATTER_COLON]); |
+ } |
+ |
+ void test_resolveExpression_withFormatter_notSimpleIdentifier() { |
addMyController(); |
resolveIndex2( |
AngularTest.createHtmlWithMyController("{{ctrl.field | not.supported}}")); |