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

Side by Side Diff: tests/lib_2/mirrors/enum_test.dart

Issue 3003123002: Migrated test block 219 to Dart 2.0. (Closed)
Patch Set: Deleted files that were already merged. Created 3 years, 4 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 library test.enums; 5 library test.enums;
6 6
7 import 'dart:mirrors'; 7 import 'dart:mirrors';
8 import 'package:expect/expect.dart'; 8 import 'package:expect/expect.dart';
9 import 'stringify.dart'; 9 import 'stringify.dart';
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'Variable(s(values) in s(Suite), static, final)', 56 'Variable(s(values) in s(Suite), static, final)',
57 'Method(s(hashCode) in s(Suite), getter)', 57 'Method(s(hashCode) in s(Suite), getter)',
58 'Method(s(toString) in s(Suite))' 58 'Method(s(toString) in s(Suite))'
59 ], 59 ],
60 reflectClass(Suite) 60 reflectClass(Suite)
61 .declarations 61 .declarations
62 .values 62 .values
63 .where((d) => !d.isPrivate) 63 .where((d) => !d.isPrivate)
64 .map(stringify)); 64 .map(stringify));
65 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698