| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 95 |
| 96 | 96 |
| 97 bool CounterMap::Match(void* key1, void* key2) { | 97 bool CounterMap::Match(void* key1, void* key2) { |
| 98 const char* name1 = reinterpret_cast<const char*>(key1); | 98 const char* name1 = reinterpret_cast<const char*>(key1); |
| 99 const char* name2 = reinterpret_cast<const char*>(key2); | 99 const char* name2 = reinterpret_cast<const char*>(key2); |
| 100 return strcmp(name1, name2) == 0; | 100 return strcmp(name1, name2) == 0; |
| 101 } | 101 } |
| 102 | 102 |
| 103 | 103 |
| 104 // Converts a V8 value to a C string. | 104 // Converts a V8 value to a C string. |
| 105 const char* ToCString(const v8::String::Utf8Value& value) { | 105 const char* Shell::ToCString(const v8::String::Utf8Value& value) { |
| 106 return *value ? *value : "<string conversion failed>"; | 106 return *value ? *value : "<string conversion failed>"; |
| 107 } | 107 } |
| 108 | 108 |
| 109 | 109 |
| 110 // Executes a string within the current v8 context. | 110 // Executes a string within the current v8 context. |
| 111 bool Shell::ExecuteString(Handle<String> source, | 111 bool Shell::ExecuteString(Handle<String> source, |
| 112 Handle<Value> name, | 112 Handle<Value> name, |
| 113 bool print_result, | 113 bool print_result, |
| 114 bool report_exceptions) { | 114 bool report_exceptions) { |
| 115 HandleScope handle_scope; | 115 HandleScope handle_scope; |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 return 0; | 770 return 0; |
| 771 } | 771 } |
| 772 | 772 |
| 773 | 773 |
| 774 } // namespace v8 | 774 } // namespace v8 |
| 775 | 775 |
| 776 | 776 |
| 777 int main(int argc, char* argv[]) { | 777 int main(int argc, char* argv[]) { |
| 778 return v8::Shell::Main(argc, argv); | 778 return v8::Shell::Main(argc, argv); |
| 779 } | 779 } |
| OLD | NEW |