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

Side by Side Diff: utils/apidoc/lib/metadata.dart

Issue 690103004: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « utils/apidoc/html_diff.dart ('k') | utils/compiler/compiler.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library metadata; 1 library metadata;
2 2
3 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/source_mirror s.dart'; 3 import '../../../pkg/compiler/lib/src/mirrors/source_mirrors.dart';
4 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util. dart'; 4 import '../../../pkg/compiler/lib/src/mirrors/mirrors_util.dart';
5 5
6 /// Returns the metadata for the given string or null if not found. 6 /// Returns the metadata for the given string or null if not found.
7 InstanceMirror findMetadata(List<InstanceMirror> metadataList, String find) { 7 InstanceMirror findMetadata(List<InstanceMirror> metadataList, String find) {
8 return metadataList.firstWhere( 8 return metadataList.firstWhere(
9 (metadata) { 9 (metadata) {
10 if (metadata is TypeInstanceMirror) { 10 if (metadata is TypeInstanceMirror) {
11 return nameOf(metadata.representedType) == find; 11 return nameOf(metadata.representedType) == find;
12 } 12 }
13 return nameOf(metadata.type) == find; 13 return nameOf(metadata.type) == find;
14 }, orElse: () => null); 14 }, orElse: () => null);
15 } 15 }
OLDNEW
« no previous file with comments | « utils/apidoc/html_diff.dart ('k') | utils/compiler/compiler.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698