| Index: pkg/front_end/lib/src/fasta/target_implementation.dart | 
| diff --git a/pkg/front_end/lib/src/fasta/target_implementation.dart b/pkg/front_end/lib/src/fasta/target_implementation.dart | 
| index 7a7f3b4ab1b99c7368e16bbf9d5cca3b8116618d..58781f6c1f174de970228bfff5e244d876dff0c6 100644 | 
| --- a/pkg/front_end/lib/src/fasta/target_implementation.dart | 
| +++ b/pkg/front_end/lib/src/fasta/target_implementation.dart | 
| @@ -87,16 +87,6 @@ abstract class TargetImplementation extends Target { | 
| bypassLibraryPrivacy: true); | 
| } | 
|  | 
| -  /// Returns a reference to the constructor of [FallThroughError] error.  The | 
| -  /// constructor is expected to accept no arguments. | 
| -  Builder getFallThroughError(Loader loader) { | 
| -    if (cachedFallThroughError != null) { | 
| -      return cachedFallThroughError; | 
| -    } | 
| -    return cachedFallThroughError = | 
| -        loader.coreLibrary.getConstructor("FallThroughError"); | 
| -  } | 
| - | 
| /// Returns a reference to the constructor used for creating `native` | 
| /// annotations. The constructor is expected to accept a single argument of | 
| /// type String, which is the name of the native method. | 
|  |