dartlexMain function

Future<void> dartlexMain(
  1. List<String> args
)

Run dartle using an executable compiled from the project's dartle.dart file. See runDartlex for more options running dartlex.

Implementation

Future<void> dartlexMain(List<String> args) async {
  await runSafely(args, false, (stopWatch, options) async {
    activateLogging(options.logLevel, colorfulLog: options.colorfulLog);
    await runDartlex(args, options);
  });
}