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

Unified Diff: runtime/lib/string.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/string.cc
===================================================================
--- runtime/lib/string.cc (revision 39888)
+++ runtime/lib/string.cc (working copy)
@@ -19,24 +19,10 @@
GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(1));
GET_NATIVE_ARGUMENT(String, 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 result = callback(Api::NewHandle(isolate, name.raw()));
- if (Dart_IsString(result)) {
- const Object& value =
- Object::Handle(isolate, Api::UnwrapHandle(result));
- return Symbols::New(String::Cast(value));
- } else if (Dart_IsError(result)) {
- const Object& error =
- Object::Handle(isolate, Api::UnwrapHandle(result));
- Exceptions::ThrowArgumentError(
- String::Handle(
- String::New(Error::Cast(error).ToErrorCString())));
- } else if (!Dart_IsNull(result)) {
- Exceptions::ThrowArgumentError(
- String::Handle(String::New("Illegal environment value")));
- }
+ const String& env_value =
+ String::Handle(Api::CallEnvironmentCallback(isolate, name));
+ if (!env_value.IsNull()) {
+ return Symbols::New(env_value);
}
return default_value.raw();
}
« no previous file with comments | « runtime/lib/integers.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | runtime/vm/dart_api_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698