- Added missing braces in an if statement as a drive-by-edit.
- Removed executable bits from Xcode project file. Review URL: http://codereview.chromium.org/155411 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2443 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
592b2dfcbf
commit
1ea35a858f
@ -1085,8 +1085,9 @@ Local<Script> Script::Compile(v8::Handle<String> source,
|
||||
// handle it if it turns out not to be in release mode.
|
||||
ASSERT(pre_data == NULL || pre_data->SanityCheck());
|
||||
// If the pre-data isn't sane we simply ignore it
|
||||
if (pre_data != NULL && !pre_data->SanityCheck())
|
||||
if (pre_data != NULL && !pre_data->SanityCheck()) {
|
||||
pre_data = NULL;
|
||||
}
|
||||
i::Handle<i::JSFunction> boilerplate = i::Compiler::Compile(str,
|
||||
name_obj,
|
||||
line_offset,
|
||||
|
0
tools/v8.xcodeproj/project.pbxproj
Executable file → Normal file
0
tools/v8.xcodeproj/project.pbxproj
Executable file → Normal file
Loading…
Reference in New Issue
Block a user