info method

void info(
  1. String message,
  2. SourceSpan span
)

Report and informational message about what the compiler is doing.

Implementation

void info(String message, SourceSpan span) {
  var msg = Message(MessageLevel.info, message,
      span: span, useColors: options.useColors);

  messages.add(msg);

  if (options.verbose) printHandler(msg);
}