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

Unified Diff: utils/apidoc/html_diff.dart

Issue 11958023: Remove CommentMap from all DartDoc code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « sdk/lib/_internal/dartdoc/test/comment_map_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/html_diff.dart
diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart
index 78388bc16835936908fe1dd8801a8fbb1cbd00b5..776ed1a37cb82c7133cdd4615260b2ba06023bab 100644
--- a/utils/apidoc/html_diff.dart
+++ b/utils/apidoc/html_diff.dart
@@ -65,8 +65,6 @@ class HtmlDiff {
/** A map from `dart:html` types to corresponding `@DomName` types. */
final Map<String, Set<String>> htmlTypesToDom;
- final CommentMap comments;
-
/** If true, then print warning messages. */
final bool _printWarnings;
@@ -90,8 +88,7 @@ class HtmlDiff {
HtmlDiff({bool printWarnings: false}) :
_printWarnings = printWarnings,
htmlToDom = new Map<String, Set<String>>(),
- htmlTypesToDom = new Map<String, Set<String>>(),
- comments = new CommentMap();
+ htmlTypesToDom = new Map<String, Set<String>>();
void warn(String s) {
if (_printWarnings) {
« no previous file with comments | « sdk/lib/_internal/dartdoc/test/comment_map_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698