| Index: pkg/analyzer/lib/src/generated/testing/test_type_provider.dart
 | 
| diff --git a/pkg/analyzer/lib/src/generated/testing/test_type_provider.dart b/pkg/analyzer/lib/src/generated/testing/test_type_provider.dart
 | 
| index 5f1a49b40735eb36c3cd7008a5aaed0458bc8f52..6f211908e23a84611f484f465c300881562205fb 100644
 | 
| --- a/pkg/analyzer/lib/src/generated/testing/test_type_provider.dart
 | 
| +++ b/pkg/analyzer/lib/src/generated/testing/test_type_provider.dart
 | 
| @@ -4,11 +4,11 @@
 | 
|  
 | 
|  library analyzer.src.generated.testing.test_type_provider;
 | 
|  
 | 
| +import 'package:analyzer/dart/ast/ast.dart';
 | 
|  import 'package:analyzer/dart/element/element.dart';
 | 
|  import 'package:analyzer/dart/element/type.dart';
 | 
|  import 'package:analyzer/src/dart/element/element.dart';
 | 
|  import 'package:analyzer/src/dart/element/type.dart';
 | 
| -import 'package:analyzer/src/generated/ast.dart';
 | 
|  import 'package:analyzer/src/generated/constant.dart';
 | 
|  import 'package:analyzer/src/generated/resolver.dart';
 | 
|  import 'package:analyzer/src/generated/scanner.dart';
 | 
| @@ -181,8 +181,8 @@ class TestTypeProvider implements TypeProvider {
 | 
|      if (_deprecatedType == null) {
 | 
|        ClassElementImpl deprecatedElement =
 | 
|            ElementFactory.classElement2("Deprecated");
 | 
| -      ConstructorElementImpl constructor = ElementFactory.constructorElement(
 | 
| -          deprecatedElement, null, true, [stringType]);
 | 
| +      ConstructorElementImpl constructor = ElementFactory
 | 
| +          .constructorElement(deprecatedElement, null, true, [stringType]);
 | 
|        constructor.constantInitializers = <ConstructorInitializer>[
 | 
|          AstFactory.constructorFieldInitializer(
 | 
|              true, 'expires', AstFactory.identifier3('expires'))
 | 
| @@ -317,8 +317,8 @@ class TestTypeProvider implements TypeProvider {
 | 
|        ]);
 | 
|        listElement.methods = <MethodElement>[
 | 
|          ElementFactory.methodElement("[]", eType, [intType]),
 | 
| -        ElementFactory.methodElement(
 | 
| -            "[]=", VoidTypeImpl.instance, [intType, eType]),
 | 
| +        ElementFactory
 | 
| +            .methodElement("[]=", VoidTypeImpl.instance, [intType, eType]),
 | 
|          ElementFactory.methodElement("add", VoidTypeImpl.instance, [eType])
 | 
|        ];
 | 
|        _propagateTypeArguments(listElement);
 | 
| @@ -339,8 +339,8 @@ class TestTypeProvider implements TypeProvider {
 | 
|        ]);
 | 
|        mapElement.methods = <MethodElement>[
 | 
|          ElementFactory.methodElement("[]", vType, [objectType]),
 | 
| -        ElementFactory.methodElement(
 | 
| -            "[]=", VoidTypeImpl.instance, [kType, vType])
 | 
| +        ElementFactory
 | 
| +            .methodElement("[]=", VoidTypeImpl.instance, [kType, vType])
 | 
|        ];
 | 
|        mapElement.constructors = <ConstructorElement>[
 | 
|          ElementFactory.constructorElement(mapElement, null, false)
 | 
| @@ -475,8 +475,8 @@ class TestTypeProvider implements TypeProvider {
 | 
|    InterfaceType get symbolType {
 | 
|      if (_symbolType == null) {
 | 
|        ClassElementImpl symbolClass = ElementFactory.classElement2("Symbol");
 | 
| -      ConstructorElementImpl constructor = ElementFactory.constructorElement(
 | 
| -          symbolClass, null, true, [stringType]);
 | 
| +      ConstructorElementImpl constructor = ElementFactory
 | 
| +          .constructorElement(symbolClass, null, true, [stringType]);
 | 
|        constructor.factory = true;
 | 
|        constructor.isCycleFree = true;
 | 
|        symbolClass.constructors = <ConstructorElement>[constructor];
 | 
| @@ -555,10 +555,10 @@ class TestTypeProvider implements TypeProvider {
 | 
|        ElementFactory.methodElement("toInt", _intType),
 | 
|        ElementFactory.methodElement("toDouble", _doubleType),
 | 
|        ElementFactory.methodElement("toStringAsFixed", _stringType, [_intType]),
 | 
| -      ElementFactory.methodElement(
 | 
| -          "toStringAsExponential", _stringType, [_intType]),
 | 
| -      ElementFactory.methodElement(
 | 
| -          "toStringAsPrecision", _stringType, [_intType]),
 | 
| +      ElementFactory
 | 
| +          .methodElement("toStringAsExponential", _stringType, [_intType]),
 | 
| +      ElementFactory
 | 
| +          .methodElement("toStringAsPrecision", _stringType, [_intType]),
 | 
|        ElementFactory.methodElement("toRadixString", _stringType, [_intType])
 | 
|      ];
 | 
|      intElement.methods = <MethodElement>[
 | 
| 
 |