dart-sdk/pkg/front_end
Lasse R.H. Nielsen e4f12438a4 Add documentation on Future and Stream showing async programming.
The documentation on `Future` and `Stream` was only showing
the class API, not `async` programming.
Added examples of using `async`, `async*`, `await`, `await for`,
`yield` and `yield*`.

Fixes #47082

Bug: http://dartbug.com/47082
Change-Id: Ib8b4e8642412073e9e6124429d66747c277f89a6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/212470
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
2021-09-24 13:07:40 +00:00
..
benchmarks/ikg
lib [kernel] Add Field.fieldReference 2021-09-24 12:01:08 +00:00
parser_testcases
test [kernel] Add Field.fieldReference 2021-09-24 12:01:08 +00:00
testcases Add documentation on Future and Stream showing async programming. 2021-09-24 13:07:40 +00:00
tool [kernel] Add Field.fieldReference 2021-09-24 12:01:08 +00:00
analysis_options.yaml [CFE] Enable avoid_void_async lint 2021-09-23 11:58:18 +00:00
analysis_options_no_lints.yaml
error_recovery.yaml
LICENSE
messages.status
messages.yaml Fix analyzerCode corresponding to CFE error ConstructorWithTypeArguments. 2021-09-17 10:48:59 +00:00
PRESUBMIT.py
pubspec.yaml
README.md
testing.json
testing_with_lints.json

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 dart analyze command-line tool to analyze their Dart code.

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

Note: A previous version of this package was published on pub.dev. It has now been marked DISCONTINUED as it is not intended for direct consumption, as per the notes above.