| Index: src/log.h
|
| diff --git a/src/log.h b/src/log.h
|
| index 376e6a19c2de77aff7a69d388094d34ac39d1178..7003d2a86e9fc581581a195681311d4f2a00a2c8 100644
|
| --- a/src/log.h
|
| +++ b/src/log.h
|
| @@ -107,6 +107,7 @@ class VMState BASE_EMBEDDED {
|
| V(CODE_MOVE_EVENT, "code-move", "cm") \
|
| V(CODE_DELETE_EVENT, "code-delete", "cd") \
|
| V(TICK_EVENT, "tick", "t") \
|
| + V(REPEAT_META_EVENT, "repeat", "r") \
|
| V(BUILTIN_TAG, "Builtin", "bi") \
|
| V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak", "cdb") \
|
| V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn", "cdbsi") \
|
| @@ -299,6 +300,9 @@ class Logger {
|
| // An array of log events names.
|
| static const char** log_events_;
|
|
|
| + // Counter for repeated tick events.
|
| + static int tick_repeat_count_;
|
| +
|
| // Internal implementation classes with access to
|
| // private members.
|
| friend class EventLog;
|
|
|