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

Unified Diff: lib/compiler/implementation/lib/coreimpl_patch.dart

Issue 10905305: Patch refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased. Created 8 years, 2 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: lib/compiler/implementation/lib/coreimpl_patch.dart
diff --git a/lib/compiler/implementation/lib/coreimpl_patch.dart b/lib/compiler/implementation/lib/coreimpl_patch.dart
index 24ee7af9151c4f243ec9f1794035f89a4804a5ea..124c48e53062c185dd880c0df897ec0fae0cfe09 100644
--- a/lib/compiler/implementation/lib/coreimpl_patch.dart
+++ b/lib/compiler/implementation/lib/coreimpl_patch.dart
@@ -8,7 +8,7 @@
// TODO(ager): Split out into date_patch.dart and allow #source
// in patch files?
patch class StringImplementation {
- patch static _fromCharCodes(List<int> charCodes) {
+ patch static String _fromCharCodes(List<int> charCodes) {
checkNull(charCodes);
if (!isJsArray(charCodes)) {
if (charCodes is !List) throw new ArgumentError(charCodes);

Powered by Google App Engine
This is Rietveld 408576698