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

Unified Diff: dart/lib/compiler/implementation/script.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/script.dart
diff --git a/dart/lib/compiler/implementation/script.dart b/dart/lib/compiler/implementation/script.dart
index 04712db3a952c17594ae67dc15ac1e59a3b30c01..f70363058a99776a5e0bd483c9c638613a050bf5 100644
--- a/dart/lib/compiler/implementation/script.dart
+++ b/dart/lib/compiler/implementation/script.dart
@@ -10,6 +10,6 @@ class Script {
final Uri uri;
Script(this.uri, this.file);
- String get text() => (file === null) ? null : file.text;
- String get name() => (file === null) ? null : file.filename;
+ String get text => (file === null) ? null : file.text;
+ String get name => (file === null) ? null : file.filename;
}
« no previous file with comments | « dart/lib/compiler/implementation/scanner/token.dart ('k') | dart/lib/compiler/implementation/source_file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698