OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library dart2js.backend_strategy; | |
6 | |
7 import 'compiler.dart'; | |
8 import 'js_emitter/sorter.dart'; | |
9 import 'world.dart'; | |
10 | |
11 /// Strategy pattern that defines the element model used in type inference | |
12 /// and code generation. | |
13 abstract class BackendStrategy { | |
14 /// Create the [ClosedWorldRefiner] for [closedWorld]. | |
15 ClosedWorldRefiner createClosedWorldRefiner(ClosedWorld closedWorld); | |
16 | |
17 /// Create closure classes for local functions. | |
18 void createClosureClasses(ClosedWorldRefiner closedWorldRefiner); | |
Emily Fortuna
2017/05/02 18:06:39
this name is still in line with the "old way" of t
Siggi Cherem (dart-lang)
2017/05/02 20:13:17
+1 :)
Johnni Winther
2017/05/03 08:25:44
[convertClosures] it is.
| |
19 | |
20 /// The [Sorter] used for sorting elements in the generated code. | |
21 Sorter get sorter; | |
22 } | |
23 | |
24 /// Strategy for using the [Element] model from the resolver as the backend | |
25 /// model. | |
26 class ElementBackendStrategy implements BackendStrategy { | |
27 final Compiler _compiler; | |
28 | |
29 ElementBackendStrategy(this._compiler); | |
30 | |
31 ClosedWorldRefiner createClosedWorldRefiner(ClosedWorldImpl closedWorld) => | |
32 closedWorld; | |
33 | |
34 Sorter get sorter => const ElementSorter(); | |
35 | |
36 void createClosureClasses(ClosedWorldRefiner closedWorldRefiner) { | |
37 _compiler.closureToClassMapper.createClosureClasses(closedWorldRefiner); | |
38 } | |
39 } | |
OLD | NEW |