OLD | NEW |
1 # Front end for Dart | 1 # Front end for Dart |
2 | 2 |
3 This package provides a low-level API for use by compiler back ends that wish to | 3 This package provides a low-level API for use by compiler back ends that wish to |
4 implement the Dart language. It is intended for eventual use by dev_compiler, | 4 implement the Dart language. It is intended for eventual use by dev_compiler, |
5 dart2js, and the Dart VM. In addition, it will share implementation details | 5 dart2js, and the Dart VM. In addition, it will share implementation details |
6 with the analyzer package--this will be accomplished by having the analyzer | 6 with the analyzer package--this will be accomplished by having the analyzer |
7 package import (and re-export) parts of this package's private implementation. | 7 package import (and re-export) parts of this package's private implementation. |
8 | 8 |
9 End-users should use the [dartanalyzer][analyzercli] command-line tool to | 9 End-users should use the [dartanalyzer][analyzercli] command-line tool to |
10 analyze their Dart code. | 10 analyze their Dart code. |
11 | 11 |
12 Integrators that want to write tools that analyze Dart code should use the | 12 Integrators that want to write tools that analyze Dart code should use the |
13 [analyzer] package. | 13 [analyzer] package. |
| 14 |
| 15 _Note:_ The APIs in this package are in an early state; developers should be |
| 16 careful about depending on this package. |
OLD | NEW |