OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |