docs: readme
This commit is contained in:
parent
875a73a463
commit
83050b0d3b
34
README.md
34
README.md
@ -8,4 +8,36 @@
|
||||
- 获取所有的常量定义
|
||||
- 获取所有的函数定义
|
||||
- 获取所有的结构体定义
|
||||
- 获取所有的方法定义
|
||||
- 获取所有的方法定义
|
||||
|
||||
## 用例
|
||||
|
||||
```go
|
||||
package main
|
||||
|
||||
import
|
||||
gitter.top/coco/goast
|
||||
|
||||
func
|
||||
func main() {
|
||||
parser, err := NewParser("hello.go")
|
||||
if err != nil {
|
||||
// do something
|
||||
}
|
||||
defines, err := parser.Parse()
|
||||
if err != nil {
|
||||
// do something
|
||||
}
|
||||
// 是否存在变量Hello
|
||||
defines.ExistVariable("Hello")
|
||||
// 是否存在常量 World
|
||||
defines.ExistConstant("World")
|
||||
// 是否存在函数 Add
|
||||
defines.ExistFunction("Add")
|
||||
// 是否存在Calc结构体的方法 Sub
|
||||
defines.ExistMethod("Calc.Sub")
|
||||
// 是否存在导入包 "a/b/c"
|
||||
defines.ExistImport("a/b/c")
|
||||
// 是否存在结构体定义 Calc
|
||||
defines.ExistType("Calc")
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user