Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: tests/compiler/dart2js/erroneous_element_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/compiler/dart2js/enumset_test.dart ('k') | tests/compiler/dart2js/error_token_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/enumset_test.dart ('k') | tests/compiler/dart2js/error_token_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698