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

Side by Side Diff: src/api.cc

Issue 92010: Push V8 r1767 to trunk. This fixes a problem in the string type... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 11 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/virtual-frame.cc » ('j') | 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 2355 matching lines...) Expand 10 before | Expand all | Expand 10 after
2366 } 2366 }
2367 2367
2368 2368
2369 bool v8::V8::Dispose() { 2369 bool v8::V8::Dispose() {
2370 i::V8::TearDown(); 2370 i::V8::TearDown();
2371 return true; 2371 return true;
2372 } 2372 }
2373 2373
2374 2374
2375 const char* v8::V8::GetVersion() { 2375 const char* v8::V8::GetVersion() {
2376 return "1.1.10.3"; 2376 return "1.1.10.4";
2377 } 2377 }
2378 2378
2379 2379
2380 static i::Handle<i::FunctionTemplateInfo> 2380 static i::Handle<i::FunctionTemplateInfo>
2381 EnsureConstructor(i::Handle<i::ObjectTemplateInfo> templ) { 2381 EnsureConstructor(i::Handle<i::ObjectTemplateInfo> templ) {
2382 if (templ->constructor()->IsUndefined()) { 2382 if (templ->constructor()->IsUndefined()) {
2383 Local<FunctionTemplate> constructor = FunctionTemplate::New(); 2383 Local<FunctionTemplate> constructor = FunctionTemplate::New();
2384 Utils::OpenHandle(*constructor)->set_instance_template(*templ); 2384 Utils::OpenHandle(*constructor)->set_instance_template(*templ);
2385 templ->set_constructor(*Utils::OpenHandle(*constructor)); 2385 templ->set_constructor(*Utils::OpenHandle(*constructor));
2386 } 2386 }
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
3339 reinterpret_cast<HandleScopeImplementer*>(storage); 3339 reinterpret_cast<HandleScopeImplementer*>(storage);
3340 List<void**>* blocks_of_archived_thread = thread_local->Blocks(); 3340 List<void**>* blocks_of_archived_thread = thread_local->Blocks();
3341 v8::ImplementationUtilities::HandleScopeData* handle_data_of_archived_thread = 3341 v8::ImplementationUtilities::HandleScopeData* handle_data_of_archived_thread =
3342 &thread_local->handle_scope_data_; 3342 &thread_local->handle_scope_data_;
3343 Iterate(v, blocks_of_archived_thread, handle_data_of_archived_thread); 3343 Iterate(v, blocks_of_archived_thread, handle_data_of_archived_thread);
3344 3344
3345 return storage + ArchiveSpacePerThread(); 3345 return storage + ArchiveSpacePerThread();
3346 } 3346 }
3347 3347
3348 } } // namespace v8::internal 3348 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/virtual-frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698