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

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

Issue 1591573004: - Fix Isolate.spawn when running from snapshot. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Cleanup. Created 4 years, 11 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/bin/platform_patch.dart ('k') | runtime/lib/isolate.cc » ('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 patch List makeListFixedLength(List growableList) 5 patch List makeListFixedLength(List growableList)
6 native "Internal_makeListFixedLength"; 6 native "Internal_makeListFixedLength";
7 7
8 patch List makeFixedListUnmodifiable(List fixedLengthList) 8 patch List makeFixedListUnmodifiable(List fixedLengthList)
9 native "Internal_makeFixedListUnmodifiable"; 9 native "Internal_makeFixedListUnmodifiable";
10 10
(...skipping 10 matching lines...) Expand all
21 21
22 // Implementation of Resource.readAsBytes. 22 // Implementation of Resource.readAsBytes.
23 static var resourceReadAsBytes; 23 static var resourceReadAsBytes;
24 24
25 // Implementation of package root/map provision. 25 // Implementation of package root/map provision.
26 static var packageRootString; 26 static var packageRootString;
27 static var packageConfigString; 27 static var packageConfigString;
28 static var packageRootUriFuture; 28 static var packageRootUriFuture;
29 static var packageConfigUriFuture; 29 static var packageConfigUriFuture;
30 static var resolvePackageUriFuture; 30 static var resolvePackageUriFuture;
31
32 static var platformScript;
31 } 33 }
32 34
33 patch class CodeUnits { 35 patch class CodeUnits {
34 static final int cid = ClassID.getID(new CodeUnits("")); 36 static final int cid = ClassID.getID(new CodeUnits(""));
35 } 37 }
36 38
37 final bool is64Bit = _inquireIs64Bit(); 39 final bool is64Bit = _inquireIs64Bit();
38 40
39 bool _inquireIs64Bit() native "Internal_inquireIs64Bit"; 41 bool _inquireIs64Bit() native "Internal_inquireIs64Bit";
OLDNEW
« no previous file with comments | « runtime/bin/platform_patch.dart ('k') | runtime/lib/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698