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

Unified Diff: src/d8-windows.cc

Issue 57005: Add os.chdir and os.setenv to d8. Move system() to os.system(). (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 9 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
« no previous file with comments | « src/d8-posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8-windows.cc
===================================================================
--- src/d8-windows.cc (revision 1633)
+++ src/d8-windows.cc (working copy)
@@ -42,4 +42,11 @@
}
+Handle<Value> Shell::ChangeDirectory(const Arguments& args) {
+ Handle<String> error_message =
+ String::New("chdir() is not yet supported on your OS");
+ return ThrowException(error_message);
+}
+
+
} // namespace v8
« no previous file with comments | « src/d8-posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698