fix the import expr string output (#440)

This commit is contained in:
shikbupt 2024-02-24 21:22:39 +08:00 committed by GitHub
parent 9d35005ffe
commit e9b03930ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -351,7 +351,7 @@ func (e *ImportExpr) End() Pos {
}
func (e *ImportExpr) String() string {
return `import("` + e.ModuleName + `")"`
return `import("` + e.ModuleName + `")`
}
// IndexExpr represents an index expression.