| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 import 'package:analyzer/file_system/physical_file_system.dart'; |
| 6 import 'package:analyzer/src/dart/sdk/sdk.dart'; |
| 7 import 'package:analyzer/src/generated/sdk.dart'; |
| 8 |
| 9 final DartSdk sdk = new FolderBasedDartSdk(PhysicalResourceProvider.INSTANCE, |
| 10 FolderBasedDartSdk.defaultSdkDirectory(PhysicalResourceProvider.INSTANCE)) |
| 11 ..useSummary = true; |
| OLD | NEW |