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

Unified Diff: utils/apidoc/apidoc.dart

Issue 12208017: Removed some cruft from ApiDoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « tools/dom/templates/html/impl/impl_MediaStream.darttemplate ('k') | utils/apidoc/html_diff.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/apidoc.dart
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
index bf6324f3ec38cccd1aaaf45f796d9159ce105dd8..36ef96bdbe7d493c7c108919a49cea1d21ead90b 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -258,16 +258,6 @@ class Apidoc extends doc.Dartdoc {
super.docLibrary(library);
}
- /** Override definition from parent class to strip out annotation tags. */
- doc.DocComment createDocComment(String text,
- [ClassMirror inheritedFrom]) {
- String strippedText =
- text.replaceAll(new RegExp("@([a-zA-Z]+) ([^;]+)(?:;|\$)"),
- '').trim();
- if (strippedText.isEmpty) return null;
- return super.createDocComment(strippedText, inheritedFrom);
- }
-
doc.DocComment getLibraryComment(LibraryMirror library) {
return super.getLibraryComment(library);
}
« no previous file with comments | « tools/dom/templates/html/impl/impl_MediaStream.darttemplate ('k') | utils/apidoc/html_diff.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698