Skip to content

Commit

Permalink
delete unnecessary type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
JunNishimura committed Jul 7, 2024
1 parent 265ceff commit 997f3be
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ast/ast.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,6 @@ type Symbol struct {
func (s *Symbol) TokenLiteral() string { return s.Token.Literal }
func (s *Symbol) String() string { return s.Value }

type SpecialForm struct {
Token token.Token
}

func (sf *SpecialForm) TokenLiteral() string { return sf.Token.Literal }
func (sf *SpecialForm) String() string { return sf.Token.Literal }

type Nil struct {
Token token.Token
}
Expand Down

0 comments on commit 997f3be

Please sign in to comment.