Added a tokenizer
This commit is contained in:
@ -8,6 +8,7 @@ import (
|
||||
|
||||
"git.akyoto.dev/cli/q/src/directory"
|
||||
"git.akyoto.dev/cli/q/src/log"
|
||||
"git.akyoto.dev/cli/q/src/token"
|
||||
)
|
||||
|
||||
// Scan scans the directory.
|
||||
@ -51,13 +52,17 @@ func scanDirectory(path string, functions chan<- *Function, errors chan<- error)
|
||||
|
||||
// scanFile scans a single file.
|
||||
func scanFile(path string, functions chan<- *Function) error {
|
||||
log.Info.Println(path)
|
||||
contents, err := os.ReadFile(path)
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
log.Info.Println(string(contents))
|
||||
tokens := token.Tokenize(contents)
|
||||
|
||||
for _, t := range tokens {
|
||||
log.Info.Println(t.Kind, t.Position, strings.TrimSpace(t.String()))
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user