Initial commit
This commit is contained in:
29
types.go
Normal file
29
types.go
Normal file
@@ -0,0 +1,29 @@
|
||||
package main
|
||||
|
||||
type (
|
||||
Class struct {
|
||||
ClassName string
|
||||
Fields []Field
|
||||
Methods []Method
|
||||
}
|
||||
Field struct {
|
||||
Name string
|
||||
Type string
|
||||
Comment string
|
||||
}
|
||||
Method struct {
|
||||
Name string
|
||||
Params []Param
|
||||
Returns []Return
|
||||
Comment string
|
||||
}
|
||||
Param struct {
|
||||
Name string
|
||||
Type string
|
||||
Comment string
|
||||
}
|
||||
Return struct {
|
||||
Type string
|
||||
Comment string
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user