Made node traits file for semantic table nodes

This commit is contained in:
2022-10-11 18:12:53 -04:00
parent 67c94fb0e8
commit cd670d05c5
3 changed files with 48 additions and 48 deletions

View File

@@ -1,7 +1,6 @@
package analyzer
import "fmt"
import "path/filepath"
import "git.tebibyte.media/arf/arf/parser"
import "git.tebibyte.media/arf/arf/infoerr"
@@ -249,10 +248,7 @@ func (what Type) Describe () (description string) {
panic("invalid state: Type.actual is nil")
default:
locator := actual.locator()
description +=
filepath.Base(locator.modulePath) +
"." + locator.name
description += actual.ModuleName() + "." + actual.Name()
return
}
} else {