| 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 | 10 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 <template if="{{ function.name != function.vmName }}"> | 104 <template if="{{ function.name != function.vmName }}"> |
| 105 <div class="memberItem"> | 105 <div class="memberItem"> |
| 106 <div class="memberName">vm name</div> | 106 <div class="memberName">vm name</div> |
| 107 <div class="memberValue">{{ function.vmName }}</div> | 107 <div class="memberValue">{{ function.vmName }}</div> |
| 108 </div> | 108 </div> |
| 109 </template> | 109 </template> |
| 110 </div> | 110 </div> |
| 111 </div> | 111 </div> |
| 112 | 112 |
| 113 <hr> | 113 <hr> |
| 114 <script-inset script="{{ function['script'] }}" pos="{{ function['tokenPos']
}}" endPos="{{ function['endTokenPos'] }}"> | 114 <script-inset script="{{ function['script'] }}" |
| 115 startPos="{{ function['tokenPos'] }}" |
| 116 endPos="{{ function['endTokenPos'] }}"> |
| 115 </script-inset> | 117 </script-inset> |
| 116 | 118 |
| 117 <br> | 119 <br> |
| 118 </template> | 120 </template> |
| 119 </polymer-element> | 121 </polymer-element> |
| 120 | 122 |
| 121 <script type="application/dart" src="function_view.dart"></script> | 123 <script type="application/dart" src="function_view.dart"></script> |
| OLD | NEW |