Files
sdk/pkg/analyzer/doc/tutorial/tutorial.md
T
Kallen Tu 9c7662cd7d [analyzer] Tweak analyzer documentation for easier reading.
Broke up some larger paragraphs for easier reading. Made some additional sections to call out actionable work (since it seemed hidden within the paragraphs themselves).

Added some missing hyphens.

Change-Id: Icd84f16a6a6ff95e96e0423c83d7dbaedf7302bc
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/279323
Commit-Queue: Kallen Tu <kallentu@google.com>
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
2023-01-19 22:47:18 +00:00

34 lines
718 B
Markdown

# Analyzing Dart
This is the table of contents for a set of tutorials that explain how to use the
analyzer package to analyze Dart source code.
## Pages
The following is a list of the pages available in this tutorial.
[Introduction][introduction] -
What capabilities does the analyzer package support?
[Performing Analysis][analysis] -
How to set up the objects used to analyze code.
[The Token Model][tokens] -
How are tokens represented?
[The AST][ast] -
What is an AST?
[The Element Model][element] -
What is the element model?
[The Type Model][type] -
What is the type model?
[analysis]: analysis.md
[ast]: ast.md
[element]: element.md
[introduction]: introduction.md
[tokens]: tokens.md
[type]: type.md