run method

Future run(
  1. DCodeLines<DStatement> codes, {
  2. RunTip? tip,
})

Implementation

Future run(DCodeLines codes, {RunTip? tip}) async {
  final _tip = tip ?? RunTip();
  codes.run(_tip);
}