dart-sdk/pkg/front_end
Paul Berry d0f8a47f33 Rename "field" -> "accessor" in several type inference methods.
No functional change.  This just adjusts nomenclature to reflect the
fact that much of the type inference logic for dealing with fields
also applies to getters/setters.

R=sigmund@google.com

Review-Url: https://codereview.chromium.org/2948773002 .
2017-06-20 10:34:27 -07:00
..
example/incremental_reload Remove deps from reloader 2017-06-14 10:57:25 -07:00
lib Rename "field" -> "accessor" in several type inference methods. 2017-06-20 10:34:27 -07:00
test Fix type inference of getters that "override" setters and vice versa. 2017-06-20 05:34:31 -07:00
testcases Print static types of conditional expressions. 2017-06-20 07:33:54 -07:00
tool Fix frontend tests after bac83e0973 2017-06-16 14:05:08 -07:00
analysis_options.yaml Move kernel baseline tests to front_end. 2017-04-19 10:57:58 +02:00
BUILD.gn Disable analysis on a few packages. (#29571) 2017-05-05 22:06:00 -07:00
LICENSE Create a README and pubspec for the front_end package. 2016-10-19 12:14:38 -07:00
messages.yaml translate fasta parser error to analyzer error 2017-06-20 13:18:48 -04:00
pubspec.yaml Remove pkg/front_end's remaining dependencies on pkg/analyzer. 2017-06-15 13:47:29 -07:00
README.md Prepare package:analyzer 0.30.0. 2017-05-03 14:34:55 -07:00

Front end for Dart

This package provides a low-level API for use by compiler back ends that wish to implement the Dart language. It is intended for eventual use by dev_compiler, dart2js, and the Dart VM. In addition, it will share implementation details with the analyzer package--this will be accomplished by having the analyzer package import (and re-export) parts of this package's private implementation.

End-users should use the [dartanalyzer][analyzercli] command-line tool to analyze their Dart code.

Integrators that want to write tools that analyze Dart code should use the [analyzer] package.

Note: The APIs in this package are in an early state; developers should be careful about depending on this package.