Documentation ¶
Index ¶
- type Func_t
- func (object *Func_t) Add_line(line string)
- func (object *Func_t) Add_lines(lines []string)
- func (object *Func_t) Get_gut() []string
- func (object *Func_t) Get_name() string
- func (object *Func_t) Get_type() string
- func (object *Func_t) Set_name(name string)
- func (object *Func_t) Set_return_type(value string)
- func (object *Func_t) Set_type(f_type string)
- type Go_func_t
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Func_t ¶
type Func_t struct { Name string // Obfuscated function name or the real function name Func_type string // Which sort of type this function is Return_type string // What kind of value can we expect to be returned Gut []string // The contents of the function }
func (*Func_t) Set_return_type ¶
Sets the return value
type Go_func_t ¶
type Go_func_t struct { Name string // Obfuscated function name or the real function name Func_type string // Which sort of type this function is, call/loop/boot Part_of_struct string // This should contain the name of what struct this function is part of Return_type string // What kind of value can we expect to be returned Parameters []string // Potential input needed Gut []string // The contents of the function }
Click to show internal directories.
Click to hide internal directories.