OLD | NEW |
(Empty) | |
| 1 # Front end for Dart |
| 2 |
| 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, |
| 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 |
| 7 package import (and re-export) parts of this package's private implementation. |
| 8 |
| 9 End-users should use the [dartanalyzer][analyzercli] command-line tool to |
| 10 analyze their Dart code. |
| 11 |
| 12 Integrators that want to write tools that analyze Dart code should use the |
| 13 [analyzer] package. |
OLD | NEW |