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

Unified Diff: frog/minfrog

Issue 9111002: Fixes improper boxing in obj.dynamic (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 12 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 | « frog/lib/corelib.dart ('k') | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/minfrog
diff --git a/frog/minfrog b/frog/minfrog
index 49335215d9a7bdb04a858767a06b164eab2aec26..00a95eeae45741647af4f05f03653b9017cdd382 100755
--- a/frog/minfrog
+++ b/frog/minfrog
@@ -71,7 +71,7 @@ function $truncdiv(x, y) {
}
// ********** Code for Object **************
Object.prototype.get$dynamic = function() {
- return this;
+ "use strict"; return this;
}
Object.prototype.noSuchMethod = function(name, args) {
$throw(new NoSuchMethodException(this, name, args));
« no previous file with comments | « frog/lib/corelib.dart ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698