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

Side by Side Diff: src/d8.cc

Issue 200014: Modifies write() so that NULs are allowed within a string.... Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 } 152 }
153 153
154 154
155 Handle<Value> Shell::Write(const Arguments& args) { 155 Handle<Value> Shell::Write(const Arguments& args) {
156 for (int i = 0; i < args.Length(); i++) { 156 for (int i = 0; i < args.Length(); i++) {
157 HandleScope handle_scope; 157 HandleScope handle_scope;
158 if (i != 0) { 158 if (i != 0) {
159 printf(" "); 159 printf(" ");
160 } 160 }
161 v8::String::Utf8Value str(args[i]); 161 v8::String::Utf8Value str(args[i]);
162 const char* cstr = ToCString(str); 162 fwrite(*str, sizeof(*str), str.length(), stdout);
163 printf("%s", cstr);
164 } 163 }
165 return Undefined(); 164 return Undefined();
166 } 165 }
167 166
168 167
169 Handle<Value> Shell::Read(const Arguments& args) { 168 Handle<Value> Shell::Read(const Arguments& args) {
170 String::Utf8Value file(args[0]); 169 String::Utf8Value file(args[0]);
171 if (*file == NULL) { 170 if (*file == NULL) {
172 return ThrowException(String::New("Error loading file")); 171 return ThrowException(String::New("Error loading file"));
173 } 172 }
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 return 0; 763 return 0;
765 } 764 }
766 765
767 766
768 } // namespace v8 767 } // namespace v8
769 768
770 769
771 int main(int argc, char* argv[]) { 770 int main(int argc, char* argv[]) {
772 return v8::Shell::Main(argc, argv); 771 return v8::Shell::Main(argc, argv);
773 } 772 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698