| 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 test.src.serialization.elements_test; | 5 library test.src.serialization.elements_test; |
| 6 | 6 |
| 7 import 'package:analyzer/src/generated/element.dart'; | 7 import 'package:analyzer/src/generated/element.dart'; |
| 8 import 'package:analyzer/src/generated/source.dart'; | 8 import 'package:analyzer/src/generated/source.dart'; |
| 9 import 'package:analyzer/src/summary/builder.dart'; | 9 import 'package:analyzer/src/summary/base.dart'; |
| 10 import 'package:analyzer/src/summary/format.dart'; | 10 import 'package:analyzer/src/summary/format.dart'; |
| 11 import 'package:analyzer/src/summary/resynthesize.dart'; | 11 import 'package:analyzer/src/summary/resynthesize.dart'; |
| 12 import 'package:analyzer/src/summary/summarize_elements.dart'; | 12 import 'package:analyzer/src/summary/summarize_elements.dart'; |
| 13 import 'package:unittest/unittest.dart'; | 13 import 'package:unittest/unittest.dart'; |
| 14 | 14 |
| 15 import '../../generated/resolver_test.dart'; | 15 import '../../generated/resolver_test.dart'; |
| 16 import '../../reflective_tests.dart'; | 16 import '../../reflective_tests.dart'; |
| 17 | 17 |
| 18 main() { | 18 main() { |
| 19 groupSep = ' | '; | 19 groupSep = ' | '; |
| (...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 } | 1047 } |
| 1048 | 1048 |
| 1049 test_variable_const() { | 1049 test_variable_const() { |
| 1050 checkLibrary('const int i = 0;'); | 1050 checkLibrary('const int i = 0;'); |
| 1051 } | 1051 } |
| 1052 | 1052 |
| 1053 test_variables() { | 1053 test_variables() { |
| 1054 checkLibrary('int i; int j;'); | 1054 checkLibrary('int i; int j;'); |
| 1055 } | 1055 } |
| 1056 } | 1056 } |
| OLD | NEW |