Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 50e69a2c4dbbcfe2d0296fa142fdf8d19a7bfe2e..bddb327069977370c000f6a82f6e8823638c2e61 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -44,8 +44,7 @@ ScriptData::ScriptData(const byte* data, int length) |
} |
-CompilationInfo::CompilationInfo(Handle<Script> script, |
- Zone* zone) |
+CompilationInfo::CompilationInfo(Handle<Script> script, Zone* zone) |
: flags_(StrictModeField::encode(SLOPPY)), |
script_(script), |
osr_ast_id_(BailoutId::None()), |
@@ -86,8 +85,7 @@ CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info, |
} |
-CompilationInfo::CompilationInfo(Handle<JSFunction> closure, |
- Zone* zone) |
+CompilationInfo::CompilationInfo(Handle<JSFunction> closure, Zone* zone) |
: flags_(StrictModeField::encode(SLOPPY) | IsLazy::encode(true)), |
closure_(closure), |
shared_info_(Handle<SharedFunctionInfo>(closure->shared())), |
@@ -103,8 +101,7 @@ CompilationInfo::CompilationInfo(Handle<JSFunction> closure, |
} |
-CompilationInfo::CompilationInfo(HydrogenCodeStub* stub, |
- Isolate* isolate, |
+CompilationInfo::CompilationInfo(HydrogenCodeStub* stub, Isolate* isolate, |
Zone* zone) |
: flags_(StrictModeField::encode(SLOPPY) | IsLazy::encode(true)), |
osr_ast_id_(BailoutId::None()), |