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

Side by Side Diff: runtime/lib/bool.cc

Issue 50983002: Implement fromEnvironment on bool, int and String (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add support for negative ints. Add more tests. Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 #include "vm/bootstrap_natives.h"
6
7 #include "include/dart_api.h"
8 #include "vm/bigint_operations.h"
9 #include "vm/dart_entry.h"
10 #include "vm/dart_api_impl.h"
11 #include "vm/exceptions.h"
12 #include "vm/isolate.h"
13 #include "vm/native_entry.h"
14 #include "vm/object.h"
15 #include "vm/object_store.h"
16 #include "vm/symbols.h"
17
18 namespace dart {
19
20 DEFINE_NATIVE_ENTRY(Bool_fromEnvironment, 2) {
21 GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(1));
22 // Call the embedder to supply us with the environment.
23 Dart_ConfigCallback callback = isolate->config_callback();
24 if (callback != NULL) {
25 Dart_Handle result = callback(Api::NewHandle(isolate, name.raw()));
26 if (Dart_IsError(result)) {
27 const Object& error =
28 Object::Handle(isolate, Api::UnwrapHandle(result));
29 Exceptions::ThrowArgumentError(
30 String::Handle(
31 String::New(Error::Cast(error).ToErrorCString())));
32 }
33 if (Dart_IsString(result)) {
34 const char *chars;
35 Dart_StringToCString(result, &chars);
36 return (strcmp("true", chars) == 0)
37 ? Bool::True().raw() : Bool::False().raw();
38 }
39 if (!Dart_IsNull(result)) {
40 Exceptions::ThrowArgumentError(
41 String::Handle(String::New("Illegal environment value")));
42 }
43 }
44 return Bool::False().raw();
45 }
46
47 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/include/dart_api.h ('k') | runtime/lib/bool_patch.dart » ('j') | sdk/lib/core/bool.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698