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

Unified Diff: lib/utf/utf_core.dart

Issue 10860071: Continued deletion of frog. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/utf/utf16.dart ('k') | pkg/args/example.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/utf/utf_core.dart
===================================================================
--- lib/utf/utf_core.dart (revision 11091)
+++ lib/utf/utf_core.dart (working copy)
@@ -7,7 +7,7 @@
*/
List<int> stringToCodepoints(String str) {
List<int> codepoints;
- // TODO _is16BitCodeUnit() is used to work around a bug with frog/dartc
+ // TODO _is16BitCodeUnit() is used to work around a bug with dart2js
// (http://code.google.com/p/dart/issues/detail?id=1357). Consider
// removing after this issue is resolved.
if (_is16BitCodeUnit()) {
@@ -22,7 +22,7 @@
* Generate a string from the provided Unicode codepoints.
*/
String codepointsToString(List<int> codepoints) {
- // TODO _is16BitCodeUnit() is used to work around a bug with frog/dartc
+ // TODO _is16BitCodeUnit() is used to work around a bug with dart2js
// (http://code.google.com/p/dart/issues/detail?id=1357). Consider
// removing after this issue is resolved.
if (_is16BitCodeUnit()) {
@@ -38,7 +38,7 @@
* Dart compiled to JS.
*/
bool _test16BitCodeUnit = null;
-// TODO _is16BitCodeUnit() is used to work around a bug with frog/dartc
+// TODO _is16BitCodeUnit() is used to work around a bug with dart2js
// (http://code.google.com/p/dart/issues/detail?id=1357). Consider
// removing after this issue is resolved.
bool _is16BitCodeUnit() {
« no previous file with comments | « lib/utf/utf16.dart ('k') | pkg/args/example.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698