| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of resolution; | 5 part of resolution; |
| 6 | 6 |
| 7 abstract class Scope { | 7 abstract class Scope { |
| 8 /** | 8 /** |
| 9 * Adds [element] to this scope. This operation is only allowed on mutable | 9 * Adds [element] to this scope. This operation is only allowed on mutable |
| 10 * scopes such as [MethodScope] and [BlockScope]. | 10 * scopes such as [MethodScope] and [BlockScope]. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 TypeDeclarationScope(parent, this.element) | 67 TypeDeclarationScope(parent, this.element) |
| 68 : super(parent) { | 68 : super(parent) { |
| 69 assert(parent != null); | 69 assert(parent != null); |
| 70 } | 70 } |
| 71 | 71 |
| 72 Element add(Element newElement) { | 72 Element add(Element newElement) { |
| 73 throw "Cannot add element to TypeDeclarationScope"; | 73 throw "Cannot add element to TypeDeclarationScope"; |
| 74 } | 74 } |
| 75 | 75 |
| 76 Element lookupTypeVariable(String name) { | 76 Element lookupTypeVariable(String name) { |
| 77 Link<DartType> typeVariableLink = element.typeVariables; | 77 List<DartType> typeVariables = element.typeVariables; |
| 78 while (!typeVariableLink.isEmpty) { | 78 for (TypeVariableType type in typeVariables) { |
| 79 TypeVariableType typeVariable = typeVariableLink.head; | 79 if (type.name == name) { |
| 80 if (typeVariable.name == name) { | 80 return type.element; |
| 81 return typeVariable.element; | |
| 82 } | 81 } |
| 83 typeVariableLink = typeVariableLink.tail; | |
| 84 } | 82 } |
| 85 return null; | 83 return null; |
| 86 } | 84 } |
| 87 | 85 |
| 88 Element localLookup(String name) => lookupTypeVariable(name); | 86 Element localLookup(String name) => lookupTypeVariable(name); |
| 89 | 87 |
| 90 String toString() => | 88 String toString() => |
| 91 'TypeDeclarationScope($element)'; | 89 'TypeDeclarationScope($element)'; |
| 92 } | 90 } |
| 93 | 91 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 165 |
| 168 Element localLookup(String name) => library.find(name); | 166 Element localLookup(String name) => library.find(name); |
| 169 Element lookup(String name) => localLookup(name); | 167 Element lookup(String name) => localLookup(name); |
| 170 | 168 |
| 171 Element add(Element newElement) { | 169 Element add(Element newElement) { |
| 172 throw "Cannot add an element to a library scope"; | 170 throw "Cannot add an element to a library scope"; |
| 173 } | 171 } |
| 174 | 172 |
| 175 String toString() => 'LibraryScope($library)'; | 173 String toString() => 'LibraryScope($library)'; |
| 176 } | 174 } |
| OLD | NEW |