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

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

Issue 2705593002: Fix various nits in VM patch files. (Closed)
Patch Set: Address comments and issues found during testing. 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/isolate_patch.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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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:isolate'; 5 import 'dart:isolate';
6 import 'dart:_internal'; 6 import 'dart:_internal' hide Symbol;
7 7
8 @patch bool debugger({bool when: true, 8 @patch bool debugger({bool when: true,
9 String message}) native "Developer_debugger"; 9 String message}) native "Developer_debugger";
10 10
11 @patch Object inspect(Object object) native "Developer_inspect"; 11 @patch Object inspect(Object object) native "Developer_inspect";
12 12
13 @patch void log(String message, 13 @patch void log(String message,
14 {DateTime time, 14 {DateTime time,
15 int sequenceNumber, 15 int sequenceNumber,
16 int level: 0, 16 int level: 0,
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 154
155 @patch int _getServiceMinorVersion() native "Developer_getServiceMinorVersion"; 155 @patch int _getServiceMinorVersion() native "Developer_getServiceMinorVersion";
156 156
157 @patch void _getServerInfo(SendPort sendPort) native "Developer_getServerInfo"; 157 @patch void _getServerInfo(SendPort sendPort) native "Developer_getServerInfo";
158 158
159 @patch void _webServerControl(SendPort sendPort, bool enable) 159 @patch void _webServerControl(SendPort sendPort, bool enable)
160 native "Developer_webServerControl"; 160 native "Developer_webServerControl";
161 161
162 @patch String _getIsolateIDFromSendPort(SendPort sendPort) 162 @patch String _getIsolateIDFromSendPort(SendPort sendPort)
163 native "Developer_getIsolateIDFromSendPort"; 163 native "Developer_getIsolateIDFromSendPort";
OLDNEW
« no previous file with comments | « runtime/lib/compact_hash.dart ('k') | runtime/lib/isolate_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698