Skip to content

Commit

Permalink
fix the import expr string output
Browse files Browse the repository at this point in the history
  • Loading branch information
shikbupt authored Jan 25, 2024
1 parent 18b953c commit 590ad16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/expr.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 590ad16

Please sign in to comment.