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

Unified Diff: frog/tests/leg/resolver_test.dart

Issue 10456080: Remove printDebugInfo from Unparser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address Anton's comments. Created 8 years, 6 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: frog/tests/leg/resolver_test.dart
diff --git a/frog/tests/leg/resolver_test.dart b/frog/tests/leg/resolver_test.dart
index b728f53eafc347751b585090402be74e545e06d4..2d05e62f7b8372964be76866a5d588560f977138 100644
--- a/frog/tests/leg/resolver_test.dart
+++ b/frog/tests/leg/resolver_test.dart
@@ -359,18 +359,18 @@ testFor() {
}
checkIdentifier(Element expected, Node node, Element actual) {
- Expect.isTrue(node is Identifier, node.toDebugString());
+ Expect.isTrue(node is Identifier, node.toString());
Expect.equals(expected, actual);
}
checkSend(Element expected, Node node, Element actual) {
- Expect.isTrue(node is Send, node.toDebugString());
- Expect.isTrue(node is !SendSet, node.toDebugString());
+ Expect.isTrue(node is Send, node.toString());
+ Expect.isTrue(node is !SendSet, node.toString());
Expect.equals(expected, actual);
}
checkSendSet(Element expected, Node node, Element actual) {
- Expect.isTrue(node is SendSet, node.toDebugString());
+ Expect.isTrue(node is SendSet, node.toString());
Expect.equals(expected, actual);
}
« no previous file with comments | « no previous file | lib/compiler/implementation/tree/nodes.dart » ('j') | lib/compiler/implementation/tree/nodes.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698