compile method
Implementation
Uint8List compile(
ASTCompilation compilation, {
bool debugPerformance = false,
}) {
final tik = DateTime.now().millisecondsSinceEpoch;
final bytes = compilation.accept(this);
final tok = DateTime.now().millisecondsSinceEpoch;
if (debugPerformance) {
print('hetu: ${tok - tik}ms\tto compile\t[${compilation.entryFullname}]');
}
return bytes;
}