parse static method

Program parse(
  1. String strProgram
)

Program from source code

Implementation

static Program parse(String strProgram) {
  return Program._(
    sourceType: _ProgramSourceType.source,
    sourceValue: strProgram,
  );
}