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

Unified Diff: dart/lib/compiler/implementation/scanner/byte_strings.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/scanner/byte_strings.dart
diff --git a/dart/lib/compiler/implementation/scanner/byte_strings.dart b/dart/lib/compiler/implementation/scanner/byte_strings.dart
index c9b18d0c83217775d85059563f49435ad4c57b26..b417d336e2b23220048ba3aeaa43ff8984a202de 100644
--- a/dart/lib/compiler/implementation/scanner/byte_strings.dart
+++ b/dart/lib/compiler/implementation/scanner/byte_strings.dart
@@ -49,7 +49,7 @@ class ByteString implements SourceString {
bool isEmpty() => length == 0;
bool isPrivate() => !isEmpty() && bytes[offset] === $_;
- String get stringValue() => null;
+ String get stringValue => null;
}
/**

Powered by Google App Engine
This is Rietveld 408576698