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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/Context.java

Issue 250823006: Translate parts of engine.services project. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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: 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);

Powered by Google App Engine
This is Rietveld 408576698