OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /// Common logic needed to provide a Dart SDK to the analyzer's resolver. This | 5 /// Common logic needed to provide a Dart SDK to the analyzer's resolver. This |
6 /// includes logic to determine where the sdk is located in the filesystem, and | 6 /// includes logic to determine where the sdk is located in the filesystem, and |
7 /// definitions to provide mock sdks. | 7 /// definitions to provide mock sdks. |
8 library dev_compiler.src.checker.dart_sdk; | 8 library dev_compiler.src.dart_sdk; |
9 | 9 |
10 import 'package:analyzer/src/generated/engine.dart'; | 10 import 'package:analyzer/src/generated/engine.dart'; |
11 import 'package:analyzer/src/generated/sdk.dart'; | 11 import 'package:analyzer/src/generated/sdk.dart'; |
12 import 'package:analyzer/src/generated/source.dart'; | 12 import 'package:analyzer/src/generated/source.dart'; |
13 | 13 |
14 /// Dart SDK which contains a mock implementation of the SDK libraries. May be | 14 /// Dart SDK which contains a mock implementation of the SDK libraries. May be |
15 /// used to speed up execution when most of the core libraries is not needed. | 15 /// used to speed up execution when most of the core libraries is not needed. |
16 class MockDartSdk implements DartSdk { | 16 class MockDartSdk implements DartSdk { |
17 final Map<Uri, _MockSdkSource> _sources = {}; | 17 final Map<Uri, _MockSdkSource> _sources = {}; |
18 final bool reportMissing; | 18 final bool reportMissing; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 class Future<T> { | 154 class Future<T> { |
155 Future then(callback) {} | 155 Future then(callback) {} |
156 } | 156 } |
157 class Stream<T> {} | 157 class Stream<T> {} |
158 ''', | 158 ''', |
159 'dart:html': ''' | 159 'dart:html': ''' |
160 library dart.html; | 160 library dart.html; |
161 class HtmlElement {} | 161 class HtmlElement {} |
162 ''', | 162 ''', |
163 }; | 163 }; |
OLD | NEW |