| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
| 3 <link rel="import" href="code_ref.html"> | 3 <link rel="import" href="code_ref.html"> |
| 4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="library_ref.html"> | 5 <link rel="import" href="library_ref.html"> |
| 6 <link rel="import" href="observatory_element.html"> | 6 <link rel="import" href="observatory_element.html"> |
| 7 <link rel="import" href="nav_bar.html"> | 7 <link rel="import" href="nav_bar.html"> |
| 8 <link rel="import" href="script_inset.html"> | 8 <link rel="import" href="script_inset.html"> |
| 9 <link rel="import" href="script_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
| 10 <link rel="import" href="view_footer.html"> | 10 <link rel="import" href="view_footer.html"> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 <div class="memberName">script</div> | 47 <div class="memberName">script</div> |
| 48 <div class="memberValue"> | 48 <div class="memberValue"> |
| 49 <source-link location="{{ function.location }}"></source-link> | 49 <source-link location="{{ function.location }}"></source-link> |
| 50 </div> | 50 </div> |
| 51 </div> | 51 </div> |
| 52 | 52 |
| 53 <div class="memberItem"> </div> | 53 <div class="memberItem"> </div> |
| 54 | 54 |
| 55 <template if="{{ function.code != null }}"> | 55 <template if="{{ function.code != null }}"> |
| 56 <div class="memberItem"> | 56 <div class="memberItem"> |
| 57 <div class="memberName">optimized code</div> | 57 <div class="memberName">current code</div> |
| 58 <div class="memberValue"> | 58 <div class="memberValue"> |
| 59 <code-ref ref="{{ function.code }}"></code-ref> | 59 <code-ref ref="{{ function.code }}"></code-ref> |
| 60 </div> | 60 </div> |
| 61 </div> | 61 </div> |
| 62 </template> | 62 </template> |
| 63 <template if="{{ function.unoptimizedCode != null }}"> | 63 <template if="{{ function.unoptimizedCode != null }}"> |
| 64 <div class="memberItem"> | 64 <div class="memberItem"> |
| 65 <div class="memberName">unoptimized code</div> | 65 <div class="memberName">unoptimized code</div> |
| 66 <div class="memberValue"> | 66 <div class="memberValue"> |
| 67 <code-ref ref="{{ function.unoptimizedCode }}"></code-ref> | 67 <code-ref ref="{{ function.unoptimizedCode }}"></code-ref> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 97 <div class="content-centered-big"> | 97 <div class="content-centered-big"> |
| 98 <hr> | 98 <hr> |
| 99 <source-inset location="{{ function.location }}"></source-inset> | 99 <source-inset location="{{ function.location }}"></source-inset> |
| 100 </div> | 100 </div> |
| 101 | 101 |
| 102 <view-footer></view-footer> | 102 <view-footer></view-footer> |
| 103 </template> | 103 </template> |
| 104 </polymer-element> | 104 </polymer-element> |
| 105 | 105 |
| 106 <script type="application/dart" src="function_view.dart"></script> | 106 <script type="application/dart" src="function_view.dart"></script> |
| OLD | NEW |