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

Side by Side Diff: runtime/lib/internal_patch.dart

Issue 2708663002: Fix more lint style issues in runtime patches. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « runtime/lib/compact_hash.dart ('k') | runtime/lib/mirrors_impl.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 import 'dart:core' hide Symbol;
6
5 @patch List makeListFixedLength(List growableList) 7 @patch List makeListFixedLength(List growableList)
6 native "Internal_makeListFixedLength"; 8 native "Internal_makeListFixedLength";
7 9
8 @patch List makeFixedListUnmodifiable(List fixedLengthList) 10 @patch List makeFixedListUnmodifiable(List fixedLengthList)
9 native "Internal_makeFixedListUnmodifiable"; 11 native "Internal_makeFixedListUnmodifiable";
10 12
11 class VMLibraryHooks { 13 class VMLibraryHooks {
12 // Example: "dart:isolate _Timer._factory" 14 // Example: "dart:isolate _Timer._factory"
13 static var timerFactory; 15 static var timerFactory;
14 16
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 i >= srcStart; i--, j--) { 58 i >= srcStart; i--, j--) {
57 dst[j] = src[i]; 59 dst[j] = src[i];
58 } 60 }
59 } else { 61 } else {
60 for (int i = srcStart, j = dstStart; i < srcStart + count; i++, j++) { 62 for (int i = srcStart, j = dstStart; i < srcStart + count; i++, j++) {
61 dst[j] = src[i]; 63 dst[j] = src[i];
62 } 64 }
63 } 65 }
64 } 66 }
65 } 67 }
OLDNEW
« no previous file with comments | « runtime/lib/compact_hash.dart ('k') | runtime/lib/mirrors_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698