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

Unified Diff: lib/compiler/implementation/resolution/scope.dart

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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
« no previous file with comments | « lib/compiler/implementation/resolution/members.dart ('k') | lib/compiler/implementation/runtime_types.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/resolution/scope.dart
diff --git a/lib/compiler/implementation/resolution/scope.dart b/lib/compiler/implementation/resolution/scope.dart
index f50a9f627c966e6256f89bd9556ebb52fc73a69d..d25f8c1c3d7fd122cfc1ddd3da074b3f6292c387 100644
--- a/lib/compiler/implementation/resolution/scope.dart
+++ b/lib/compiler/implementation/resolution/scope.dart
@@ -62,7 +62,7 @@ class TypeDeclarationScope extends NestedScope {
Element lookupTypeVariable(SourceString name) {
Link<DartType> typeVariableLink = element.typeVariables;
- while (!typeVariableLink.isEmpty()) {
+ while (!typeVariableLink.isEmpty) {
TypeVariableType typeVariable = typeVariableLink.head;
if (typeVariable.name == name) {
return typeVariable.element;
« no previous file with comments | « lib/compiler/implementation/resolution/members.dart ('k') | lib/compiler/implementation/runtime_types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698