| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 12 matching lines...) Expand all Loading... |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include <v8.h> | 28 #include <v8.h> |
| 29 | 29 |
| 30 #include <v8-debug.h> | 30 #include <v8-debug.h> |
| 31 | 31 |
| 32 #include <fcntl.h> | 32 #include <fcntl.h> |
| 33 #include <string.h> | |
| 34 #include <stdio.h> | 33 #include <stdio.h> |
| 35 #include <stdlib.h> | 34 #include <stdlib.h> |
| 35 #include <string.h> |
| 36 | 36 |
| 37 /** | 37 /** |
| 38 * This sample program should demonstrate certain aspects of debugging | 38 * This sample program should demonstrate certain aspects of debugging |
| 39 * standalone V8-based application. | 39 * standalone V8-based application. |
| 40 * | 40 * |
| 41 * The program reads input stream, processes it line by line and print | 41 * The program reads input stream, processes it line by line and print |
| 42 * the result to output. The actual processing is done by custom JavaScript | 42 * the result to output. The actual processing is done by custom JavaScript |
| 43 * script. The script is specified with command line parameters. | 43 * script. The script is specified with command line parameters. |
| 44 * | 44 * |
| 45 * The main cycle of the program will sequentially read lines from standard | 45 * The main cycle of the program will sequentially read lines from standard |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 } | 370 } |
| 371 // Remove newline char | 371 // Remove newline char |
| 372 for (char* pos = buffer; *pos != '\0'; pos++) { | 372 for (char* pos = buffer; *pos != '\0'; pos++) { |
| 373 if (*pos == '\n') { | 373 if (*pos == '\n') { |
| 374 *pos = '\0'; | 374 *pos = '\0'; |
| 375 break; | 375 break; |
| 376 } | 376 } |
| 377 } | 377 } |
| 378 return v8::String::NewFromUtf8(isolate, buffer); | 378 return v8::String::NewFromUtf8(isolate, buffer); |
| 379 } | 379 } |
| OLD | NEW |