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

Unified Diff: dart/lib/compiler/implementation/lib/io.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/lib/io.dart
diff --git a/dart/lib/compiler/implementation/lib/io.dart b/dart/lib/compiler/implementation/lib/io.dart
index 4cd7cecd8da9cc56d0435b7285b66859627fb10d..7d412c2213405d996cc3a73c1ad0b2ec1a733109 100644
--- a/dart/lib/compiler/implementation/lib/io.dart
+++ b/dart/lib/compiler/implementation/lib/io.dart
@@ -76,23 +76,23 @@ class _File {
}
class _Platform {
- static int get numberOfProcessors() {
+ static int get numberOfProcessors {
throw new UnsupportedOperationException('_Platform.numberOfProcessors');
}
- static String get pathSeparator() {
+ static String get pathSeparator {
throw new UnsupportedOperationException('_Platform.pathSeparator');
}
- static String get operatingSystem() {
+ static String get operatingSystem {
throw new UnsupportedOperationException('_Platform.operatingSystem');
}
- static String get localHostname() {
+ static String get localHostname {
throw new UnsupportedOperationException('_Platform.localHostname');
}
- static Map<String, String> get environment() {
+ static Map<String, String> get environment {
throw new UnsupportedOperationException('_Platform.environment');
}
}
@@ -157,7 +157,7 @@ class _EventHandler {
throw new UnsupportedOperationException(msg);
}
- static _EventHandler get _eventHandler() {
+ static _EventHandler get _eventHandler {
throw new UnsupportedOperationException('_EventHandler._eventhandler');
}
« no previous file with comments | « dart/lib/compiler/implementation/lib/coreimpl_patch.dart ('k') | dart/lib/compiler/implementation/lib/isolate_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698