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

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

Issue 2150313003: Add JSNative utility class with static methods methods to efficiently manipulate typed JSInterop ob… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix analyzer warnings in js_util_test, skip js_util_test in csp mode and baseline expectations for … Created 4 years, 4 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
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 categories: "Client,Server", 109 categories: "Client,Server",
110 maturity: Maturity.STABLE, 110 maturity: Maturity.STABLE,
111 dart2jsPatchPath: "_internal/js_runtime/lib/isolate_patch.dart"), 111 dart2jsPatchPath: "_internal/js_runtime/lib/isolate_patch.dart"),
112 112
113 "js": const LibraryInfo( 113 "js": const LibraryInfo(
114 "js/dartium/js_dartium.dart", 114 "js/dartium/js_dartium.dart",
115 categories: "Client", 115 categories: "Client",
116 maturity: Maturity.STABLE, 116 maturity: Maturity.STABLE,
117 dart2jsPath: "js/dart2js/js_dart2js.dart"), 117 dart2jsPath: "js/dart2js/js_dart2js.dart"),
118 118
119 "js_util": const LibraryInfo(
120 "js_util/dartium/js_util_dartium.dart",
121 categories: "Client",
122 maturity: Maturity.STABLE,
123 dart2jsPath: "js_util/dart2js/js_util_dart2js.dart"),
124
119 "math": const LibraryInfo( 125 "math": const LibraryInfo(
120 "math/math.dart", 126 "math/math.dart",
121 categories: "Client,Server,Embedded", 127 categories: "Client,Server,Embedded",
122 maturity: Maturity.STABLE, 128 maturity: Maturity.STABLE,
123 dart2jsPatchPath: "_internal/js_runtime/lib/math_patch.dart"), 129 dart2jsPatchPath: "_internal/js_runtime/lib/math_patch.dart"),
124 130
125 "mirrors": const LibraryInfo( 131 "mirrors": const LibraryInfo(
126 "mirrors/mirrors.dart", 132 "mirrors/mirrors.dart",
127 categories: "Client,Server", 133 categories: "Client,Server",
128 maturity: Maturity.UNSTABLE, 134 maturity: Maturity.UNSTABLE,
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 static const Maturity STABLE = const Maturity(4, "Stable", 377 static const Maturity STABLE = const Maturity(4, "Stable",
372 "The library is stable. API backwards-compatibility is guaranteed.\n" 378 "The library is stable. API backwards-compatibility is guaranteed.\n"
373 "However implementation details might change."); 379 "However implementation details might change.");
374 380
375 static const Maturity LOCKED = const Maturity(5, "Locked", 381 static const Maturity LOCKED = const Maturity(5, "Locked",
376 "This library will not change except when serious bugs are encountered."); 382 "This library will not change except when serious bugs are encountered.");
377 383
378 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 384 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
379 "The maturity for this library has not been specified."); 385 "The maturity for this library has not been specified.");
380 } 386 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698