| Index: src/log.h
|
| diff --git a/src/log.h b/src/log.h
|
| index 0c3d277c8e89ab644d00ffe6c4033d1f5c3a8aa6..a95d12287e5b954d9e23a9ffa2de499cb37adbce 100644
|
| --- a/src/log.h
|
| +++ b/src/log.h
|
| @@ -224,8 +224,7 @@ class Logger {
|
| const char* source);
|
| void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, Name* name);
|
| void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code,
|
| - SharedFunctionInfo* shared, CompilationInfo* info,
|
| - Name* name);
|
| + SharedFunctionInfo* shared, Name* name);
|
| void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code,
|
| SharedFunctionInfo* shared, CompilationInfo* info,
|
| Name* source, int line, int column);
|
| @@ -470,8 +469,7 @@ class CodeEventListener {
|
| virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
|
| Name* name) = 0;
|
| virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
|
| - SharedFunctionInfo* shared,
|
| - CompilationInfo* info, Name* name) = 0;
|
| + SharedFunctionInfo* shared, Name* name) = 0;
|
| virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
|
| SharedFunctionInfo* shared,
|
| CompilationInfo* info, Name* source, int line,
|
| @@ -502,8 +500,7 @@ class CodeEventLogger : public CodeEventListener {
|
| void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
|
| int args_count) override;
|
| void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
|
| - SharedFunctionInfo* shared, CompilationInfo* info,
|
| - Name* name) override;
|
| + SharedFunctionInfo* shared, Name* name) override;
|
| void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
|
| SharedFunctionInfo* shared, CompilationInfo* info,
|
| Name* source, int line, int column) override;
|
|
|