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

Side by Side Diff: pkg/compiler/lib/src/js_emitter/js_emitter.dart

Issue 1172693003: Move computeType to TypedElement and TypeDeclarationElement. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « pkg/compiler/lib/src/enqueue.dart ('k') | pkg/compiler/lib/src/js_emitter/native_emitter.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:convert'; 7 import 'dart:convert';
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 10 matching lines...) Expand all
21 TypedefType; 21 TypedefType;
22 22
23 import '../io/code_output.dart'; 23 import '../io/code_output.dart';
24 24
25 import '../elements/elements.dart' show 25 import '../elements/elements.dart' show
26 ConstructorBodyElement, 26 ConstructorBodyElement,
27 ElementKind, 27 ElementKind,
28 FieldElement, 28 FieldElement,
29 ParameterElement, 29 ParameterElement,
30 TypeVariableElement, 30 TypeVariableElement,
31 MethodElement; 31 MethodElement,
32 MemberElement;
32 33
33 import '../hash/sha1.dart' show Hasher; 34 import '../hash/sha1.dart' show Hasher;
34 35
35 import '../helpers/helpers.dart'; // Included for debug helpers. 36 import '../helpers/helpers.dart'; // Included for debug helpers.
36 37
37 import '../js/js.dart' as jsAst; 38 import '../js/js.dart' as jsAst;
38 import '../js/js.dart' show 39 import '../js/js.dart' show
39 js; 40 js;
40 41
41 import '../js_backend/js_backend.dart' show 42 import '../js_backend/js_backend.dart' show
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 106
106 part 'old_emitter/class_builder.dart'; 107 part 'old_emitter/class_builder.dart';
107 part 'old_emitter/class_emitter.dart'; 108 part 'old_emitter/class_emitter.dart';
108 part 'old_emitter/code_emitter_helper.dart'; 109 part 'old_emitter/code_emitter_helper.dart';
109 part 'old_emitter/container_builder.dart'; 110 part 'old_emitter/container_builder.dart';
110 part 'old_emitter/declarations.dart'; 111 part 'old_emitter/declarations.dart';
111 part 'old_emitter/emitter.dart'; 112 part 'old_emitter/emitter.dart';
112 part 'old_emitter/interceptor_emitter.dart'; 113 part 'old_emitter/interceptor_emitter.dart';
113 part 'old_emitter/nsm_emitter.dart'; 114 part 'old_emitter/nsm_emitter.dart';
114 part 'old_emitter/setup_program_builder.dart'; 115 part 'old_emitter/setup_program_builder.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/enqueue.dart ('k') | pkg/compiler/lib/src/js_emitter/native_emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698