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

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

Issue 1537523002: Add dart:developer.postEvent for posting events to the service protocol from Dart code (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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) 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 VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 V(Mint_shlFromInt, 2) \ 66 V(Mint_shlFromInt, 2) \
67 V(Bigint_getNeg, 1) \ 67 V(Bigint_getNeg, 1) \
68 V(Bigint_getUsed, 1) \ 68 V(Bigint_getUsed, 1) \
69 V(Bigint_getDigits, 1) \ 69 V(Bigint_getDigits, 1) \
70 V(Bigint_allocate, 4) \ 70 V(Bigint_allocate, 4) \
71 V(Developer_debugger, 2) \ 71 V(Developer_debugger, 2) \
72 V(Developer_inspect, 1) \ 72 V(Developer_inspect, 1) \
73 V(Developer_lookupExtension, 1) \ 73 V(Developer_lookupExtension, 1) \
74 V(Developer_registerExtension, 2) \ 74 V(Developer_registerExtension, 2) \
75 V(Developer_log, 8) \ 75 V(Developer_log, 8) \
76 V(Developer_postEvent, 2) \
76 V(Double_getIsNegative, 1) \ 77 V(Double_getIsNegative, 1) \
77 V(Double_getIsInfinite, 1) \ 78 V(Double_getIsInfinite, 1) \
78 V(Double_getIsNaN, 1) \ 79 V(Double_getIsNaN, 1) \
79 V(Double_add, 2) \ 80 V(Double_add, 2) \
80 V(Double_sub, 2) \ 81 V(Double_sub, 2) \
81 V(Double_mul, 2) \ 82 V(Double_mul, 2) \
82 V(Double_div, 2) \ 83 V(Double_div, 2) \
83 V(Double_trunc_div, 2) \ 84 V(Double_trunc_div, 2) \
84 V(Double_remainder, 2) \ 85 V(Double_remainder, 2) \
85 V(Double_modulo, 2) \ 86 V(Double_modulo, 2) \
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 static void DN_##name(Dart_NativeArguments args); 422 static void DN_##name(Dart_NativeArguments args);
422 423
423 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 424 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
424 425
425 #undef DECLARE_BOOTSTRAP_NATIVE 426 #undef DECLARE_BOOTSTRAP_NATIVE
426 }; 427 };
427 428
428 } // namespace dart 429 } // namespace dart
429 430
430 #endif // VM_BOOTSTRAP_NATIVES_H_ 431 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698