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

Side by Side Diff: src/d8.cc

Issue 192024: Fixing presubmit error (Closed)
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
« 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 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
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 }
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