| OLD | NEW |
| 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:convert'; | 5 import 'dart:convert'; |
| 6 import 'dart:typed_data'; | 6 import 'dart:typed_data'; |
| 7 | 7 |
| 8 import 'package:analyzer/dart/ast/ast.dart'; | 8 import 'package:analyzer/dart/ast/ast.dart'; |
| 9 import 'package:analyzer/dart/ast/token.dart'; | 9 import 'package:analyzer/dart/ast/token.dart'; |
| 10 import 'package:analyzer/error/listener.dart'; | 10 import 'package:analyzer/error/listener.dart'; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 import 'package:analyzer/src/summary/format.dart'; | 25 import 'package:analyzer/src/summary/format.dart'; |
| 26 import 'package:analyzer/src/summary/idl.dart'; | 26 import 'package:analyzer/src/summary/idl.dart'; |
| 27 import 'package:analyzer/src/summary/name_filter.dart'; | 27 import 'package:analyzer/src/summary/name_filter.dart'; |
| 28 import 'package:analyzer/src/summary/summarize_ast.dart'; | 28 import 'package:analyzer/src/summary/summarize_ast.dart'; |
| 29 import 'package:convert/convert.dart'; | 29 import 'package:convert/convert.dart'; |
| 30 import 'package:crypto/crypto.dart'; | 30 import 'package:crypto/crypto.dart'; |
| 31 import 'package:analyzer/src/fasta/ast_builder.dart' as fasta; | 31 import 'package:analyzer/src/fasta/ast_builder.dart' as fasta; |
| 32 import 'package:analyzer/src/fasta/element_store.dart' as fasta; | 32 import 'package:analyzer/src/fasta/element_store.dart' as fasta; |
| 33 import 'package:analyzer/src/fasta/mock_element.dart' as fasta; | 33 import 'package:analyzer/src/fasta/mock_element.dart' as fasta; |
| 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/builder/scope.dart' as fasta; | |
| 36 import 'package:front_end/src/fasta/parser/parser.dart' as fasta; | 35 import 'package:front_end/src/fasta/parser/parser.dart' as fasta; |
| 37 import 'package:front_end/src/fasta/scanner.dart' as fasta; | 36 import 'package:front_end/src/fasta/scanner.dart' as fasta; |
| 38 import 'package:meta/meta.dart'; | 37 import 'package:meta/meta.dart'; |
| 39 | 38 |
| 40 /** | 39 /** |
| 41 * [FileContentOverlay] is used to temporary override content of files. | 40 * [FileContentOverlay] is used to temporary override content of files. |
| 42 */ | 41 */ |
| 43 class FileContentOverlay { | 42 class FileContentOverlay { |
| 44 final _map = <String, String>{}; | 43 final _map = <String, String>{}; |
| 45 | 44 |
| (...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); | 801 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); |
| 803 } | 802 } |
| 804 | 803 |
| 805 class _FastaEmptyScope extends fasta.Scope { | 804 class _FastaEmptyScope extends fasta.Scope { |
| 806 _FastaEmptyScope() : super({}, null); | 805 _FastaEmptyScope() : super({}, null); |
| 807 } | 806 } |
| 808 | 807 |
| 809 class _FastaInterfaceTypeProxy implements fasta.KernelInterfaceType { | 808 class _FastaInterfaceTypeProxy implements fasta.KernelInterfaceType { |
| 810 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); | 809 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); |
| 811 } | 810 } |
| OLD | NEW |