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

Side by Side Diff: lib/system/system.dart

Issue 1450393002: Roll sdk dependency to 34357cdad108dcba734949bd13bd28c76ea285e0 (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Update status files Created 5 years 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
OLDNEW
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Fletch 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 library dart.fletch._system; 5 library dart.fletch._system;
6 6
7 import 'dart:_internal' hide Symbol; 7 import 'dart:_internal' hide Symbol;
8 import 'dart:collection'; 8 import 'dart:collection';
9 import 'dart:fletch'; 9 import 'dart:fletch';
10 import 'dart:math'; 10 import 'dart:math';
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 78 }
79 79
80 /// Make the current process yield. Either to allow other fibers to 80 /// Make the current process yield. Either to allow other fibers to
81 /// make progress or to terminate execution. 81 /// make progress or to terminate execution.
82 external yield(int reason); 82 external yield(int reason);
83 83
84 external get nativeError; 84 external get nativeError;
85 85
86 // Change execution to [coroutine], passing along [argument]. 86 // Change execution to [coroutine], passing along [argument].
87 external coroutineChange(coroutine, argument); 87 external coroutineChange(coroutine, argument);
88
89 const patch = "patch";
ahe 2015/12/01 10:12:12 I think this would naturally group with [native] o
sigurdm 2015/12/03 14:48:09 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698