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

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

Issue 363223003: Revert "Emit declarations for typedefs that are needed by reflection." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 '../common.dart'; 7 import '../common.dart';
8 8
9 import '../js/js.dart' as jsAst; 9 import '../js/js.dart' as jsAst;
10 10
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 import '../util/uri_extras.dart' show 59 import '../util/uri_extras.dart' show
60 relativize; 60 relativize;
61 61
62 import '../util/util.dart' show 62 import '../util/util.dart' show
63 equalElements; 63 equalElements;
64 64
65 import '../deferred_load.dart' show 65 import '../deferred_load.dart' show
66 OutputUnit; 66 OutputUnit;
67 67
68 import '../runtime_data.dart' as encoding;
69
70 part 'class_builder.dart'; 68 part 'class_builder.dart';
71 part 'class_emitter.dart'; 69 part 'class_emitter.dart';
72 part 'code_emitter_helper.dart'; 70 part 'code_emitter_helper.dart';
73 part 'code_emitter_task.dart'; 71 part 'code_emitter_task.dart';
74 part 'container_builder.dart'; 72 part 'container_builder.dart';
75 part 'declarations.dart'; 73 part 'declarations.dart';
76 part 'helpers.dart'; 74 part 'helpers.dart';
77 part 'interceptor_emitter.dart'; 75 part 'interceptor_emitter.dart';
78 part 'metadata_emitter.dart'; 76 part 'metadata_emitter.dart';
79 part 'nsm_emitter.dart'; 77 part 'nsm_emitter.dart';
80 part 'reflection_data_parser.dart'; 78 part 'reflection_data_parser.dart';
81 part 'type_test_emitter.dart'; 79 part 'type_test_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698