| Index: sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart b/sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart
|
| index 622e1a2f12d39946163539e2f318a83501464ea1..b1b2c7c5ffa9ecde02a3a8b47674e97d41b4caf4 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart
|
| @@ -414,7 +414,7 @@ class ConcreteTypesEnvironment {
|
| Types types = inferrer.compiler.types;
|
| bool paramMatches(ConcreteType concrete, VariableElement parameter) {
|
| DartType parameterType = parameter.variables.type;
|
| - if (parameterType.treatAsDynamic || parameterType.isRaw) {
|
| + if (parameterType.treatAsDynamic || parameterType.treatAsRaw) {
|
| return true;
|
| }
|
| for (BaseType baseType in concrete.baseTypes) {
|
|
|