| OLD | NEW |
| 1 /// ---- AUTOGENERATED: DO NOT EDIT THIS FILE -------------- | 1 /// ---- AUTOGENERATED: DO NOT EDIT THIS FILE -------------- |
| 2 /// To update this test file, call: | 2 /// To update this test file, call: |
| 3 /// > dart codegen/end_to_end_test.dart --update_static_test | 3 /// > dart codegen/end_to_end_test.dart --update_static_test |
| 4 /// -------------------------------------------------------- | 4 /// -------------------------------------------------------- |
| 5 | 5 |
| 6 library smoke.test.static_test; | 6 library smoke.test.static_test; |
| 7 | 7 |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:test/test.dart'; |
| 9 import 'package:smoke/smoke.dart' show Declaration, PROPERTY, METHOD; | 9 import 'package:smoke/smoke.dart' show Declaration, PROPERTY, METHOD; |
| 10 import 'package:smoke/static.dart' show useGeneratedCode, StaticConfiguration; | 10 import 'package:smoke/static.dart' show useGeneratedCode, StaticConfiguration; |
| 11 import 'common.dart' as smoke_0; | 11 import 'common.dart' as smoke_0; |
| 12 import 'common.dart' as common show main; | 12 import 'common.dart' as common show main; |
| 13 | 13 |
| 14 abstract class _M0 {} // C & A | 14 abstract class _M0 {} // C & A |
| 15 | 15 |
| 16 final configuration = new StaticConfiguration( | 16 final configuration = new StaticConfiguration( |
| 17 checkedMode: false, | 17 checkedMode: false, |
| 18 getters: { | 18 getters: { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 }, | 107 }, |
| 108 }, | 108 }, |
| 109 names: { | 109 names: { |
| 110 #i: r'i', | 110 #i: r'i', |
| 111 }); | 111 }); |
| 112 | 112 |
| 113 main() { | 113 main() { |
| 114 setUp(() => useGeneratedCode(configuration)); | 114 setUp(() => useGeneratedCode(configuration)); |
| 115 common.main(); | 115 common.main(); |
| 116 } | 116 } |
| OLD | NEW |