OLD | NEW |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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.frontend_strategy; | 5 library dart2js.frontend_strategy; |
6 | 6 |
7 import 'common.dart'; | 7 import 'common.dart'; |
8 import 'common_elements.dart'; | 8 import 'common_elements.dart'; |
9 import 'common/backend_api.dart'; | 9 import 'common/backend_api.dart'; |
10 import 'common/tasks.dart'; | 10 import 'common/tasks.dart'; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 RuntimeTypesNeedBuilder createRuntimeTypesNeedBuilder(); | 89 RuntimeTypesNeedBuilder createRuntimeTypesNeedBuilder(); |
90 } | 90 } |
91 | 91 |
92 /// Class that performs the mechanics to investigate annotations in the code. | 92 /// Class that performs the mechanics to investigate annotations in the code. |
93 abstract class AnnotationProcessor { | 93 abstract class AnnotationProcessor { |
94 void extractNativeAnnotations( | 94 void extractNativeAnnotations( |
95 LibraryEntity library, NativeBasicDataBuilder nativeBasicDataBuilder); | 95 LibraryEntity library, NativeBasicDataBuilder nativeBasicDataBuilder); |
96 | 96 |
97 void extractJsInteropAnnotations( | 97 void extractJsInteropAnnotations( |
98 LibraryEntity library, NativeBasicDataBuilder nativeBasicDataBuilder); | 98 LibraryEntity library, NativeBasicDataBuilder nativeBasicDataBuilder); |
| 99 |
| 100 void processJsInteropAnnotations( |
| 101 NativeBasicData nativeBasicData, NativeDataBuilder nativeDataBuilder); |
99 } | 102 } |
OLD | NEW |