OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Analysis Task Dependency Graph</title> | 4 <title>Analysis Task Dependency Graph</title> |
5 <link rel="stylesheet" href="support/style.css"> | 5 <link rel="stylesheet" href="support/style.css"> |
6 <script src="support/viz.js"></script> | 6 <script src="support/viz.js"></script> |
7 <script type="application/dart" src="support/web_app.dart.js"></script> | 7 <script type="application/dart" src="support/web_app.dart.js"></script> |
8 <script src="support/dart.js"></script> | 8 <script src="support/dart.js"></script> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 LIBRARY_UNIT_ERRORS -> dartErrorsForUnit | 187 LIBRARY_UNIT_ERRORS -> dartErrorsForUnit |
188 LIBRARY_UNIT_ERRORS [shape=box] | 188 LIBRARY_UNIT_ERRORS [shape=box] |
189 LINE_INFO -> DartErrorsTask | 189 LINE_INFO -> DartErrorsTask |
190 LINE_INFO -> ParseDartTask | 190 LINE_INFO -> ParseDartTask |
191 LINE_INFO [shape=box] | 191 LINE_INFO [shape=box] |
192 LINTS -> LibraryUnitErrorsTask | 192 LINTS -> LibraryUnitErrorsTask |
193 LINTS [shape=box] | 193 LINTS [shape=box] |
194 LibraryErrorsReadyTask -> LIBRARY_ERRORS_READY | 194 LibraryErrorsReadyTask -> LIBRARY_ERRORS_READY |
195 LibraryUnitErrorsTask -> LIBRARY_UNIT_ERRORS | 195 LibraryUnitErrorsTask -> LIBRARY_UNIT_ERRORS |
196 MODIFICATION_TIME -> BuildDirectiveElementsTask | 196 MODIFICATION_TIME -> BuildDirectiveElementsTask |
| 197 MODIFICATION_TIME -> BuildLibraryElementTask |
197 MODIFICATION_TIME -> ParseDartTask | 198 MODIFICATION_TIME -> ParseDartTask |
198 MODIFICATION_TIME -> ScanDartTask | 199 MODIFICATION_TIME -> ScanDartTask |
199 MODIFICATION_TIME -> VerifyUnitTask | 200 MODIFICATION_TIME -> VerifyUnitTask |
200 MODIFICATION_TIME [shape=box] | 201 MODIFICATION_TIME [shape=box] |
201 PARSED_UNIT -> BuildCompilationUnitElementTask | 202 PARSED_UNIT -> BuildCompilationUnitElementTask |
202 PARSED_UNIT [shape=box] | 203 PARSED_UNIT [shape=box] |
203 PARSE_ERRORS -> dartErrorsForSource | 204 PARSE_ERRORS -> dartErrorsForSource |
204 PARSE_ERRORS [shape=box] | 205 PARSE_ERRORS [shape=box] |
205 PENDING_ERRORS -> VerifyUnitTask | 206 PENDING_ERRORS -> VerifyUnitTask |
206 PENDING_ERRORS [shape=box] | 207 PENDING_ERRORS [shape=box] |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 VERIFY_ERRORS [shape=box] | 374 VERIFY_ERRORS [shape=box] |
374 VerifyUnitTask -> VERIFY_ERRORS | 375 VerifyUnitTask -> VERIFY_ERRORS |
375 dartErrorsForSource -> DartErrorsTask | 376 dartErrorsForSource -> DartErrorsTask |
376 dartErrorsForSource [shape=hexagon] | 377 dartErrorsForSource [shape=hexagon] |
377 dartErrorsForUnit -> DartErrorsTask | 378 dartErrorsForUnit -> DartErrorsTask |
378 dartErrorsForUnit [shape=hexagon] | 379 dartErrorsForUnit [shape=hexagon] |
379 } | 380 } |
380 </script> | 381 </script> |
381 </body> | 382 </body> |
382 </html> | 383 </html> |
OLD | NEW |