code_property.go 188 字节
Newer Older
P
Phodal Huang 已提交
1
package core_domain
2 3

type CodeProperty struct {
P
Phodal Huang 已提交
4 5 6 7 8 9
	Modifiers   []string
	Name        string
	TypeName    string
	TypeType    string
	ReturnTypes []CodeProperty
	Parameters  []CodeProperty
10
}