| OLD | NEW |
| 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 Loading... |
| 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() {} |
| OLD | NEW |