Chromium Code Reviews| Index: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/Context.java |
| diff --git a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/Context.java b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/Context.java |
| index 524bab792f22a3706f7e5ab84a21ce5d4184b9c4..d140382ede04d8245f01f9d96140df54cb0ebbd4 100644 |
| --- a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/Context.java |
| +++ b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/Context.java |
| @@ -602,6 +602,9 @@ public class Context { |
| * Sets the {@link SimpleIdentifier} name and updates all references. |
| */ |
| public void renameIdentifier(SimpleIdentifier declarationIdentifier, String newName) { |
| + if (declarationIdentifier.getName().equals("rangeStartEnd5")) { |
| + System.out.println("zzzzzzzzz"); |
|
Brian Wilkerson
2014/04/26 17:04:52
Is this debugging code that needs to be deleted?
scheglov
2014/04/26 18:02:15
Done.
|
| + } |
| // move identifiers to the new signature |
| Object binding = nodeToBinding.get(declarationIdentifier); |
| List<SimpleIdentifier> identifiers = bindingToIdentifiers.get(binding); |