| 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'; | 11 import 'package:compiler/src/common.dart'; |
| 12 import 'package:compiler/src/constants/constructors.dart'; | 12 import 'package:compiler/src/constants/constructors.dart'; |
| 13 import 'package:compiler/src/constants/expressions.dart'; | 13 import 'package:compiler/src/constants/expressions.dart'; |
| 14 import 'package:compiler/src/dart_types.dart'; | 14 import 'package:compiler/src/dart_types.dart'; |
| 15 import 'package:compiler/src/compiler.dart'; | 15 import 'package:compiler/src/compiler.dart'; |
| 16 import 'package:compiler/src/diagnostics/invariant.dart'; | 16 import 'package:compiler/src/diagnostics/invariant.dart'; |
| 17 import 'package:compiler/src/elements/elements.dart'; | 17 import 'package:compiler/src/elements/elements.dart'; |
| 18 import 'package:compiler/src/elements/visitor.dart'; | 18 import 'package:compiler/src/elements/visitor.dart'; |
| 19 import 'package:compiler/src/ordered_typeset.dart'; | 19 import 'package:compiler/src/ordered_typeset.dart'; |
| 20 import 'package:compiler/src/serialization/element_serialization.dart'; | 20 import 'package:compiler/src/serialization/element_serialization.dart'; |
| 21 import 'package:compiler/src/serialization/equivalence.dart'; | 21 import 'package:compiler/src/serialization/equivalence.dart'; |
| 22 import 'package:compiler/src/serialization/json_serializer.dart'; | 22 import 'package:compiler/src/serialization/json_serializer.dart'; |
| 23 import 'package:compiler/src/serialization/serialization.dart'; | 23 import 'package:compiler/src/serialization/serialization.dart'; |
| 24 import 'serialization_test_helper.dart'; | 24 import 'test_helper.dart'; |
| 25 | 25 |
| 26 main(List<String> arguments) { | 26 main(List<String> arguments) { |
| 27 // Ensure that we can print out constant expressions. | 27 // Ensure that we can print out constant expressions. |
| 28 DEBUG_MODE = true; | 28 DEBUG_MODE = true; |
| 29 | 29 |
| 30 Uri entryPoint; | 30 Uri entryPoint; |
| 31 String outPath; | 31 String outPath; |
| 32 bool prettyPrint = false; | 32 bool prettyPrint = false; |
| 33 for (String arg in arguments) { | 33 for (String arg in arguments) { |
| 34 if (arg.startsWith('--')) { | 34 if (arg.startsWith('--')) { |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 void visitPrefixElement(PrefixElement element1, PrefixElement element2) { | 695 void visitPrefixElement(PrefixElement element1, PrefixElement element2) { |
| 696 check( | 696 check( |
| 697 element1, element2, 'isDeferred', | 697 element1, element2, 'isDeferred', |
| 698 element1.isDeferred, element2.isDeferred); | 698 element1.isDeferred, element2.isDeferred); |
| 699 checkElementIdentities( | 699 checkElementIdentities( |
| 700 element1, element2, 'importedLibrary', | 700 element1, element2, 'importedLibrary', |
| 701 element1.deferredImport, element2.deferredImport); | 701 element1.deferredImport, element2.deferredImport); |
| 702 // TODO(johnniwinther): Check members. | 702 // TODO(johnniwinther): Check members. |
| 703 } | 703 } |
| 704 } | 704 } |
| OLD | NEW |