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

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

Issue 917083003: Revert "dart2js: Refactoring, documentation, and a few bugfixes in Namer class." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 /// Test that the @MirrorsUsed annotation suppress hints and that only 5 /// Test that the @MirrorsUsed annotation suppress hints and that only
6 /// requested elements are retained for reflection. 6 /// requested elements are retained for reflection.
7 library dart2js.test.mirrors_used_test; 7 library dart2js.test.mirrors_used_test;
8 8
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 import "package:async_helper/async_helper.dart"; 10 import "package:async_helper/async_helper.dart";
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'Foo_staticMethod', // The name of Foo.staticMethod. 78 'Foo_staticMethod', // The name of Foo.staticMethod.
79 r'instanceMethod$0']; // The name of Foo.instanceMethod. 79 r'instanceMethod$0']; // The name of Foo.instanceMethod.
80 80
81 // We always include the names of some native classes. 81 // We always include the names of some native classes.
82 List<Element> nativeClasses = [ 82 List<Element> nativeClasses = [
83 compiler.intClass, compiler.doubleClass, compiler.numClass, 83 compiler.intClass, compiler.doubleClass, compiler.numClass,
84 compiler.stringClass, compiler.boolClass, compiler.nullClass, 84 compiler.stringClass, compiler.boolClass, compiler.nullClass,
85 compiler.listClass 85 compiler.listClass
86 ]; 86 ];
87 JavaScriptBackend backend = compiler.backend; 87 JavaScriptBackend backend = compiler.backend;
88 Iterable<String> nativeNames = nativeClasses.map(backend.namer.className); 88 Iterable<String> nativeNames =
89 nativeClasses.map(backend.namer.getNameOfClass);
89 expectedNames.addAll(nativeNames); 90 expectedNames.addAll(nativeNames);
90 91
91 Set recordedNames = new Set() 92 Set recordedNames = new Set()
92 ..addAll(backend.emitter.oldEmitter.recordedMangledNames) 93 ..addAll(backend.emitter.oldEmitter.recordedMangledNames)
93 ..addAll(backend.emitter.oldEmitter.mangledFieldNames.keys) 94 ..addAll(backend.emitter.oldEmitter.mangledFieldNames.keys)
94 ..addAll(backend.emitter.oldEmitter.mangledGlobalFieldNames.keys); 95 ..addAll(backend.emitter.oldEmitter.mangledGlobalFieldNames.keys);
95 Expect.setEquals(new Set.from(expectedNames), recordedNames); 96 Expect.setEquals(new Set.from(expectedNames), recordedNames);
96 97
97 for (var library in compiler.libraryLoader.libraries) { 98 for (var library in compiler.libraryLoader.libraries) {
98 library.forEachLocalMember((member) { 99 library.forEachLocalMember((member) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 library lib; 166 library lib;
166 167
167 import 'dart:mirrors'; 168 import 'dart:mirrors';
168 169
169 useReflect(type) { 170 useReflect(type) {
170 print(new Symbol('Foo')); 171 print(new Symbol('Foo'));
171 print(MirrorSystem.getName(reflectClass(type).owner.qualifiedName)); 172 print(MirrorSystem.getName(reflectClass(type).owner.qualifiedName));
172 } 173 }
173 """, 174 """,
174 }; 175 };
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/ssa_tracer.dart ('k') | tests/html/custom_element_method_clash_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698