make compiler errors general, and better imports
Some checks failed
/ test (push) Failing after 43s

This commit is contained in:
Neemek 2025-10-02 13:03:40 +02:00
parent f2ebcf560f
commit b95d2954ba
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E
5 changed files with 77 additions and 30 deletions

View file

@ -15,6 +15,10 @@ type Node interface {
Bounds() (Pos, Pos)
}
type Boundary interface {
Bounds() (Pos, Pos)
}
const (
StringNodeType NodeType = iota
NumberNodeType