| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, the Dart project authors. | 2 * Copyright (c) 2013, the Dart project authors. |
| 3 * | 3 * |
| 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except | 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except |
| 5 * in compliance with the License. You may obtain a copy of the License at | 5 * in compliance with the License. You may obtain a copy of the License at |
| 6 * | 6 * |
| 7 * http://www.eclipse.org/legal/epl-v10.html | 7 * http://www.eclipse.org/legal/epl-v10.html |
| 8 * | 8 * |
| 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License | 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License |
| 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express | 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 public InterfaceType getFunctionType(); | 66 public InterfaceType getFunctionType(); |
| 67 | 67 |
| 68 /** | 68 /** |
| 69 * Return the type representing the built-in type 'int'. | 69 * Return the type representing the built-in type 'int'. |
| 70 * | 70 * |
| 71 * @return the type representing the built-in type 'int' | 71 * @return the type representing the built-in type 'int' |
| 72 */ | 72 */ |
| 73 public InterfaceType getIntType(); | 73 public InterfaceType getIntType(); |
| 74 | 74 |
| 75 /** | 75 /** |
| 76 * Return the type representing the type 'Iterable<dynamic>'. |
| 77 */ |
| 78 public InterfaceType getIterableDynamicType(); |
| 79 |
| 80 /** |
| 81 * Return the type representing the built-in type 'Iterable'. |
| 82 */ |
| 83 public InterfaceType getIterableType(); |
| 84 |
| 85 /** |
| 76 * Return the type representing the built-in type 'List'. | 86 * Return the type representing the built-in type 'List'. |
| 77 * | 87 * |
| 78 * @return the type representing the built-in type 'List' | 88 * @return the type representing the built-in type 'List' |
| 79 */ | 89 */ |
| 80 public InterfaceType getListType(); | 90 public InterfaceType getListType(); |
| 81 | 91 |
| 82 /** | 92 /** |
| 83 * Return the type representing the built-in type 'Map'. | 93 * Return the type representing the built-in type 'Map'. |
| 84 * | 94 * |
| 85 * @return the type representing the built-in type 'Map' | 95 * @return the type representing the built-in type 'Map' |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 */ | 138 */ |
| 129 public InterfaceType getSymbolType(); | 139 public InterfaceType getSymbolType(); |
| 130 | 140 |
| 131 /** | 141 /** |
| 132 * Return the type representing the built-in type 'Type'. | 142 * Return the type representing the built-in type 'Type'. |
| 133 * | 143 * |
| 134 * @return the type representing the built-in type 'Type' | 144 * @return the type representing the built-in type 'Type' |
| 135 */ | 145 */ |
| 136 public InterfaceType getTypeType(); | 146 public InterfaceType getTypeType(); |
| 137 } | 147 } |
| OLD | NEW |