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

Side by Side Diff: packages/dart_style/test/regression/0400/0467.unit

Issue 1521693002: Roll Observatory deps (charted -> ^0.3.0) (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 >>>
2 class MyElement extends PolymerElement {
3 MyElement.created() : super.created();
4
5 @reflectable
6 void showNodesAndEntryPoints([_, __]) {
7 addAll(
8 'nodesAndEntryPoints',
9 new PolymerDom(
10 this).children.map((child) => '${child.outerHtml} ------> '
11 '${(new PolymerDom(child).getDestinationInsertionPoints()[0] as Elem ent).outerHtml}'));
12 }
13 }
14 <<<
15 class MyElement extends PolymerElement {
16 MyElement.created() : super.created();
17
18 @reflectable
19 void showNodesAndEntryPoints([_, __]) {
20 addAll(
21 'nodesAndEntryPoints',
22 new PolymerDom(this).children.map((child) =>
23 '${child.outerHtml} ------> '
24 '${(new PolymerDom(child).getDestinationInsertionPoints()[0] as Elem ent).outerHtml}'));
25 }
26 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0400/0466.unit ('k') | packages/dart_style/test/regression/0400/0474.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698