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

Unified Diff: dart/lib/compiler/implementation/code_buffer.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/code_buffer.dart
diff --git a/dart/lib/compiler/implementation/code_buffer.dart b/dart/lib/compiler/implementation/code_buffer.dart
index 47cca0361fbc85ad2a2873329329c91c4f24fb84..3c3053e429942e4cfa4f7018efbf1998d6576e7b 100644
--- a/dart/lib/compiler/implementation/code_buffer.dart
+++ b/dart/lib/compiler/implementation/code_buffer.dart
@@ -11,7 +11,7 @@ class CodeBuffer implements StringBuffer {
: buffer = new StringBuffer(),
sourceLocations = new List<SourceLocation>();
- int get length() => buffer.length;
+ int get length => buffer.length;
bool isEmpty() {
return buffer.isEmpty();
« no previous file with comments | « dart/lib/compiler/implementation/closure.dart ('k') | dart/lib/compiler/implementation/compile_time_constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698