fix the import expr string output (#440)
This commit is contained in:
parent
9d35005ffe
commit
e9b03930ce
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue