Add module level doc comment to analyzer

This commit is contained in:
Sasha Koshka 2024-02-09 03:30:24 -05:00
parent e49fc397d3
commit 92070d142e
1 changed files with 5 additions and 0 deletions

5
analyzer/doc.go Normal file
View File

@ -0,0 +1,5 @@
// Package analyzer implements the semantic analysis stage of the FSPL compiler.
// The analyzer takes in a well-formed abstract syntax tree, ensures its
// semantic correctness, and fills in the semantic information stored within
// the tree.
package analyzer