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

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

Issue 10919147: Move dart:web to pkg:htmlescape. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | lib/web/web.dart » ('j') | no next file with comments »
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 implementation: true, 68 implementation: true,
69 documented: false, 69 documented: false,
70 platforms: VM_PLATFORM), 70 platforms: VM_PLATFORM),
71 71
72 "uri": const LibraryInfo( 72 "uri": const LibraryInfo(
73 "uri/uri.dart"), 73 "uri/uri.dart"),
74 74
75 "utf": const LibraryInfo( 75 "utf": const LibraryInfo(
76 "utf/utf.dart"), 76 "utf/utf.dart"),
77 77
78 "web": const LibraryInfo(
79 "web/web.dart"),
80
81 "_js_helper": const LibraryInfo( 78 "_js_helper": const LibraryInfo(
82 "compiler/implementation/lib/js_helper.dart", 79 "compiler/implementation/lib/js_helper.dart",
83 category: "Internal", 80 category: "Internal",
84 documented: false, 81 documented: false,
85 platforms: DART2JS_PLATFORM), 82 platforms: DART2JS_PLATFORM),
86 83
87 "_interceptors": const LibraryInfo( 84 "_interceptors": const LibraryInfo(
88 "compiler/implementation/lib/interceptors.dart", 85 "compiler/implementation/lib/interceptors.dart",
89 category: "Internal", 86 category: "Internal",
90 documented: false, 87 documented: false,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 this.category = "Shared", 142 this.category = "Shared",
146 this.dart2jsPath, 143 this.dart2jsPath,
147 this.dart2jsPatchPath, 144 this.dart2jsPatchPath,
148 this.implementation = false, 145 this.implementation = false,
149 this.documented = true, 146 this.documented = true,
150 this.platforms = DART2JS_PLATFORM | VM_PLATFORM]); 147 this.platforms = DART2JS_PLATFORM | VM_PLATFORM]);
151 148
152 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; 149 bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0;
153 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; 150 bool get isVmLibrary => (platforms & VM_PLATFORM) != 0;
154 } 151 }
OLDNEW
« no previous file with comments | « no previous file | lib/web/web.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698