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

Issue 13704017: Make html lists print a nice toString method. (Closed)

Created:
7 years, 8 months ago by Emily Fortuna
Modified:
7 years, 8 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Make html lists print a nice toString method. BUG= Committed: https://code.google.com/p/dart/source/detail?r=21010

Patch Set 1 : #

Patch Set 2 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+655 lines, -0 lines) Patch
M sdk/lib/html/dart2js/html_dart2js.dart View 36 chunks +250 lines, -0 lines 0 comments Download
M sdk/lib/html/dartium/html_dartium.dart View 36 chunks +250 lines, -0 lines 0 comments Download
M sdk/lib/svg/dart2js/svg_dart2js.dart View 6 chunks +42 lines, -0 lines 0 comments Download
M sdk/lib/svg/dartium/svg_dartium.dart View 6 chunks +42 lines, -0 lines 0 comments Download
M sdk/lib/web_sql/dart2js/web_sql_dart2js.dart View 1 chunk +7 lines, -0 lines 0 comments Download
M sdk/lib/web_sql/dartium/web_sql_dartium.dart View 1 chunk +7 lines, -0 lines 0 comments Download
M tests/html/element_test.dart View 1 1 chunk +7 lines, -0 lines 0 comments Download
M tests/html/node_test.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
M tools/dom/src/WrappedList.dart View 1 chunk +7 lines, -0 lines 0 comments Download
M tools/dom/templates/html/impl/impl_Element.darttemplate View 1 3 chunks +20 lines, -0 lines 0 comments Download
M tools/dom/templates/html/impl/impl_Node.darttemplate View 1 chunk +6 lines, -0 lines 0 comments Download
M tools/dom/templates/immutable_list_mixin.darttemplate View 1 chunk +7 lines, -0 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
Emily Fortuna
Fix for https://code.google.com/p/dart/issues/detail?id=9646 "[dart:html] .nodes collection should implement toString" This results in a pretty sizable ...
7 years, 8 months ago (2013-04-05 21:50:18 UTC) #1
Jennifer Messerly
On 2013/04/05 21:50:18, Emily Fortuna wrote: > Fix for https://code.google.com/p/dart/issues/detail?id=9646 "[dart:html] .nodes > collection should ...
7 years, 8 months ago (2013-04-05 22:02:31 UTC) #2
Jennifer Messerly
On 2013/04/05 22:02:31, John Messerly wrote: > On 2013/04/05 21:50:18, Emily Fortuna wrote: > > ...
7 years, 8 months ago (2013-04-05 22:03:57 UTC) #3
blois
Will toString be part of the standard List mixin? If so, then this will go ...
7 years, 8 months ago (2013-04-05 22:05:27 UTC) #4
blois
lgtm Dart2js is smart enough in some cases, but the further you get away from ...
7 years, 8 months ago (2013-04-05 22:08:15 UTC) #5
Jennifer Messerly
On 2013/04/05 22:08:15, blois wrote: > lgtm > > Dart2js is smart enough in some ...
7 years, 8 months ago (2013-04-05 22:12:47 UTC) #6
Jennifer Messerly
On 2013/04/05 22:12:47, John Messerly wrote: > On 2013/04/05 22:08:15, blois wrote: > > lgtm ...
7 years, 8 months ago (2013-04-05 22:13:22 UTC) #7
Emily Fortuna
On 2013/04/05 22:05:27, blois wrote: > Will toString be part of the standard List mixin? ...
7 years, 8 months ago (2013-04-05 22:18:32 UTC) #8
Emily Fortuna
Committed patchset #2 manually as r21010 (presubmit successful).
7 years, 8 months ago (2013-04-05 23:53:47 UTC) #9
sra1
7 years, 8 months ago (2013-04-08 17:00:47 UTC) #10
Message was sent while issue was closed.
I'm seeing a size impact in swarm: +3k

This could be mitigated by having all these new toStrings call the common
collections version that is used by other collections, 

  String toString() => Collections.collectionToString(this);

Powered by Google App Engine
This is Rietveld 408576698