7 my $class = ref($proto) || $proto;
16 my $file = \${$self->{FILE}};
20 if(defined($_)) { $$file = $_; }
27 my $debug_channels = \${$self->{DEBUG_CHANNELS}};
31 if(defined($_)) { $$debug_channels = $_; }
33 return $$debug_channels;
36 sub documentation_line {
38 my $documentation_line = \${$self->{DOCUMENTATION_LINE}};
42 if(defined($_)) { $$documentation_line = $_; }
44 return $$documentation_line;
49 my $documentation = \${$self->{DOCUMENTATION}};
53 if(defined($_)) { $$documentation = $_; }
55 return $$documentation;
60 my $function_line = \${$self->{FUNCTION_LINE}};
64 if(defined($_)) { $$function_line = $_; }
66 return $$function_line;
71 my $linkage = \${$self->{LINKAGE}};
75 if(defined($_)) { $$linkage = $_; }
82 my $return_type = \${$self->{RETURN_TYPE}};
86 if(defined($_)) { $$return_type = $_; }
91 sub calling_convention {
93 my $calling_convention = \${$self->{CALLING_CONVENTION}};
97 if(defined($_)) { $$calling_convention = $_; }
99 return $$calling_convention;
104 my $internal_name = \${$self->{INTERNAL_NAME}};
108 if(defined($_)) { $$internal_name = $_; }
110 return $$internal_name;
115 my $argument_types = \${$self->{ARGUMENT_TYPES}};
119 if(defined($_)) { $$argument_types = $_; }
121 return $$argument_types;
126 my $argument_names = \${$self->{ARGUMENT_NAMES}};
130 if(defined($_)) { $$argument_names = $_; }
132 return $$argument_names;
135 sub argument_documentations {
137 my $argument_documentations = \${$self->{ARGUMENT_DOCUMENTATIONS}};
141 if(defined($_)) { $$argument_documentations = $_; }
143 return $$argument_documentations;
146 sub statements_line {
148 my $statements_line = \${$self->{STATEMENTS_LINE}};
152 if(defined($_)) { $$statements_line = $_; }
154 return $$statements_line;
159 my $statements = \${$self->{STATEMENTS}};
163 if(defined($_)) { $$statements = $_; }