OLD | NEW |
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 #include "bin/builtin.h" | 5 #include "bin/builtin.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 #include <string.h> | 8 #include <string.h> |
9 | 9 |
10 #include "bin/dartutils.h" | 10 #include "bin/dartutils.h" |
11 #include "include/dart_api.h" | 11 #include "include/dart_api.h" |
12 #include "platform/assert.h" | 12 #include "platform/assert.h" |
13 | 13 |
14 | 14 |
15 namespace dart { | 15 namespace dart { |
16 namespace bin { | 16 namespace bin { |
17 | 17 |
18 // Lists the native functions implementing basic functionality in | 18 // Lists the native functions implementing basic functionality in |
19 // standalone dart, such as printing, file I/O, and platform information. | 19 // standalone dart, such as printing, file I/O, and platform information. |
20 // Advanced I/O classes like sockets and process management are implemented | 20 // Advanced I/O classes like sockets and process management are implemented |
21 // using functions listed in io_natives.cc. | 21 // using functions listed in io_natives.cc. |
22 #define BUILTIN_NATIVE_LIST(V) \ | 22 #define BUILTIN_NATIVE_LIST(V) \ |
23 V(Directory_Exists, 1) \ | 23 V(Directory_Exists, 1) \ |
24 V(Directory_Create, 1) \ | 24 V(Directory_Create, 1) \ |
25 V(Directory_Current, 0) \ | 25 V(Directory_Current, 0) \ |
| 26 V(Directory_SetCurrent, 1) \ |
26 V(Directory_CreateTemp, 1) \ | 27 V(Directory_CreateTemp, 1) \ |
27 V(Directory_Delete, 2) \ | 28 V(Directory_Delete, 2) \ |
28 V(Directory_Rename, 2) \ | 29 V(Directory_Rename, 2) \ |
29 V(Directory_List, 3) \ | 30 V(Directory_List, 3) \ |
30 V(Directory_NewServicePort, 0) \ | 31 V(Directory_NewServicePort, 0) \ |
31 V(File_Open, 2) \ | 32 V(File_Open, 2) \ |
32 V(File_Exists, 1) \ | 33 V(File_Exists, 1) \ |
33 V(File_Close, 1) \ | 34 V(File_Close, 1) \ |
34 V(File_ReadByte, 1) \ | 35 V(File_ReadByte, 1) \ |
35 V(File_WriteByte, 2) \ | 36 V(File_WriteByte, 2) \ |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 109 |
109 | 110 |
110 void FUNCTION_NAME(Logger_PrintString)(Dart_NativeArguments args) { | 111 void FUNCTION_NAME(Logger_PrintString)(Dart_NativeArguments args) { |
111 Dart_EnterScope(); | 112 Dart_EnterScope(); |
112 Builtin::PrintString(stdout, Dart_GetNativeArgument(args, 0)); | 113 Builtin::PrintString(stdout, Dart_GetNativeArgument(args, 0)); |
113 Dart_ExitScope(); | 114 Dart_ExitScope(); |
114 } | 115 } |
115 | 116 |
116 } // namespace bin | 117 } // namespace bin |
117 } // namespace dart | 118 } // namespace dart |
OLD | NEW |