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

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 2438613002: Provide an API to dart:developer to control the web server hosting the Service Protocol (Closed)
Patch Set: CHANGELOG.md merge and fatal error Created 4 years, 1 month 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/observatory/tests/service/test_helper.dart ('k') | runtime/vm/service.h » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 #ifndef RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef RUNTIME_VM_BOOTSTRAP_NATIVES_H_
6 #define RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 6 #define RUNTIME_VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 V(Smi_bitNegate, 1) \ 63 V(Smi_bitNegate, 1) \
64 V(Smi_bitLength, 1) \ 64 V(Smi_bitLength, 1) \
65 V(Mint_bitNegate, 1) \ 65 V(Mint_bitNegate, 1) \
66 V(Mint_bitLength, 1) \ 66 V(Mint_bitLength, 1) \
67 V(Mint_shlFromInt, 2) \ 67 V(Mint_shlFromInt, 2) \
68 V(Bigint_getNeg, 1) \ 68 V(Bigint_getNeg, 1) \
69 V(Bigint_getUsed, 1) \ 69 V(Bigint_getUsed, 1) \
70 V(Bigint_getDigits, 1) \ 70 V(Bigint_getDigits, 1) \
71 V(Bigint_allocate, 4) \ 71 V(Bigint_allocate, 4) \
72 V(Developer_debugger, 2) \ 72 V(Developer_debugger, 2) \
73 V(Developer_getServerInfo, 1) \
74 V(Developer_getServiceMajorVersion, 0) \
75 V(Developer_getServiceMinorVersion, 0) \
73 V(Developer_inspect, 1) \ 76 V(Developer_inspect, 1) \
74 V(Developer_lookupExtension, 1) \ 77 V(Developer_lookupExtension, 1) \
75 V(Developer_registerExtension, 2) \ 78 V(Developer_registerExtension, 2) \
76 V(Developer_log, 8) \ 79 V(Developer_log, 8) \
77 V(Developer_postEvent, 2) \ 80 V(Developer_postEvent, 2) \
81 V(Developer_webServerControl, 2) \
78 V(Double_getIsNegative, 1) \ 82 V(Double_getIsNegative, 1) \
79 V(Double_getIsInfinite, 1) \ 83 V(Double_getIsInfinite, 1) \
80 V(Double_getIsNaN, 1) \ 84 V(Double_getIsNaN, 1) \
81 V(Double_add, 2) \ 85 V(Double_add, 2) \
82 V(Double_sub, 2) \ 86 V(Double_sub, 2) \
83 V(Double_mul, 2) \ 87 V(Double_mul, 2) \
84 V(Double_div, 2) \ 88 V(Double_div, 2) \
85 V(Double_trunc_div, 2) \ 89 V(Double_trunc_div, 2) \
86 V(Double_remainder, 2) \ 90 V(Double_remainder, 2) \
87 V(Double_modulo, 2) \ 91 V(Double_modulo, 2) \
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 #ifndef PRODUCT 424 #ifndef PRODUCT
421 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 425 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
422 #endif 426 #endif
423 427
424 #undef DECLARE_BOOTSTRAP_NATIVE 428 #undef DECLARE_BOOTSTRAP_NATIVE
425 }; 429 };
426 430
427 } // namespace dart 431 } // namespace dart
428 432
429 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_ 433 #endif // RUNTIME_VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/test_helper.dart ('k') | runtime/vm/service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698