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

Unified Diff: dart/lib/compiler/implementation/js/printer.dart

Issue 10876008: Remove most superfluous getter arguments from dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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: dart/lib/compiler/implementation/js/printer.dart
diff --git a/dart/lib/compiler/implementation/js/printer.dart b/dart/lib/compiler/implementation/js/printer.dart
index f327b0b9fa741e84068838f7bd05964d5dae7384..287961218b1ac7c71132320e063675f6286a0935 100644
--- a/dart/lib/compiler/implementation/js/printer.dart
+++ b/dart/lib/compiler/implementation/js/printer.dart
@@ -25,7 +25,7 @@ class Printer implements NodeVisitor {
}
String lastAddedString = null;
- int get lastCharCode() {
+ int get lastCharCode {
if (lastAddedString == null) return 0;
assert(lastAddedString.length != "");
return lastAddedString.charCodeAt(lastAddedString.length - 1);
« no previous file with comments | « dart/lib/compiler/implementation/js/nodes.dart ('k') | dart/lib/compiler/implementation/js_backend/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698