Calculates the size of serialized header in bytes.
| 69 | |
| 70 | // Calculates the size of serialized header in bytes. |
| 71 | uint64_t Size() |
| 72 | { |
| 73 | coding::binary::HeaderSizeOfVisitor visitor; |
| 74 | visitor(*this); |
| 75 | return visitor.m_size; |
| 76 | } |
| 77 | |
| 78 | bool HasCompilationsSection() const { return m_version == Version::V8 || m_version == Version::V9; } |
| 79 |
no outgoing calls
no test coverage detected