blob: 1d0c2b9800e3725ea3509c4f1fb8d25f11e65ab6 [file] [log] [blame]
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of dart2js;
abstract class DiagnosticListener {
// TODO(karlklose): replace cancel with better error reporting mechanism.
void cancel(String reason, {node, token, instruction, element});
// TODO(karlklose): rename log to something like reportInfo.
void log(message);
// TODO(karlklose): add reportWarning and reportError to this interface.
void internalErrorOnElement(Element element, String message);
void internalError(String message,
{Node node, Token token, HInstruction instruction,
Element element});
SourceSpan spanFromSpannable(Spannable node, [Uri uri]);
void reportMessage(SourceSpan span, Diagnostic message, api.Diagnostic kind);
// TODO(ahe): Rename to reportError when that method has been removed.
void reportErrorCode(Spannable node, MessageKind errorCode, [Map arguments]);
/// Returns true if a diagnostic was emitted.
bool onDeprecatedFeature(Spannable span, String feature);
}