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

Side by Side Diff: pkg/analyzer/lib/src/dart/analysis/file_state.dart

Issue 2990323002: Move byte_store.dart and file_byte_store.dart to their own subdirectory. (Closed)
Patch Set: Created 3 years, 4 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
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 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 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 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:convert'; 6 import 'dart:convert';
7 import 'dart:typed_data'; 7 import 'dart:typed_data';
8 8
9 import 'package:analyzer/dart/ast/ast.dart'; 9 import 'package:analyzer/dart/ast/ast.dart';
10 import 'package:analyzer/dart/ast/token.dart'; 10 import 'package:analyzer/dart/ast/token.dart';
(...skipping 16 matching lines...) Expand all
27 import 'package:analyzer/src/summary/name_filter.dart'; 27 import 'package:analyzer/src/summary/name_filter.dart';
28 import 'package:analyzer/src/summary/package_bundle_reader.dart'; 28 import 'package:analyzer/src/summary/package_bundle_reader.dart';
29 import 'package:analyzer/src/summary/summarize_ast.dart'; 29 import 'package:analyzer/src/summary/summarize_ast.dart';
30 import 'package:convert/convert.dart'; 30 import 'package:convert/convert.dart';
31 import 'package:crypto/crypto.dart'; 31 import 'package:crypto/crypto.dart';
32 import 'package:front_end/src/base/api_signature.dart'; 32 import 'package:front_end/src/base/api_signature.dart';
33 import 'package:front_end/src/base/performace_logger.dart'; 33 import 'package:front_end/src/base/performace_logger.dart';
34 import 'package:front_end/src/fasta/builder/builder.dart' as fasta; 34 import 'package:front_end/src/fasta/builder/builder.dart' as fasta;
35 import 'package:front_end/src/fasta/parser/parser.dart' as fasta; 35 import 'package:front_end/src/fasta/parser/parser.dart' as fasta;
36 import 'package:front_end/src/fasta/scanner.dart' as fasta; 36 import 'package:front_end/src/fasta/scanner.dart' as fasta;
37 import 'package:front_end/src/incremental/byte_store.dart'; 37 import 'package:front_end/src/byte_store/byte_store.dart';
38 import 'package:meta/meta.dart'; 38 import 'package:meta/meta.dart';
39 39
40 /** 40 /**
41 * [FileContentOverlay] is used to temporary override content of files. 41 * [FileContentOverlay] is used to temporary override content of files.
42 */ 42 */
43 class FileContentOverlay { 43 class FileContentOverlay {
44 final _map = <String, String>{}; 44 final _map = <String, String>{};
45 45
46 /** 46 /**
47 * Return the paths currently being overridden. 47 * Return the paths currently being overridden.
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 943
944 /** 944 /**
945 * Information about changes to the known file set. 945 * Information about changes to the known file set.
946 */ 946 */
947 class KnownFilesSetChange { 947 class KnownFilesSetChange {
948 final Set<String> added; 948 final Set<String> added;
949 final Set<String> removed; 949 final Set<String> removed;
950 950
951 KnownFilesSetChange(this.added, this.removed); 951 KnownFilesSetChange(this.added, this.removed);
952 } 952 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698