salix/ast/ast.go

208 lines
3.2 KiB
Go
Raw Normal View History

2023-10-31 01:43:18 +00:00
/*
* Salix - Go templating engine
* Copyright (C) 2023 Elara Musayelyan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2023-10-29 01:10:17 +00:00
package ast
import "fmt"
func PosError(n Node, filename, format string, v ...any) error {
return fmt.Errorf(filename+":"+n.Pos().String()+": "+format, v...)
}
type Node interface {
Pos() Position
}
type Position struct {
Line int
Col int
}
func (p Position) String() string {
return fmt.Sprintf("%d:%d", p.Line, p.Col)
}
type Tag struct {
Name Ident
Params []Node
HasBody bool
Position Position
}
func (t Tag) Pos() Position {
return t.Position
}
type ExprTag struct {
Value Node
Position Position
}
func (et ExprTag) Pos() Position {
return et.Position
}
type EndTag struct {
Name Ident
Position Position
}
func (et EndTag) Pos() Position {
return et.Position
}
type Text struct {
Data []byte
Position Position
}
func (t Text) Pos() Position {
return t.Position
}
type Value struct {
Node
Not bool
}
type Expr struct {
First Node
Operator Operator
2023-10-29 01:10:17 +00:00
Rest []Expr
Position Position
}
func (e Expr) Pos() Position {
return e.Position
}
type FuncCall struct {
Name Ident
Params []Node
Position Position
}
func (fc FuncCall) Pos() Position {
return fc.Position
}
type MethodCall struct {
Value Node
Name Ident
Params []Node
Position Position
}
func (mc MethodCall) Pos() Position {
return mc.Position
}
type FieldAccess struct {
Value Node
Name Ident
Position Position
}
func (fa FieldAccess) Pos() Position {
return fa.Position
}
type Index struct {
Value Node
Index Node
Position Position
}
func (i Index) Pos() Position {
return i.Position
}
type Ident struct {
Value string
Position Position
}
func (id Ident) Pos() Position {
return id.Position
}
type String struct {
Value string
Position Position
}
func (s String) Pos() Position {
return s.Position
}
type Float struct {
Value float64
Position Position
}
func (f Float) Pos() Position {
return f.Position
}
type Integer struct {
Value int64
Position Position
}
func (i Integer) Pos() Position {
return i.Position
}
type Bool struct {
Value bool
Position Position
}
func (b Bool) Pos() Position {
return b.Position
}
type Operator struct {
Value string
Position Position
}
func (op Operator) Pos() Position {
return op.Position
}
2023-10-30 15:37:59 +00:00
type Ternary struct {
Condition Node
IfTrue Node
Else Node
Position Position
}
func (t Ternary) Pos() Position {
return t.Position
}
2023-10-30 15:52:02 +00:00
type VariableOr struct {
Variable Ident
Or Node
Position Position
}
func (vo VariableOr) Pos() Position {
return vo.Position
}