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

Side by Side Diff: test/codegen/lib/mirrors/globalized_closures2_test.dart

Issue 2265533002: Add mirrors tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 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
(Empty)
1 // 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 // BSD-style license that can be found in the LICENSE file.
4
5 // Dart2js crashed on this example. It globalized both closures and created
6 // top-level classes for closures (here the globalized_closure{2}). There was a
7 // name-clash (both being named "main_closure") which led to a crash.
8
9 library main;
10
11 import 'dart:mirrors';
12
13 import 'package:expect/expect.dart';
14
15 confuse(x) {
16 if (new DateTime.now().millisecondsSinceEpoch == 42) {
17 return confuse(() => print(42));
18 }
19 return x;
20 }
21
22 main() {
23 var globalized_closure = confuse(() => 499);
24 var globalized_closure2 = confuse(() => 99);
25 globalized_closure();
26 globalized_closure2();
27 final ms = currentMirrorSystem();
28 var lib = ms.findLibrary(#main);
29 var collectedParents = [];
30 var classes = lib.declarations.values;
31 for (var c in classes) {
32 if (c is ClassMirror && c.superclass != null) {
33 collectedParents.add(MirrorSystem.getName(c.superclass.simpleName));
34 }
35 };
36 Expect.isTrue(collectedParents.isEmpty); /// 00: ok
37 }
OLDNEW
« no previous file with comments | « test/codegen/lib/mirrors/get_symbol_name_test.dart ('k') | test/codegen/lib/mirrors/globalized_closures_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698