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

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

Issue 12018015: Implement substitution for type variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed obsolete function. 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
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 library _foreign_helper; 5 library _foreign_helper;
6 6
7 /** 7 /**
8 * Emits a JavaScript code fragment parameterized by arguments. 8 * Emits a JavaScript code fragment parameterized by arguments.
9 * 9 *
10 * Hash characters `#` in the [codeTemplate] are replaced in left-to-right order 10 * Hash characters `#` in the [codeTemplate] are replaced in left-to-right order
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 126
127 /** 127 /**
128 * Creates an isolate and returns it. 128 * Creates an isolate and returns it.
129 */ 129 */
130 dynamic JS_CREATE_ISOLATE() {} 130 dynamic JS_CREATE_ISOLATE() {}
131 131
132 /** 132 /**
133 * Returns the prefix used for generated is checks on classes. 133 * Returns the prefix used for generated is checks on classes.
134 */ 134 */
135 String JS_OPERATOR_IS_PREFIX() {} 135 String JS_OPERATOR_IS_PREFIX() {}
136
137 /**
138 * Returns the prefix used for generated type argument substitutions on classes.
139 */
140 String JS_OPERATOR_AS_PREFIX() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698