package ast import "code.jmug.me/jmug/compiler-in-go/pkg/token" type StringLiteral struct { Token token.Token Value string } func (s *StringLiteral) expressionNode() {} func (s *StringLiteral) TokenLiteral() string { return s.Token.Literal } func (s *StringLiteral) String() string { return s.Token.Literal }