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

Unified Diff: test/dart_codegen/expect/core/string.dart

Issue 977613002: Make int and double nullable by default (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: actually upload changes Created 5 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: test/dart_codegen/expect/core/string.dart
diff --git a/test/dart_codegen/expect/core/string.dart b/test/dart_codegen/expect/core/string.dart
index e521d8bacf1b2841df3dc82c35275e5f4118715c..c5afb859bf8b91721376a810df766f1f5a99389a 100644
--- a/test/dart_codegen/expect/core/string.dart
+++ b/test/dart_codegen/expect/core/string.dart
@@ -73,7 +73,7 @@ if (index > 0 && index < string.length && _isLeadSurrogate(string.codeUnitAt(ind
throw new ArgumentError('Index inside surrogate pair: $index');
}
}
- int get rawIndex => ((__x14) => DDC$RT.cast(__x14, dynamic, int, "CastGeneral", """line 665, column 24 of dart:core/string.dart: """, __x14 is int, true))((_position != _nextPosition) ? _position : null);
+ int get rawIndex => ((__x12) => DDC$RT.cast(__x12, dynamic, int, "CastGeneral", """line 665, column 24 of dart:core/string.dart: """, __x12 is int, true))((_position != _nextPosition) ? _position : null);
void set rawIndex(int rawIndex) {
RangeError.checkValidIndex(rawIndex, string, "rawIndex");
reset(rawIndex);

Powered by Google App Engine
This is Rietveld 408576698