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 fwrite(*str, sizeof(char), str.length(), stdout); | 162 fwrite(*str, sizeof(**str), str.length(), stdout); |
163 } | 163 } |
164 return Undefined(); | 164 return Undefined(); |
165 } | 165 } |
166 | 166 |
167 | 167 |
168 Handle<Value> Shell::Read(const Arguments& args) { | 168 Handle<Value> Shell::Read(const Arguments& args) { |
169 String::Utf8Value file(args[0]); | 169 String::Utf8Value file(args[0]); |
170 if (*file == NULL) { | 170 if (*file == NULL) { |
171 return ThrowException(String::New("Error loading file")); | 171 return ThrowException(String::New("Error loading file")); |
172 } | 172 } |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 return 0; | 763 return 0; |
764 } | 764 } |
765 | 765 |
766 | 766 |
767 } // namespace v8 | 767 } // namespace v8 |
768 | 768 |
769 | 769 |
770 int main(int argc, char* argv[]) { | 770 int main(int argc, char* argv[]) { |
771 return v8::Shell::Main(argc, argv); | 771 return v8::Shell::Main(argc, argv); |
772 } | 772 } |
OLD | NEW |