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

Unified Diff: dart/lib/compiler/implementation/patch_parser.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
« no previous file with comments | « dart/lib/compiler/implementation/namer.dart ('k') | dart/lib/compiler/implementation/resolver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/patch_parser.dart
diff --git a/dart/lib/compiler/implementation/patch_parser.dart b/dart/lib/compiler/implementation/patch_parser.dart
index 6b96677c592b3be0d805badc4c34b02dc3422503..4ea29b45cbeef6b9e44b3472f1f9bf186d2ef70c 100644
--- a/dart/lib/compiler/implementation/patch_parser.dart
+++ b/dart/lib/compiler/implementation/patch_parser.dart
@@ -95,7 +95,7 @@ interface PatchListener extends Listener {
class PatchParser extends PartialParser {
PatchParser(PatchListener listener) : super(listener);
- PatchListener get patchListener() => listener;
+ PatchListener get patchListener => listener;
bool isPatch(Token token) {
return token.stringValue === null &&
« no previous file with comments | « dart/lib/compiler/implementation/namer.dart ('k') | dart/lib/compiler/implementation/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698