Added module-level doc comments to generator and generator/native

This commit is contained in:
Sasha Koshka 2024-02-09 00:57:06 -05:00
parent fad0a89dc9
commit 100861dc47
2 changed files with 6 additions and 0 deletions

4
generator/doc.go Normal file
View File

@ -0,0 +1,4 @@
// Package generator implements the code generation stage of the FSPL compiler.
// It converts a well formed semantic tree into LLVM IR code, and outputs it to
// an io.Writer.
package generator

View File

@ -1,3 +1,5 @@
// Package native provides a generator target describing the current system.
// This is accomplished using several conditionally compiled source files.
package native
import "git.tebibyte.media/sashakoshka/fspl/generator"