functions

package
v0.0.0-...-e3e5662 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 8, 2024 License: MIT Imports: 3 Imported by: 72

Documentation

Index

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) Add_line

func (object *Func_t) Add_line(line string)

Adds a line of content to the functions gut

func (*Func_t) Add_lines

func (object *Func_t) Add_lines(lines []string)

Adds multiple lines of content to the functions gut

func (*Func_t) Get_gut

func (object *Func_t) Get_gut() []string

Returns the functions content

func (*Func_t) Get_name

func (object *Func_t) Get_name() string

Returns the functions name

func (*Func_t) Get_type

func (object *Func_t) Get_type() string

Returns the functions type

func (*Func_t) Set_name

func (object *Func_t) Set_name(name string)

Gives the function a name

func (*Func_t) Set_return_type

func (object *Func_t) Set_return_type(value string)

Sets the return value

func (*Func_t) Set_type

func (object *Func_t) Set_type(f_type string)

Sets which type of function this is

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
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL