blob: d0a85a97147e3fd4cf0b8bffa5775641b1514682 [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.
import '../../../sdk/lib/_internal/compiler/implementation/elements/elements.dart';
import 'parser_helper.dart';
import '../../../sdk/lib/_internal/compiler/implementation/elements/modelx.dart'
show ErroneousElementX;
import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart'
show MessageKind;
void main() {
ErroneousElement e = new ErroneousElementX(MessageKind.GENERIC, ['error'],
buildSourceString('foo'), null);
Expect.stringEquals('<foo: error>', '$e');
}