Minor build and code style issues.

Review URL: http://codereview.chromium.org/42354

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1541 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
ager@chromium.org 2009-03-18 21:14:46 +00:00
parent c5d777338a
commit 2ff097e17f
2 changed files with 2 additions and 3 deletions

View File

@ -72,7 +72,7 @@ void** HandleScope::Extend() {
current_.limit = limit;
}
}
// If we still haven't found a slot for the handle, we extend the
// current handle scope by allocating a new handle block.
if (result == current_.limit) {

View File

@ -5810,7 +5810,7 @@ TEST(ObjectClone) {
v8::HandleScope scope;
LocalContext env;
char* sample =
const char* sample =
"var rv = {};" \
"rv.alpha = 'hello';" \
"rv.beta = 123;" \
@ -5837,4 +5837,3 @@ TEST(ObjectClone) {
CHECK_EQ(v8::Integer::New(123), obj->Get(v8_str("beta")));
CHECK_EQ(v8::Integer::New(456), clone->Get(v8_str("beta")));
}