OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import 'package:expect/expect.dart'; | 5 import 'package:expect/expect.dart'; |
6 | 6 |
7 import 'package:compiler/src/diagnostics/messages.dart' | 7 import 'package:compiler/src/diagnostics/messages.dart' show MessageKind; |
8 show MessageKind; | |
9 import 'package:compiler/src/elements/elements.dart'; | 8 import 'package:compiler/src/elements/elements.dart'; |
10 import 'package:compiler/src/elements/modelx.dart' | 9 import 'package:compiler/src/elements/modelx.dart' show ErroneousElementX; |
11 show ErroneousElementX; | |
12 | 10 |
13 void main() { | 11 void main() { |
14 ErroneousElement e = new ErroneousElementX(MessageKind.GENERIC, | 12 ErroneousElement e = new ErroneousElementX( |
15 {'text': 'error'}, | 13 MessageKind.GENERIC, {'text': 'error'}, 'foo', null); |
16 'foo', null); | |
17 Expect.stringEquals('<foo: error>', '$e'); | 14 Expect.stringEquals('<foo: error>', '$e'); |
18 } | 15 } |
OLD | NEW |