compile method

Uint8List compile(
  1. ASTCompilation compilation
)

Implementation

Uint8List compile(
  ASTCompilation compilation, // {  bool printPerformanceStatistics = false,}
) {
  final sw = Stopwatch()..start();
  final bytes = visitCompilation(compilation);
  if (config.printPerformanceStatistics) {
    print(
        'hetu: ${sw.elapsedMilliseconds}ms\tto compile\t[${compilation.entryFullname}]');
  }
  sw.stop();
  return bytes;
}