| Index: pkg/compiler/lib/src/native/behavior.dart
|
| diff --git a/pkg/compiler/lib/src/native/behavior.dart b/pkg/compiler/lib/src/native/behavior.dart
|
| index f02a29631b04de2e94981ae4307c44b065c5d560..fd95c87897735b44dd0b3af2536f7fc6c8b3001f 100644
|
| --- a/pkg/compiler/lib/src/native/behavior.dart
|
| +++ b/pkg/compiler/lib/src/native/behavior.dart
|
| @@ -897,7 +897,7 @@ abstract class BehaviorBuilder {
|
| 'Annotations needs one string: ${value.toStructuredText()}');
|
| }
|
| StringConstantValue specStringConstant = fields.single;
|
| - String specString = specStringConstant.toDartString().slowToString();
|
| + String specString = specStringConstant.primitiveValue;
|
| for (final typeString in specString.split('|')) {
|
| var type = NativeBehavior._parseType(typeString, lookupType);
|
| if (types == null) types = [];
|
|
|