blob: 4a588e17952e177bd742347ea080ec844fc73bf7 [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 "package:expect/expect.dart";
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,
{'text': 'error'},
buildSourceString('foo'), null);
Expect.stringEquals('<foo: error>', '$e');
}