Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Unified Diff: pkg/analyzer/test/src/summary/resynthesize_test.dart

Issue 1635063003: Stop precomputing ClassElement.isValidMixin. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/src/summary/resynthesize_test.dart
diff --git a/pkg/analyzer/test/src/summary/resynthesize_test.dart b/pkg/analyzer/test/src/summary/resynthesize_test.dart
index db8c43a48abd796d2c62239540aad5cc01969d74..0e7843d57c44085f1457ba8948806d263e5fdf74 100644
--- a/pkg/analyzer/test/src/summary/resynthesize_test.dart
+++ b/pkg/analyzer/test/src/summary/resynthesize_test.dart
@@ -220,10 +220,6 @@ class ResynthTest extends ResolverTestCase {
ElementImpl actualResynthesized = getActualElement(resynthesized, desc);
ElementImpl actualOriginal = getActualElement(original, desc);
for (Modifier modifier in Modifier.values) {
- if (modifier == Modifier.MIXIN) {
- // Skipping for now. TODO(paulberry): fix.
- continue;
- }
bool got = actualResynthesized.hasModifier(modifier);
bool want = actualOriginal.hasModifier(modifier);
expect(got, want,
« pkg/analyzer/lib/dart/element/element.dart ('K') | « pkg/analyzer/test/generated/resolver_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698