Skip to content

Commit e9b0393

Browse files
authored
fix the import expr string output (#440)
1 parent 9d35005 commit e9b0393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/expr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ func (e *ImportExpr) End() Pos {
351351
}
352352

353353
func (e *ImportExpr) String() string {
354-
return `import("` + e.ModuleName + `")"`
354+
return `import("` + e.ModuleName + `")`
355355
}
356356

357357
// IndexExpr represents an index expression.

0 commit comments

Comments
 (0)