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

Unified Diff: lib/runtime/dart/convert.js

Issue 1173023004: fixes #217, Object members on extension types (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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 | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/core.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/convert.js
diff --git a/lib/runtime/dart/convert.js b/lib/runtime/dart/convert.js
index d18ed7446eefc2eb4a65f31d6ac7f905090dd7a9..1c119dff1c854c751be9120627ec7ddf181bd672 100644
--- a/lib/runtime/dart/convert.js
+++ b/lib/runtime/dart/convert.js
@@ -1365,7 +1365,7 @@ dart.library('dart/convert', null, /* Imports */[
dart.dsend(stringifier, 'writeObject', object);
}
writeNumber(number) {
- this[_sink].write(dart[dartx.toString](number));
+ this[_sink].write(dart.toString(number));
}
writeString(string) {
this[_sink].write(string);
@@ -1431,7 +1431,7 @@ dart.library('dart/convert', null, /* Imports */[
this.index = 0;
}
writeNumber(number) {
- this.writeAsciiString(dart[dartx.toString](number));
+ this.writeAsciiString(dart.toString(number));
}
writeAsciiString(string) {
for (let i = 0; dart.notNull(i) < dart.notNull(string[dartx.length]); i = dart.notNull(i) + 1) {
« no previous file with comments | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/core.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698