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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart

Issue 27689002: Reapply "Add TypeVariable object on runtime to support reflection on type variables." and … (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix: include classes with members needed for reflection. Created 7 years, 2 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 library dart2js.js_emitter; 5 library dart2js.js_emitter;
6 6
7 import 'dart:collection' show Queue; 7 import 'dart:collection' show Queue;
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 18 matching lines...) Expand all
29 CheckedModeHelper, 29 CheckedModeHelper,
30 ConstantEmitter, 30 ConstantEmitter,
31 CustomElementsAnalysis, 31 CustomElementsAnalysis,
32 JavaScriptBackend, 32 JavaScriptBackend,
33 JavaScriptBackend, 33 JavaScriptBackend,
34 Namer, 34 Namer,
35 NativeEmitter, 35 NativeEmitter,
36 RuntimeTypes, 36 RuntimeTypes,
37 Substitution, 37 Substitution,
38 TypeCheck, 38 TypeCheck,
39 TypeChecks; 39 TypeChecks,
40 TypeVariableHandler;
40 41
41 import '../source_file.dart' show 42 import '../source_file.dart' show
42 SourceFile; 43 SourceFile;
43 44
44 import '../source_map_builder.dart' show 45 import '../source_map_builder.dart' show
45 SourceMapBuilder; 46 SourceMapBuilder;
46 47
47 import '../util/characters.dart' show 48 import '../util/characters.dart' show
48 $$, 49 $$,
49 $A, 50 $A,
(...skipping 12 matching lines...) Expand all
62 part 'code_emitter_helper.dart'; 63 part 'code_emitter_helper.dart';
63 part 'code_emitter_task.dart'; 64 part 'code_emitter_task.dart';
64 part 'container_builder.dart'; 65 part 'container_builder.dart';
65 part 'declarations.dart'; 66 part 'declarations.dart';
66 part 'helpers.dart'; 67 part 'helpers.dart';
67 part 'interceptor_emitter.dart'; 68 part 'interceptor_emitter.dart';
68 part 'metadata_emitter.dart'; 69 part 'metadata_emitter.dart';
69 part 'nsm_emitter.dart'; 70 part 'nsm_emitter.dart';
70 part 'reflection_data_parser.dart'; 71 part 'reflection_data_parser.dart';
71 part 'type_test_emitter.dart'; 72 part 'type_test_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698