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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/scope/Scope.java

Issue 700943003: Fix issue 19424 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up Created 6 years, 1 month 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/scope/Scope.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/scope/Scope.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/scope/Scope.java
index 2ebde8794dd518ba9987b932a7ef10056082307b..dee5d81da142e6aac3bb8c7a6cf9b7a506beca5d 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/scope/Scope.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/scope/Scope.java
@@ -178,7 +178,7 @@ public abstract class Scope {
* @param identifier the identifier whose source is to be returned
* @return the source that contains the given identifier
*/
- protected final Source getSource(AstNode node) {
+ protected Source getSource(AstNode node) {
CompilationUnit unit = node.getAncestor(CompilationUnit.class);
if (unit != null) {
CompilationUnitElement unitElement = unit.getElement();

Powered by Google App Engine
This is Rietveld 408576698