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

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

Issue 12211012: Revert "Implement substitution for type variables." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/js_backend/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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 part of js_backend; 5 part of js_backend;
6 6
7 typedef void Recompile(Element element); 7 typedef void Recompile(Element element);
8 8
9 class ReturnInfo { 9 class ReturnInfo {
10 HType returnType; 10 HType returnType;
(...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 return compiler.findHelper(const SourceString('makeLiteralMap')); 1199 return compiler.findHelper(const SourceString('makeLiteralMap'));
1200 } 1200 }
1201 1201
1202 Element getSetRuntimeTypeInfo() { 1202 Element getSetRuntimeTypeInfo() {
1203 return compiler.findHelper(const SourceString('setRuntimeTypeInfo')); 1203 return compiler.findHelper(const SourceString('setRuntimeTypeInfo'));
1204 } 1204 }
1205 1205
1206 Element getGetRuntimeTypeInfo() { 1206 Element getGetRuntimeTypeInfo() {
1207 return compiler.findHelper(const SourceString('getRuntimeTypeInfo')); 1207 return compiler.findHelper(const SourceString('getRuntimeTypeInfo'));
1208 } 1208 }
1209
1210 Element getGetRuntimeTypeArgument() {
1211 return compiler.findHelper(const SourceString('getRuntimeTypeArgument'));
1212 }
1213 } 1209 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698