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

Side by Side Diff: pkg/analyzer/doc/tasks.html

Issue 1817913002: Generate the task model graph as an HTML file and put it in the doc directory. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Copy support files into local directory Created 4 years, 8 months 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
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 <!DOCTYPE html>
2 // for details. All rights reserved. Use of this source code is governed by a 2 <html>
3 // BSD-style license that can be found in the LICENSE file. 3 <head>
4 // 4 <title>Analysis Task Dependency Graph</title>
5 // This file has been automatically generated. Please do not edit it manually. 5 <link rel="stylesheet" href="support/style.css">
6 // To regenerate the file, use the script 6 <script src="support/viz.js"></script>
7 // "pkg/analyzer/tool/task_dependency_graph/generate.dart". 7 <script type="application/dart" src="support/web_app.dart.js"></script>
8 // 8 <script src="support/dart.js"></script>
9 // To render this graph using Graphviz (www.graphviz.org) use the command: 9 </head>
10 // "dot tasks.dot -Tpdf -O". 10 <body>
11 <button id="zoomBtn">Zoom</button>
12 <script type="text/vnd.graphviz" id="dot">
11 digraph G { 13 digraph G {
14 tooltip="Analysis Task Dependency Graph";
15 node [fontname=Helvetica];
16 edge [fontname=Helvetica, fontcolor=gray];
12 BUILD_DIRECTIVES_ERRORS -> LibraryUnitErrorsTask 17 BUILD_DIRECTIVES_ERRORS -> LibraryUnitErrorsTask
13 BUILD_DIRECTIVES_ERRORS [shape=box] 18 BUILD_DIRECTIVES_ERRORS [shape=box]
14 BUILD_LIBRARY_ERRORS -> LibraryUnitErrorsTask 19 BUILD_LIBRARY_ERRORS -> LibraryUnitErrorsTask
15 BUILD_LIBRARY_ERRORS [shape=box] 20 BUILD_LIBRARY_ERRORS [shape=box]
16 BuildCompilationUnitElementTask -> COMPILATION_UNIT_CONSTANTS 21 BuildCompilationUnitElementTask -> COMPILATION_UNIT_CONSTANTS
17 BuildCompilationUnitElementTask -> COMPILATION_UNIT_ELEMENT 22 BuildCompilationUnitElementTask -> COMPILATION_UNIT_ELEMENT
18 BuildCompilationUnitElementTask -> CREATED_RESOLVED_UNIT1 23 BuildCompilationUnitElementTask -> CREATED_RESOLVED_UNIT1
19 BuildCompilationUnitElementTask -> RESOLVED_UNIT1 24 BuildCompilationUnitElementTask -> RESOLVED_UNIT1
20 BuildDirectiveElementsTask -> BUILD_DIRECTIVES_ERRORS 25 BuildDirectiveElementsTask -> BUILD_DIRECTIVES_ERRORS
21 BuildDirectiveElementsTask -> LIBRARY_ELEMENT2 26 BuildDirectiveElementsTask -> LIBRARY_ELEMENT2
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 VARIABLE_REFERENCE_ERRORS -> LibraryUnitErrorsTask 328 VARIABLE_REFERENCE_ERRORS -> LibraryUnitErrorsTask
324 VARIABLE_REFERENCE_ERRORS [shape=box] 329 VARIABLE_REFERENCE_ERRORS [shape=box]
325 VERIFY_ERRORS -> LibraryUnitErrorsTask 330 VERIFY_ERRORS -> LibraryUnitErrorsTask
326 VERIFY_ERRORS [shape=box] 331 VERIFY_ERRORS [shape=box]
327 VerifyUnitTask -> VERIFY_ERRORS 332 VerifyUnitTask -> VERIFY_ERRORS
328 dartErrorsForSource -> DartErrorsTask 333 dartErrorsForSource -> DartErrorsTask
329 dartErrorsForSource [shape=hexagon] 334 dartErrorsForSource [shape=hexagon]
330 dartErrorsForUnit -> DartErrorsTask 335 dartErrorsForUnit -> DartErrorsTask
331 dartErrorsForUnit [shape=hexagon] 336 dartErrorsForUnit [shape=hexagon]
332 } 337 }
338 </script>
339 </body>
340 </html>
OLDNEW
« no previous file with comments | « pkg/analyzer/doc/support/web_app.dart.js ('k') | pkg/analyzer/tool/task_dependency_graph/generate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698