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

Side by Side Diff: pkg/dev_compiler/test/codegen/lib/mirrors/metadata_nested_constructor_call_test.dart

Issue 2301973002: More DDC mirrors support (Closed)
Patch Set: Format fixes per comments 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
OLDNEW
1 // compile options: --emit-metadata
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 3 // 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. 4 // BSD-style license that can be found in the LICENSE file.
4 5
5 // Regression test for Issue 17141. 6 // Regression test for Issue 17141.
6 7
7 library test.metadata_nested_constructor_call; 8 library test.metadata_nested_constructor_call;
8 9
9 import 'dart:mirrors'; 10 import 'dart:mirrors';
10 import 'package:expect/expect.dart'; 11 import 'package:expect/expect.dart';
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 reflectClass(E).metadata; 75 reflectClass(E).metadata;
75 reflectClass(F).metadata; 76 reflectClass(F).metadata;
76 reflectClass(G).metadata; 77 reflectClass(G).metadata;
77 reflectClass(H).metadata; 78 reflectClass(H).metadata;
78 reflectClass(I).metadata; 79 reflectClass(I).metadata;
79 reflectClass(J).metadata; 80 reflectClass(J).metadata;
80 reflectClass(K).metadata; 81 reflectClass(K).metadata;
81 reflectClass(L).metadata; 82 reflectClass(L).metadata;
82 reflectClass(M).metadata; 83 reflectClass(M).metadata;
83 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698