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

Unified Diff: runtime/lib/integers.cc

Issue 546053002: - Refactor the way X.fromEnvironment is implemented. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: runtime/lib/integers.cc
===================================================================
--- runtime/lib/integers.cc (revision 39888)
+++ runtime/lib/integers.cc (working copy)
@@ -239,27 +239,15 @@
GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(1));
GET_NATIVE_ARGUMENT(Integer, default_value, arguments->NativeArgAt(2));
// Call the embedder to supply us with the environment.
- Api::Scope api_scope(isolate);
- Dart_EnvironmentCallback callback = isolate->environment_callback();
- if (callback != NULL) {
- Dart_Handle response = callback(Api::NewHandle(isolate, name.raw()));
- if (Dart_IsString(response)) {
- const String& value = String::Cast(
- Object::Handle(isolate, Api::UnwrapHandle(response)));
- const Integer& result = Integer::Handle(ParseInteger(value));
- if (!result.IsNull()) {
- if (result.IsSmi()) return result.raw();
- return result.CheckAndCanonicalize(NULL);
+ const String& env_value =
+ String::Handle(Api::CallEnvironmentCallback(isolate, name));
+ if (!env_value.IsNull()) {
+ const Integer& result = Integer::Handle(ParseInteger(env_value));
+ if (!result.IsNull()) {
+ if (result.IsSmi()) {
+ return result.raw();
}
- } else if (Dart_IsError(response)) {
- const Object& error =
- Object::Handle(isolate, Api::UnwrapHandle(response));
- Exceptions::ThrowArgumentError(
- String::Handle(
- String::New(Error::Cast(error).ToErrorCString())));
- } else if (!Dart_IsNull(response)) {
- Exceptions::ThrowArgumentError(
- String::Handle(String::New("Illegal environment value")));
+ return result.CheckAndCanonicalize(NULL);
}
}
return default_value.raw();
« no previous file with comments | « runtime/lib/bool.cc ('k') | runtime/lib/string.cc » ('j') | runtime/vm/dart_api_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698