| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 #include "bin/dartutils.h" | 6 #include "bin/dartutils.h" |
| 7 #include "bin/utils.h" | 7 #include "bin/utils.h" |
| 8 #include "bin/stdin.h" | 8 #include "bin/stdin.h" |
| 9 | 9 |
| 10 #include "platform/globals.h" | 10 #include "platform/globals.h" |
| 11 #include "platform/thread.h" | 11 #include "platform/thread.h" |
| 12 #include "platform/utils.h" | 12 #include "platform/utils.h" |
| 13 | 13 |
| 14 #include "include/dart_api.h" | 14 #include "include/dart_api.h" |
| 15 | 15 |
| 16 | 16 |
| 17 namespace dart { | 17 namespace dart { |
| 18 namespace bin { | 18 namespace bin { |
| 19 | 19 |
| 20 void FUNCTION_NAME(Stdin_ReadByte)(Dart_NativeArguments args) { | 20 void FUNCTION_NAME(Stdin_ReadByte)(Dart_NativeArguments args) { |
| 21 Dart_EnterScope(); | |
| 22 Dart_SetReturnValue(args, Dart_NewInteger(Stdin::ReadByte())); | 21 Dart_SetReturnValue(args, Dart_NewInteger(Stdin::ReadByte())); |
| 23 Dart_ExitScope(); | |
| 24 } | 22 } |
| 25 | 23 |
| 26 | 24 |
| 27 void FUNCTION_NAME(Stdin_SetEchoMode)(Dart_NativeArguments args) { | 25 void FUNCTION_NAME(Stdin_SetEchoMode)(Dart_NativeArguments args) { |
| 28 Dart_EnterScope(); | |
| 29 bool enabled = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 1)); | 26 bool enabled = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 1)); |
| 30 Stdin::SetEchoMode(enabled); | 27 Stdin::SetEchoMode(enabled); |
| 31 Dart_SetReturnValue(args, Dart_Null()); | 28 Dart_SetReturnValue(args, Dart_Null()); |
| 32 Dart_ExitScope(); | |
| 33 } | 29 } |
| 34 | 30 |
| 35 | 31 |
| 36 void FUNCTION_NAME(Stdin_SetLineMode)(Dart_NativeArguments args) { | 32 void FUNCTION_NAME(Stdin_SetLineMode)(Dart_NativeArguments args) { |
| 37 Dart_EnterScope(); | |
| 38 bool enabled = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 1)); | 33 bool enabled = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 1)); |
| 39 Stdin::SetLineMode(enabled); | 34 Stdin::SetLineMode(enabled); |
| 40 Dart_SetReturnValue(args, Dart_Null()); | 35 Dart_SetReturnValue(args, Dart_Null()); |
| 41 Dart_ExitScope(); | |
| 42 } | 36 } |
| 43 | 37 |
| 44 } // namespace bin | 38 } // namespace bin |
| 45 } // namespace dart | 39 } // namespace dart |
| OLD | NEW |