<p>This lib provide a simple way to access top-level declarations: struct/const/function, you needn't use go/{token/ast/parser}。</p>
<p>It help you write tools like stringer, generate codes for structures, etc..</p>
<p>Here is a test case show how simple it's:
<a href="https://github.com/cosiner/gohper/blob/master/goutil/ast/ast_test.go">https://github.com/cosiner/gohper/blob/master/goutil/ast/ast_test.go</a></p>
<p>Example parsing structures: <a href="https://github.com/cosiner/gomodel/blob/master/cmd/gomodel/genmodel.go#L171">github.com/cosiner/gomodel/blob/master/cmd/gomodel/genmodel.go#L171</a>.</p>
<p>Documentation here:
<a href="http://godoc.org/github.com/cosiner/gohper/goutil/ast">http://godoc.org/github.com/cosiner/gohper/goutil/ast</a></p>
<hr/>**评论:**<br/><br/>space-llama: <pre><p>This isn't bad but you could probably clean up the code a bit. Low-hanging fruit here would be these <a href="https://github.com/cosiner/gohper/blob/master/goutil/ast/ast.go#L86" rel="nofollow">goto statements</a> which could just return the error. Then the functions above could worry about if it's a real error or not. Also, why not use a for-range loop <a href="https://github.com/cosiner/gohper/blob/master/goutil/ast/ast.go#L83" rel="nofollow">here</a> instead of this very C-esque for-loop? If you return the err, then looping will naturally stop.</p>
<p>Otherwise, not bad, but not very Go-like. </p></pre>cosiner_z: <pre><p>Thanks, i use <code>defer</code> instead, and add the <code>Interface</code> option.</p></pre>
A small AST lib help accessing top-level structs/constants/functions, pleased if helpful for gophers
blov · · 725 次点击这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码`
- 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传