16 lines
370 B
C++
16 lines
370 B
C++
//
|
|
// Created by selim on 26.11.22.
|
|
//
|
|
|
|
#include "dart.h"
|
|
|
|
std::string snapshotKindString(SnapshotKind kind) {
|
|
switch (kind) {
|
|
case FULL: return "Full";
|
|
case FULL_JIT: return "Full JIT";
|
|
case FULL_AOT: return "Full AOT";
|
|
case MESSAGE: return "Message";
|
|
case NONE: return "None";
|
|
case INVALID: return "Invalid";
|
|
}
|
|
} |