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

Unified Diff: README.md

Issue 1419903003: merge verify_deps into debug_info (Closed) Base URL: git@github.com:dart-lang/dart2js_info.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « CHANGELOG.md ('k') | bin/debug_info.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
diff --git a/README.md b/README.md
index b2f53b740a757fc3765fec344deda594389686b9..811877e3d248c0811f8b627ae76205d9dba3d216 100644
--- a/README.md
+++ b/README.md
@@ -81,10 +81,6 @@ The following tools are a available today:
`live_code_size_analysis` can correlate that with the `.info.json`, so you
determine why code that is not used is being included in your app.
- * [`verify_deps`][verify_deps]: a tool that verifies that all elements are
- reachable from the program's entrypoint. If there are unreachable elements,
- this indicates that the dependency information is incomplete.
-
Next we describe in detail how to use each of these tools.
### Code deps tool
@@ -263,23 +259,6 @@ dart2js_info_coverage_log_server main.dart.js
dart2js_info_live_code_size_analysis main.dart.info.json main.dart.coverage.json
```
-### Verifying dependencies
-
-Coverage of dependency information may be incomplete. If there are elements that
-are live in the output that are unreachable through dependencies from the
-program's entrypoint, then we have incomplete dependency information. Note,
-however, that all elements may be reachable from the entrypoint even if there
-is missing dependency information. In order to verify that all elements are
-reachable from the app's entrypoint, simply run the tool as so:
-
-```bash
-dart2js_info_verify_deps foo.info.json
-```
-
-If all elements are reachable from the entrypoint, then the tool will return
-with exitcode 0. Otherwise, the tool will output the list of all functions that
-are not reachable from the entrypoint and return with exitcode 1.
-
## Code location, features and bugs
This package is developed in [github][repo]. Please file feature requests and
@@ -292,5 +271,4 @@ bugs at the [issue tracker][tracker].
[coverage]: https://github.com/dart-lang/dart2js_info/blob/master/bin/coverage_log_server.dart
[live]: https://github.com/dart-lang/dart2js_info/blob/master/bin/live_code_size_analysis.dart
[function_analysis]: https://github.com/dart-lang/dart2js_info/blob/master/bin/function_size_analysis.dart
-[verify_deps]: https://github.com/dart-lang/dart2js_info/blob/master/bin/verify_deps.dart
[AllInfo]: http://dart-lang.github.io/dart2js_info/doc/api/dart2js_info.info/AllInfo-class.html
« no previous file with comments | « CHANGELOG.md ('k') | bin/debug_info.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698