compile method

  1. @MPI(name: "mesh.vmc.compile")
Future<String?> compile(
  1. Script script, {
  2. Context? ctx,
})

Compile the script. 编译脚本,编译通即会保存快照.

Implementation

@MPI(name: "mesh.vmc.compile")
Future<String?> compile(Script script, {Context? ctx}) {
  throw UnimplementedError('compile() has not been implemented.');
}