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

Unified Diff: utils/apidoc/lib/metadata.dart

Issue 12035057: First half of the new HTML json docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed unneeded file. 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 | « utils/apidoc/html_diff.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/lib/metadata.dart
diff --git a/utils/apidoc/lib/metadata.dart b/utils/apidoc/lib/metadata.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e042d004423ca9ba8ff40081d6abb0e6b899b70d
--- /dev/null
+++ b/utils/apidoc/lib/metadata.dart
@@ -0,0 +1,14 @@
+library metadata;
+
+import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart';
+
+/// Returns the metadata for the given string or null if not found.
+InstanceMirror findMetadata(List<InstanceMirror> metadataList, String find) {
+ return metadataList.firstMatching(
+ (metadata) {
+ if (metadata is TypeInstanceMirror) {
+ return metadata.representedType.simpleName == find;
+ }
+ return metadata.type.simpleName == find;
+ }, orElse: () => null);
+}
« no previous file with comments | « utils/apidoc/html_diff.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698