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

Side by Side Diff: sdk/lib/_internal/libraries.dart

Issue 14732003: Implement Model-Driven-Views spec for Dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: small fix Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | sdk/lib/observe/list_diff.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library libraries; 5 library libraries;
6 6
7 /** 7 /**
8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js 8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js
9 */ 9 */
10 const int DART2JS_PLATFORM = 1; 10 const int DART2JS_PLATFORM = 1;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "mirrors/mirrors.dart", 79 "mirrors/mirrors.dart",
80 dart2jsPatchPath: "_internal/compiler/implementation/lib/mirrors_patch.dar t"), 80 dart2jsPatchPath: "_internal/compiler/implementation/lib/mirrors_patch.dar t"),
81 81
82 "nativewrappers": const LibraryInfo( 82 "nativewrappers": const LibraryInfo(
83 "html/dartium/nativewrappers.dart", 83 "html/dartium/nativewrappers.dart",
84 category: "Client", 84 category: "Client",
85 implementation: true, 85 implementation: true,
86 documented: false, 86 documented: false,
87 platforms: VM_PLATFORM), 87 platforms: VM_PLATFORM),
88 88
89 "observe": const LibraryInfo(
90 "observe/observe.dart",
91 category: "Client"),
92
89 "typed_data": const LibraryInfo( 93 "typed_data": const LibraryInfo(
90 "typed_data/typed_data.dart", 94 "typed_data/typed_data.dart",
91 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), 95 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"),
92 96
93 "svg": const LibraryInfo( 97 "svg": const LibraryInfo(
94 "svg/dartium/svg_dartium.dart", 98 "svg/dartium/svg_dartium.dart",
95 category: "Client", 99 category: "Client",
96 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), 100 dart2jsPath: "svg/dart2js/svg_dart2js.dart"),
97 101
98 "uri": const LibraryInfo( 102 "uri": const LibraryInfo(
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 this.category: "Shared", 207 this.category: "Shared",
204 this.dart2jsPath, 208 this.dart2jsPath,
205 this.dart2jsPatchPath, 209 this.dart2jsPatchPath,
206 this.implementation: false, 210 this.implementation: false,
207 this.documented: true, 211 this.documented: true,
208 this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); 212 this.platforms: DART2JS_PLATFORM | VM_PLATFORM});
209 213
210 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; 214 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0;
211 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; 215 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0;
212 } 216 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | sdk/lib/observe/list_diff.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698