| Index: test/cctest/test-compiler.cc
|
| ===================================================================
|
| --- test/cctest/test-compiler.cc (revision 4145)
|
| +++ test/cctest/test-compiler.cc (working copy)
|
| @@ -115,8 +115,14 @@
|
| static Handle<JSFunction> Compile(const char* source) {
|
| Handle<String> source_code(Factory::NewStringFromUtf8(CStrVector(source)));
|
| Handle<JSFunction> boilerplate =
|
| - Compiler::Compile(source_code, Handle<String>(), 0, 0, NULL, NULL,
|
| - Handle<String>::null());
|
| + Compiler::Compile(source_code,
|
| + Handle<String>(),
|
| + 0,
|
| + 0,
|
| + NULL,
|
| + NULL,
|
| + Handle<String>::null(),
|
| + NOT_NATIVES_CODE);
|
| return Factory::NewFunctionFromBoilerplate(boilerplate,
|
| Top::global_context());
|
| }
|
|
|