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 library dart2js.serialization_test; | 5 library dart2js.serialization_test; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 import '../memory_compiler.dart'; | 8 import '../memory_compiler.dart'; |
9 import 'package:async_helper/async_helper.dart'; | 9 import 'package:async_helper/async_helper.dart'; |
10 import 'package:compiler/src/commandline_options.dart'; | 10 import 'package:compiler/src/commandline_options.dart'; |
11 import 'package:compiler/src/common.dart'; | |
12 import 'package:compiler/src/constants/constructors.dart'; | 11 import 'package:compiler/src/constants/constructors.dart'; |
13 import 'package:compiler/src/constants/expressions.dart'; | |
14 import 'package:compiler/src/dart_types.dart'; | |
15 import 'package:compiler/src/compiler.dart'; | 12 import 'package:compiler/src/compiler.dart'; |
16 import 'package:compiler/src/diagnostics/invariant.dart'; | 13 import 'package:compiler/src/diagnostics/invariant.dart'; |
17 import 'package:compiler/src/elements/elements.dart'; | 14 import 'package:compiler/src/elements/elements.dart'; |
18 import 'package:compiler/src/elements/visitor.dart'; | 15 import 'package:compiler/src/elements/visitor.dart'; |
19 import 'package:compiler/src/ordered_typeset.dart'; | 16 import 'package:compiler/src/ordered_typeset.dart'; |
20 import 'package:compiler/src/serialization/element_serialization.dart'; | 17 import 'package:compiler/src/serialization/element_serialization.dart'; |
21 import 'package:compiler/src/serialization/equivalence.dart'; | 18 import 'package:compiler/src/serialization/equivalence.dart'; |
22 import 'package:compiler/src/serialization/json_serializer.dart'; | 19 import 'package:compiler/src/serialization/json_serializer.dart'; |
23 import 'package:compiler/src/serialization/serialization.dart'; | 20 import 'package:compiler/src/serialization/serialization.dart'; |
24 import 'test_helper.dart'; | 21 import 'test_helper.dart'; |
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 void visitPrefixElement(PrefixElement element1, PrefixElement element2) { | 689 void visitPrefixElement(PrefixElement element1, PrefixElement element2) { |
693 check( | 690 check( |
694 element1, element2, 'isDeferred', | 691 element1, element2, 'isDeferred', |
695 element1.isDeferred, element2.isDeferred); | 692 element1.isDeferred, element2.isDeferred); |
696 checkElementIdentities( | 693 checkElementIdentities( |
697 element1, element2, 'importedLibrary', | 694 element1, element2, 'importedLibrary', |
698 element1.deferredImport, element2.deferredImport); | 695 element1.deferredImport, element2.deferredImport); |
699 // TODO(johnniwinther): Check members. | 696 // TODO(johnniwinther): Check members. |
700 } | 697 } |
701 } | 698 } |
OLD | NEW |