| OLD | NEW |
| 1 <!DOCTYPE html><html><head> | 1 <!DOCTYPE html><html><head> |
| 2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
| 3 <title>Dart VM Observatory</title> | 3 <title>Dart VM Observatory</title> |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 | 10 |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 </template> | 923 </template> |
| 924 | 924 |
| 925 <template if="{{ (isType(ref.serviceType)) }}"> | 925 <template if="{{ (isType(ref.serviceType)) }}"> |
| 926 <a on-click="{{ goto }}" href="{{ url }}">{{ ref['user_name'] }}</a> | 926 <a on-click="{{ goto }}" href="{{ url }}">{{ ref['user_name'] }}</a> |
| 927 </template> | 927 </template> |
| 928 | 928 |
| 929 <template if="{{ isInstance(ref.serviceType) && | 929 <template if="{{ isInstance(ref.serviceType) && |
| 930 ref['closureFunc'] != null}}"> | 930 ref['closureFunc'] != null}}"> |
| 931 <a on-click="{{ goto }}" href="{{ url }}"> | 931 <a on-click="{{ goto }}" href="{{ url }}"> |
| 932 <!-- TODO(turnidge): Switch this to fully-qualified function --> | 932 <!-- TODO(turnidge): Switch this to fully-qualified function --> |
| 933 {{ ref['closureFunc']['user_name'] }} | 933 {{ ref['closureFunc'].name }} |
| 934 </a> | 934 </a> |
| 935 </template> | 935 </template> |
| 936 | 936 |
| 937 <template if="{{ isInstance(ref.serviceType) && | 937 <template if="{{ isInstance(ref.serviceType) && |
| 938 ref['closureFunc'] == null}}"> | 938 ref['closureFunc'] == null}}"> |
| 939 <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</e
m></a> | 939 <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</e
m></a> |
| 940 <curly-block callback="{{ expander() }}"> | 940 <curly-block callback="{{ expander() }}"> |
| 941 <div class="memberList"> | 941 <div class="memberList"> |
| 942 <template repeat="{{ field in ref['fields'] }}"> | 942 <template repeat="{{ field in ref['fields'] }}"> |
| 943 <div class="memberItem"> | 943 <div class="memberItem"> |
| (...skipping 14683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15627 } | 15627 } |
| 15628 | 15628 |
| 15629 .break-wrap { | 15629 .break-wrap { |
| 15630 word-wrap: break-word; | 15630 word-wrap: break-word; |
| 15631 } | 15631 } |
| 15632 </style> | 15632 </style> |
| 15633 <nav-bar> | 15633 <nav-bar> |
| 15634 <top-nav-menu></top-nav-menu> | 15634 <top-nav-menu></top-nav-menu> |
| 15635 <isolate-nav-menu isolate="{{ script.isolate }}"> | 15635 <isolate-nav-menu isolate="{{ script.isolate }}"> |
| 15636 </isolate-nav-menu> | 15636 </isolate-nav-menu> |
| 15637 <nav-menu link="{{ script.owningLibrary.link }}" anchor="{{ script.owningLib
rary.name }}"></nav-menu> |
| 15637 <nav-menu link="{{ script.link }}" anchor="{{ script.name }}" last="{{ true
}}"></nav-menu> | 15638 <nav-menu link="{{ script.link }}" anchor="{{ script.name }}" last="{{ true
}}"></nav-menu> |
| 15638 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></nav
-refresh> | 15639 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></nav
-refresh> |
| 15639 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 15640 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 15640 <nav-control></nav-control> | 15641 <nav-control></nav-control> |
| 15641 </nav-bar> | 15642 </nav-bar> |
| 15642 | 15643 |
| 15643 <template if="{{ args['pos'] == null }}"> | 15644 <template if="{{ args['pos'] == null }}"> |
| 15644 <script-inset id="scriptInset" script="{{ script }}"> | 15645 <script-inset id="scriptInset" script="{{ script }}"> |
| 15645 <h1>script {{ script.name }}</h1> | 15646 <h1>script {{ script.name }}</h1> |
| 15646 </script-inset> | 15647 </script-inset> |
| (...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17642 </style> | 17643 </style> |
| 17643 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> | 17644 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> |
| 17644 </template> | 17645 </template> |
| 17645 </polymer-element> | 17646 </polymer-element> |
| 17646 | 17647 |
| 17647 | 17648 |
| 17648 | 17649 |
| 17649 <observatory-application></observatory-application> | 17650 <observatory-application></observatory-application> |
| 17650 | 17651 |
| 17651 <script src="index.html_bootstrap.dart.js" async=""></script></body></html> | 17652 <script src="index.html_bootstrap.dart.js" async=""></script></body></html> |
| OLD | NEW |