#include <exceptions.h>
Definition at line 252 of file exceptions.h.
◆ Allocate()
static CatchEntryMoves * dart::CatchEntryMoves::Allocate |
( |
intptr_t |
num_moves | ) |
|
|
inlinestatic |
Definition at line 254 of file exceptions.h.
254 {
255 auto result =
reinterpret_cast<CatchEntryMoves*
>(
256 malloc(
sizeof(CatchEntryMoves) +
sizeof(CatchEntryMove) * num_moves));
257 result->count_ = num_moves;
259 }
void * malloc(size_t size)
◆ At() [1/2]
◆ At() [2/2]
◆ count()
intptr_t dart::CatchEntryMoves::count |
( |
| ) |
const |
|
inline |
◆ Free()
Definition at line 261 of file exceptions.h.
261 {
262 free(const_cast<CatchEntryMoves*>(moves));
263 }
The documentation for this class was generated from the following file: