run method

int run(
  1. List<String> args
)

Runs the script passing in the given args

Returns the processes exit code.

Implementation

int run(List<String> args) {
  final sdk = DartSdk();

  final runner = ScriptRunner(sdk, this, args);

  return runner.run();
}