unflutter/dart/dart.cpp
2022-11-27 01:18:03 +03:00

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";
}
}