| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 class Type extends Element { | 5 class Type extends Element { |
| 6 bool isTested = false; | 6 bool isTested = false; |
| 7 bool isChecked = false; | 7 bool isChecked = false; |
| 8 bool isWritten = false; | 8 bool isWritten = false; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 1125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1136 assert(isGeneric); | 1136 assert(isGeneric); |
| 1137 var jsnames = []; | 1137 var jsnames = []; |
| 1138 var names = []; | 1138 var names = []; |
| 1139 var typeMap = {}; | 1139 var typeMap = {}; |
| 1140 bool allVar = true; | 1140 bool allVar = true; |
| 1141 for (int i=0; i < typeArgs.length; i++) { | 1141 for (int i=0; i < typeArgs.length; i++) { |
| 1142 var typeArg = typeArgs[i]; | 1142 var typeArg = typeArgs[i]; |
| 1143 if (typeArg is ParameterType) { | 1143 if (typeArg is ParameterType) { |
| 1144 typeArg = world.varType; | 1144 typeArg = world.varType; |
| 1145 typeArgs[i] = typeArg; | 1145 typeArgs[i] = typeArg; |
error: old chunk mismatch |
None
| OLD | NEW |