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

Unified Diff: lib/compiler/implementation/namer.dart

Issue 10052020: Reduce size by emitting $.foo instead of Isolate.prototype.foo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove another Isolate.prototype. Created 8 years, 8 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: lib/compiler/implementation/namer.dart
diff --git a/lib/compiler/implementation/namer.dart b/lib/compiler/implementation/namer.dart
index 9f0946f050511b6beaabcf336c71fcf439df1e39..7aa40cf6d77579aaca2bc0d81c478bd82ad1901a 100644
--- a/lib/compiler/implementation/namer.dart
+++ b/lib/compiler/implementation/namer.dart
@@ -196,10 +196,6 @@ class Namer {
return "$ISOLATE.prototype.${getName(element)}";
}
- String isolateBailoutPropertyAccess(Element element) {
- return '${isolatePropertyAccess(element)}\$bailout';
- }
-
String isolateBailoutAccess(Element element) {
return '${isolateAccess(element)}\$bailout';
}

Powered by Google App Engine
This is Rietveld 408576698