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

Side by Side Diff: tool/input_sdk/lib/core/core.dart

Issue 1952223006: Update String.fromCharCodes from sdk (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 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
« no previous file with comments | « lib/runtime/dart_sdk.js ('k') | tool/input_sdk/patch/core_patch.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 /** 5 /**
6 * 6 *
7 * Built-in types, collections, 7 * Built-in types, collections,
8 * and other core functionality for every Dart program. 8 * and other core functionality for every Dart program.
9 * 9 *
10 * This library is automatically imported. 10 * This library is automatically imported.
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 * Uri dartlang = Uri.parse('http://dartlang.org/'); 130 * Uri dartlang = Uri.parse('http://dartlang.org/');
131 * 131 *
132 * ## Errors 132 * ## Errors
133 * 133 *
134 * The [Error] class represents the occurrence of an error 134 * The [Error] class represents the occurrence of an error
135 * during runtime. 135 * during runtime.
136 * Subclasses of this class represent specific kinds of errors. 136 * Subclasses of this class represent specific kinds of errors.
137 * 137 *
138 * ## Other documentation 138 * ## Other documentation
139 * 139 *
140 * For more information about how to use the built-in types, refer to 140 * For more information about how to use the built-in types, refer to [Built-in
141 * [Built-in Types](http://www.dartlang.org/docs/dart-up-and-running/contents/ch 02.html#built-in-types) 141 * Types](http://www.dartlang.org/docs/dart-up-and-running/contents/ch02.html#bu ilt-in-types)
142 * in Chapter 2 of 142 * in Chapter 2 of
143 * [Dart: Up and Running](http://www.dartlang.org/docs/dart-up-and-running/). 143 * [Dart: Up and Running](http://www.dartlang.org/docs/dart-up-and-running/).
144 * 144 *
145 * Also, see 145 * Also, see [dart:core - Numbers, Collections, Strings, and
146 * [dart:core - Numbers, Collections, Strings, and More](http://www.dartlang.org /docs/dart-up-and-running/contents/ch03.html#ch03-dartcore---strings-collections -and-more) 146 * More](https://www.dartlang.org/docs/dart-up-and-running/ch03.html#dartcore--- numbers-collections-strings-and-more)
147 * for more coverage of classes in this package. 147 * for more coverage of classes in this package.
148 * 148 *
149 * The 149 * The
150 * [Dart Language Specification](http://www.dartlang.org/docs/spec/) 150 * [Dart Language Specification](http://www.dartlang.org/docs/spec/)
151 * provides technical details. 151 * provides technical details.
152 */ 152 */
153 library dart.core; 153 library dart.core;
154 154
155 import "dart:collection"; 155 import "dart:collection";
156 import "dart:_internal" hide Symbol; 156 import "dart:_internal" hide Symbol;
(...skipping 27 matching lines...) Expand all
184 part "set.dart"; 184 part "set.dart";
185 part "sink.dart"; 185 part "sink.dart";
186 part "stacktrace.dart"; 186 part "stacktrace.dart";
187 part "stopwatch.dart"; 187 part "stopwatch.dart";
188 part "string.dart"; 188 part "string.dart";
189 part "string_buffer.dart"; 189 part "string_buffer.dart";
190 part "string_sink.dart"; 190 part "string_sink.dart";
191 part "symbol.dart"; 191 part "symbol.dart";
192 part "type.dart"; 192 part "type.dart";
193 part "uri.dart"; 193 part "uri.dart";
OLDNEW
« no previous file with comments | « lib/runtime/dart_sdk.js ('k') | tool/input_sdk/patch/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698