namespace cbgb
[No description available]
Attributes
Attributes Documentation
variable input_cfg_path
input_cfg_path = sys.argv[1];
variable input_cfg_dir
input_cfg_dir;
variable input_cfg_filename
input_cfg_filename;
variable input_cfg_modulename
input_cfg_modulename;
variable ext
ext;
variable module_name
module_name = code_dict['module'];
variable cfg
cfg = importlib.import_module("configs." + modules.active_cfg.module_name);
variable f_listing
string f_listing = ' ';
variable f_duplicates
list f_duplicates = [item for item,count in Counter(cfg.load_functions).items() if count > 1];
variable cb_listing
string cb_listing = ' ';
variable cb_duplicates
list cb_duplicates = [item for item,count in Counter(cfg.load_common_blocks).items() if count > 1];
variable src_content
string src_content = '';
variable src_lines
string src_lines = src_content.splitlines();
variable code_parts_dict
code_parts_dict = utils.getCodeParts(src_lines, prepend_module_name=True);
variable be_types_file_content
string be_types_file_content = '';
variable frontend_file_content
string frontend_file_content = '';
variable functions_left
functions_left = list(cfg.load_functions);
variable code_lines
code_lines = code_dict['code_lines'];
variable code_category
code_category = code_dict['category'];
variable f_name
f_name = code_part_name;
variable f_name_short
f_name_short = f_name.split('::')[-1];
variable other_f_list
list other_f_list = [];
variable found_other_f
bool found_other_f = False;
variable other_f_name_short
other_f_name_short = other_f_name.split('::')[-1];
variable is_requested
bool is_requested = True;
variable use_f_name
use_f_name = f_name;
variable return_type_info
return_type_info = utils.getFunctionReturnType(code_lines);
variable parameter_defs
parameter_defs = utils.getParameterDefs(code_lines);
variable arg_names
arg_names = utils.getFunctionArgumentNames(code_lines[0]);
variable arg_info_dict
arg_info_dict = utils.getVariablesDict(code_lines[1:], arg_names);
variable f_dict
f_dict = OrderedDict();
variable common_blocks_left
common_blocks_left = list(cfg.load_common_blocks);
variable cb_dicts
cb_dicts = utils.getCommonBlockDicts(code_lines);
variable var_info_dict
var_info_dict = utils.getVariablesDict(code_lines, cb_dict['member_names']);
Updated on 2022-08-03 at 12:57:56 +0000