style: remove decorative comment separators

This commit is contained in:
M.V. Hutz
2026-01-10 16:07:39 -05:00
parent 242fda3b4a
commit b2b2655c1e
5 changed files with 3 additions and 30 deletions

View File

@@ -4,8 +4,6 @@ type Statement interface {
IsStatement()
}
/** ------------------------------------------------------------------------- */
type LetStatement struct {
Name string
Parameters []string
@@ -19,8 +17,6 @@ type DeclareStatement struct {
func (LetStatement) IsStatement() {}
func (DeclareStatement) IsStatement() {}
/** ------------------------------------------------------------------------- */
func NewLet(name string, parameters []string, body Expression) *LetStatement {
return &LetStatement{Name: name, Parameters: parameters, Body: body}
}