Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Side by Side Diff: lib/src/dart_sdk.dart

Issue 1355893003: Rewire DDC to use the analyzer task model (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Update pubspec Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/src/compiler.dart ('k') | lib/strong_mode.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.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 show AnalysisContext, TimestampedData;
11 import 'package:analyzer/src/generated/sdk.dart'; 12 import 'package:analyzer/src/generated/sdk.dart';
12 import 'package:analyzer/src/generated/source.dart'; 13 import 'package:analyzer/src/generated/source.dart';
14 import 'package:analyzer/src/context/context.dart';
13 15
14 /// Dart SDK which contains a mock implementation of the SDK libraries. May be 16 /// 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. 17 /// used to speed up execution when most of the core libraries is not needed.
16 class MockDartSdk implements DartSdk { 18 class MockDartSdk implements DartSdk {
17 final Map<Uri, _MockSdkSource> _sources = {}; 19 final Map<Uri, _MockSdkSource> _sources = {};
18 final bool reportMissing; 20 final bool reportMissing;
19 final Map<String, SdkLibrary> _libs = {}; 21 final Map<String, SdkLibrary> _libs = {};
20 final String sdkVersion = '0'; 22 final String sdkVersion = '0';
21 List<String> get uris => _sources.keys.map((uri) => '$uri').toList(); 23 List<String> get uris => _sources.keys.map((uri) => '$uri').toList();
22 final AnalysisContext context = new SdkAnalysisContext(); 24 final AnalysisContext context = new SdkAnalysisContext();
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 ''', 174 ''',
173 'dart:math': ''' 175 'dart:math': '''
174 library dart.math; 176 library dart.math;
175 class Random { 177 class Random {
176 bool nextBool() {} 178 bool nextBool() {}
177 } 179 }
178 num min(num x, num y) {} 180 num min(num x, num y) {}
179 num max(num x, num y) {} 181 num max(num x, num y) {}
180 ''', 182 ''',
181 }; 183 };
OLDNEW
« no previous file with comments | « lib/src/compiler.dart ('k') | lib/strong_mode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698