rename ValueType to Type

This commit is contained in:
Asdine El Hrychy
2024-01-21 15:39:22 +04:00
parent 110715e31c
commit 29b85bf73d
18 changed files with 34 additions and 34 deletions

View File

@@ -426,7 +426,7 @@ func (p *Parser) parseParam() (expr.Expr, error) {
}
}
func (p *Parser) parseType() (types.ValueType, error) {
func (p *Parser) parseType() (types.Type, error) {
tok, pos, lit := p.ScanIgnoreWhitespace()
switch tok {
case scanner.TYPEANY: