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

Unified Diff: pkg/fixnum/lib/src/int32.dart

Issue 12282038: Remove deprecated string features. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 10 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
Index: pkg/fixnum/lib/src/int32.dart
diff --git a/pkg/fixnum/lib/src/int32.dart b/pkg/fixnum/lib/src/int32.dart
index 2aad272b637f77598cbf405fd4f5104eee9b7902..c7804c20623600810ad6fd7a4bc3d1a0fea719f3 100644
--- a/pkg/fixnum/lib/src/int32.dart
+++ b/pkg/fixnum/lib/src/int32.dart
@@ -38,12 +38,12 @@ class int32 implements intx {
static int32 TWO = const int32._internal(2);
// Hex digit char codes
- static const int _CC_0 = 48; // '0'.charCodeAt(0)
- static const int _CC_9 = 57; // '9'.charCodeAt(0)
- static const int _CC_a = 97; // 'a'.charCodeAt(0)
- static const int _CC_z = 122; // 'z'.charCodeAt(0)
- static const int _CC_A = 65; // 'A'.charCodeAt(0)
- static const int _CC_Z = 90; // 'Z'.charCodeAt(0)
+ static const int _CC_0 = 48; // '0'.codeUnitAt(0)
+ static const int _CC_9 = 57; // '9'.codeUnitAt(0)
+ static const int _CC_a = 97; // 'a'.codeUnitAt(0)
+ static const int _CC_z = 122; // 'z'.codeUnitAt(0)
+ static const int _CC_A = 65; // 'A'.codeUnitAt(0)
+ static const int _CC_Z = 90; // 'Z'.codeUnitAt(0)
static int _decodeHex(int c) {
if (c >= _CC_0 && c <= _CC_9) {
@@ -68,10 +68,10 @@ class int32 implements intx {
}
int32 x = ZERO;
for (int i = 0; i < s.length; i++) {
- int c = s.charCodeAt(i);
+ int c = s.codeUnitAt(i);
int digit = _decodeHex(c);
if (digit < 0 || digit >= radix) {
- throw new Exception("Non-radix char code: $c");
+ throw new Exception("Non-radix code unit: $c");
}
x = (x * radix) + digit;
}

Powered by Google App Engine
This is Rietveld 408576698