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

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

Issue 26472002: Add TypeVariable object on runtime to support reflection on type variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments. 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 LinkedHashMap, Queue; 7 import 'dart:collection' show LinkedHashMap, Queue;
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 17 matching lines...) Expand all
28 CheckedModeHelper, 28 CheckedModeHelper,
29 CheckedModeHelper, 29 CheckedModeHelper,
30 ConstantEmitter, 30 ConstantEmitter,
31 JavaScriptBackend, 31 JavaScriptBackend,
32 JavaScriptBackend, 32 JavaScriptBackend,
33 Namer, 33 Namer,
34 NativeEmitter, 34 NativeEmitter,
35 RuntimeTypes, 35 RuntimeTypes,
36 Substitution, 36 Substitution,
37 TypeCheck, 37 TypeCheck,
38 TypeChecks; 38 TypeChecks,
39 TypeVariableHandler;
39 40
40 import '../source_file.dart' show 41 import '../source_file.dart' show
41 SourceFile; 42 SourceFile;
42 43
43 import '../source_map_builder.dart' show 44 import '../source_map_builder.dart' show
44 SourceMapBuilder; 45 SourceMapBuilder;
45 46
46 import '../util/characters.dart' show 47 import '../util/characters.dart' show
47 $$, 48 $$,
48 $A, 49 $A,
(...skipping 10 matching lines...) Expand all
59 part 'class_emitter.dart'; 60 part 'class_emitter.dart';
60 part 'closure_invocation_element.dart'; 61 part 'closure_invocation_element.dart';
61 part 'code_emitter_helper.dart'; 62 part 'code_emitter_helper.dart';
62 part 'code_emitter_task.dart'; 63 part 'code_emitter_task.dart';
63 part 'container_builder.dart'; 64 part 'container_builder.dart';
64 part 'declarations.dart'; 65 part 'declarations.dart';
65 part 'helpers.dart'; 66 part 'helpers.dart';
66 part 'nsm_emitter.dart'; 67 part 'nsm_emitter.dart';
67 part 'reflection_data_parser.dart'; 68 part 'reflection_data_parser.dart';
68 part 'type_test_emitter.dart'; 69 part 'type_test_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698