addArgs method

void addArgs(
  1. List<String> args
)

Add arguments to the command

Processes the arguments and sets the relevant fields

  • --no-fvm: disables fvm support
  • --puby-verbose: enables verbose output

Implementation

void addArgs(List<String> args) {
  _noFvm = _noFvm || args.remove('--no-fvm');
  _verbose = _verbose || args.remove('--puby-verbose');
  _args.addAll(args);
}