drq231358 2014-02-11 06:52
浏览 78
已采纳

使用gofmt重构工具重命名全局变量

I'm experimenting the gofmt tool capabilities for refactoring go code based on this blog post, I have this trivial example:

package main

import (
    "fmt"
)

var v = 12

func main() {
    fmt.Println(v)
}

I'm trying to rename the v variable to mapplying this recipe:

gofmt -r 'v -> m' -w main.go

The code after the refactoring looks (broken) like:

package m

import (
    "fmt"
)

var m = m

func m() {
    m
}

What am I missing here?

  • 写回答

1条回答 默认 最新

  • dti70601 2014-02-11 07:08
    关注

    There is a problem with what you're trying, the gofmt manual states:

    The rewrite rule specified with the -r flag must be a string of the form:

    pattern -> replacement

    Both pattern and replacement must be valid Go expressions. In the pattern, single-character lowercase >identifiers serve as wildcards matching arbitrary sub-expressions; those expressions will be substituted for the same identifiers in the replacement.

    (highlighting added)

    If you had var vee = 12 and used -r vee -> foo everything would be fine. With v -> m however, v -> m matches every Go expression, identifies it as v and replaces it by m.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部