vala.h | vala.h | |||
---|---|---|---|---|
skipping to change at line 1676 | skipping to change at line 1676 | |||
struct _ValaSymbolClass { | struct _ValaSymbolClass { | |||
ValaCodeNodeClass parent_class; | ValaCodeNodeClass parent_class; | |||
gchar* (*get_cprefix) (ValaSymbol* self); | gchar* (*get_cprefix) (ValaSymbol* self); | |||
gchar* (*get_lower_case_cname) (ValaSymbol* self, const gchar* infix ); | gchar* (*get_lower_case_cname) (ValaSymbol* self, const gchar* infix ); | |||
gchar* (*get_lower_case_cprefix) (ValaSymbol* self); | gchar* (*get_lower_case_cprefix) (ValaSymbol* self); | |||
ValaList* (*get_cheader_filenames) (ValaSymbol* self); | ValaList* (*get_cheader_filenames) (ValaSymbol* self); | |||
gboolean (*is_instance_member) (ValaSymbol* self); | gboolean (*is_instance_member) (ValaSymbol* self); | |||
gboolean (*is_class_member) (ValaSymbol* self); | gboolean (*is_class_member) (ValaSymbol* self); | |||
void (*process_deprecated_attribute) (ValaSymbol* self, ValaAttribut e* attr); | void (*process_deprecated_attribute) (ValaSymbol* self, ValaAttribut e* attr); | |||
void (*process_experimental_attribute) (ValaSymbol* self, ValaAttrib ute* attr); | ||||
void (*add_namespace) (ValaSymbol* self, ValaNamespace* ns); | void (*add_namespace) (ValaSymbol* self, ValaNamespace* ns); | |||
void (*add_class) (ValaSymbol* self, ValaClass* cl); | void (*add_class) (ValaSymbol* self, ValaClass* cl); | |||
void (*add_interface) (ValaSymbol* self, ValaInterface* iface); | void (*add_interface) (ValaSymbol* self, ValaInterface* iface); | |||
void (*add_struct) (ValaSymbol* self, ValaStruct* st); | void (*add_struct) (ValaSymbol* self, ValaStruct* st); | |||
void (*add_enum) (ValaSymbol* self, ValaEnum* en); | void (*add_enum) (ValaSymbol* self, ValaEnum* en); | |||
void (*add_error_domain) (ValaSymbol* self, ValaErrorDomain* edomain ); | void (*add_error_domain) (ValaSymbol* self, ValaErrorDomain* edomain ); | |||
void (*add_delegate) (ValaSymbol* self, ValaDelegate* d); | void (*add_delegate) (ValaSymbol* self, ValaDelegate* d); | |||
void (*add_constant) (ValaSymbol* self, ValaConstant* constant); | void (*add_constant) (ValaSymbol* self, ValaConstant* constant); | |||
void (*add_field) (ValaSymbol* self, ValaField* f); | void (*add_field) (ValaSymbol* self, ValaField* f); | |||
void (*add_method) (ValaSymbol* self, ValaMethod* m); | void (*add_method) (ValaSymbol* self, ValaMethod* m); | |||
skipping to change at line 2170 | skipping to change at line 2171 | |||
ValaCodeVisitor parent_instance; | ValaCodeVisitor parent_instance; | |||
ValaCodeGeneratorPrivate * priv; | ValaCodeGeneratorPrivate * priv; | |||
}; | }; | |||
struct _ValaCodeGeneratorClass { | struct _ValaCodeGeneratorClass { | |||
ValaCodeVisitorClass parent_class; | ValaCodeVisitorClass parent_class; | |||
void (*emit) (ValaCodeGenerator* self, ValaCodeContext* context); | void (*emit) (ValaCodeGenerator* self, ValaCodeContext* context); | |||
ValaLocalVariable* (*create_local) (ValaCodeGenerator* self, ValaDat aType* type); | ValaLocalVariable* (*create_local) (ValaCodeGenerator* self, ValaDat aType* type); | |||
ValaTargetValue* (*load_local) (ValaCodeGenerator* self, ValaLocalVa riable* local); | ValaTargetValue* (*load_local) (ValaCodeGenerator* self, ValaLocalVa riable* local); | |||
void (*store_local) (ValaCodeGenerator* self, ValaLocalVariable* loc al, ValaTargetValue* value, gboolean initializer); | void (*store_local) (ValaCodeGenerator* self, ValaLocalVariable* loc al, ValaTargetValue* value, gboolean initializer); | |||
ValaTargetValue* (*load_parameter) (ValaCodeGenerator* self, ValaPar | ||||
ameter* param); | ||||
void (*store_parameter) (ValaCodeGenerator* self, ValaParameter* par | ||||
am, ValaTargetValue* value); | ||||
ValaTargetValue* (*load_field) (ValaCodeGenerator* self, ValaField* | ||||
field, ValaTargetValue* instance); | ||||
void (*store_field) (ValaCodeGenerator* self, ValaField* field, Vala | ||||
TargetValue* instance, ValaTargetValue* value); | ||||
}; | }; | |||
struct _ValaCodeWriter { | struct _ValaCodeWriter { | |||
ValaCodeVisitor parent_instance; | ValaCodeVisitor parent_instance; | |||
ValaCodeWriterPrivate * priv; | ValaCodeWriterPrivate * priv; | |||
}; | }; | |||
struct _ValaCodeWriterClass { | struct _ValaCodeWriterClass { | |||
ValaCodeVisitorClass parent_class; | ValaCodeVisitorClass parent_class; | |||
}; | }; | |||
skipping to change at line 3992 | skipping to change at line 3997 | |||
void vala_target_value_unref (gpointer instance); | void vala_target_value_unref (gpointer instance); | |||
GParamSpec* vala_param_spec_target_value (const gchar* name, const gchar* n ick, const gchar* blurb, GType object_type, GParamFlags flags); | GParamSpec* vala_param_spec_target_value (const gchar* name, const gchar* n ick, const gchar* blurb, GType object_type, GParamFlags flags); | |||
void vala_value_set_target_value (GValue* value, gpointer v_object); | void vala_value_set_target_value (GValue* value, gpointer v_object); | |||
void vala_value_take_target_value (GValue* value, gpointer v_object); | void vala_value_take_target_value (GValue* value, gpointer v_object); | |||
gpointer vala_value_get_target_value (const GValue* value); | gpointer vala_value_get_target_value (const GValue* value); | |||
GType vala_target_value_get_type (void) G_GNUC_CONST; | GType vala_target_value_get_type (void) G_GNUC_CONST; | |||
void vala_code_generator_emit (ValaCodeGenerator* self, ValaCodeContext* co ntext); | void vala_code_generator_emit (ValaCodeGenerator* self, ValaCodeContext* co ntext); | |||
ValaLocalVariable* vala_code_generator_create_local (ValaCodeGenerator* sel f, ValaDataType* type); | ValaLocalVariable* vala_code_generator_create_local (ValaCodeGenerator* sel f, ValaDataType* type); | |||
ValaTargetValue* vala_code_generator_load_local (ValaCodeGenerator* self, V alaLocalVariable* local); | ValaTargetValue* vala_code_generator_load_local (ValaCodeGenerator* self, V alaLocalVariable* local); | |||
void vala_code_generator_store_local (ValaCodeGenerator* self, ValaLocalVar iable* local, ValaTargetValue* value, gboolean initializer); | void vala_code_generator_store_local (ValaCodeGenerator* self, ValaLocalVar iable* local, ValaTargetValue* value, gboolean initializer); | |||
ValaTargetValue* vala_code_generator_load_parameter (ValaCodeGenerator* sel | ||||
f, ValaParameter* param); | ||||
void vala_code_generator_store_parameter (ValaCodeGenerator* self, ValaPara | ||||
meter* param, ValaTargetValue* value); | ||||
ValaTargetValue* vala_code_generator_load_field (ValaCodeGenerator* self, V | ||||
alaField* field, ValaTargetValue* instance); | ||||
void vala_code_generator_store_field (ValaCodeGenerator* self, ValaField* f | ||||
ield, ValaTargetValue* instance, ValaTargetValue* value); | ||||
ValaCodeGenerator* vala_code_generator_construct (GType object_type); | ValaCodeGenerator* vala_code_generator_construct (GType object_type); | |||
ValaList* vala_code_node_get_error_types (ValaCodeNode* self); | ValaList* vala_code_node_get_error_types (ValaCodeNode* self); | |||
void vala_code_node_add_error_type (ValaCodeNode* self, ValaDataType* error _type); | void vala_code_node_add_error_type (ValaCodeNode* self, ValaDataType* error _type); | |||
void vala_code_node_add_error_types (ValaCodeNode* self, ValaList* error_ty pes); | void vala_code_node_add_error_types (ValaCodeNode* self, ValaList* error_ty pes); | |||
void vala_code_node_accept (ValaCodeNode* self, ValaCodeVisitor* visitor); | void vala_code_node_accept (ValaCodeNode* self, ValaCodeVisitor* visitor); | |||
void vala_code_node_accept_children (ValaCodeNode* self, ValaCodeVisitor* v isitor); | void vala_code_node_accept_children (ValaCodeNode* self, ValaCodeVisitor* v isitor); | |||
gboolean vala_code_node_check (ValaCodeNode* self, ValaCodeContext* context ); | gboolean vala_code_node_check (ValaCodeNode* self, ValaCodeContext* context ); | |||
void vala_code_node_emit (ValaCodeNode* self, ValaCodeGenerator* codegen); | void vala_code_node_emit (ValaCodeNode* self, ValaCodeGenerator* codegen); | |||
void vala_code_node_replace_type (ValaCodeNode* self, ValaDataType* old_typ e, ValaDataType* new_type); | void vala_code_node_replace_type (ValaCodeNode* self, ValaDataType* old_typ e, ValaDataType* new_type); | |||
void vala_code_node_replace_expression (ValaCodeNode* self, ValaExpression* old_node, ValaExpression* new_node); | void vala_code_node_replace_expression (ValaCodeNode* self, ValaExpression* old_node, ValaExpression* new_node); | |||
skipping to change at line 4858 | skipping to change at line 4867 | |||
void vala_regex_literal_set_value (ValaRegexLiteral* self, const gchar* val ue); | void vala_regex_literal_set_value (ValaRegexLiteral* self, const gchar* val ue); | |||
void vala_report_set_verbose_errors (ValaReport* self, gboolean verbose); | void vala_report_set_verbose_errors (ValaReport* self, gboolean verbose); | |||
gint vala_report_get_warnings (ValaReport* self); | gint vala_report_get_warnings (ValaReport* self); | |||
gint vala_report_get_errors (ValaReport* self); | gint vala_report_get_errors (ValaReport* self); | |||
void vala_report_note (ValaReport* self, ValaSourceReference* source, const gchar* message); | void vala_report_note (ValaReport* self, ValaSourceReference* source, const gchar* message); | |||
void vala_report_depr (ValaReport* self, ValaSourceReference* source, const gchar* message); | void vala_report_depr (ValaReport* self, ValaSourceReference* source, const gchar* message); | |||
void vala_report_warn (ValaReport* self, ValaSourceReference* source, const gchar* message); | void vala_report_warn (ValaReport* self, ValaSourceReference* source, const gchar* message); | |||
void vala_report_err (ValaReport* self, ValaSourceReference* source, const gchar* message); | void vala_report_err (ValaReport* self, ValaSourceReference* source, const gchar* message); | |||
void vala_report_notice (ValaSourceReference* source, const gchar* message) ; | void vala_report_notice (ValaSourceReference* source, const gchar* message) ; | |||
void vala_report_deprecated (ValaSourceReference* source, const gchar* mess age); | void vala_report_deprecated (ValaSourceReference* source, const gchar* mess age); | |||
void vala_report_experimental (ValaSourceReference* source, const gchar* me ssage); | ||||
void vala_report_warning (ValaSourceReference* source, const gchar* message ); | void vala_report_warning (ValaSourceReference* source, const gchar* message ); | |||
void vala_report_error (ValaSourceReference* source, const gchar* message); | void vala_report_error (ValaSourceReference* source, const gchar* message); | |||
ValaReport* vala_report_new (void); | ValaReport* vala_report_new (void); | |||
ValaReport* vala_report_construct (GType object_type); | ValaReport* vala_report_construct (GType object_type); | |||
gboolean vala_report_get_enable_warnings (ValaReport* self); | gboolean vala_report_get_enable_warnings (ValaReport* self); | |||
void vala_report_set_enable_warnings (ValaReport* self, gboolean value); | void vala_report_set_enable_warnings (ValaReport* self, gboolean value); | |||
ValaReturnStatement* vala_return_statement_new (ValaExpression* return_expr ession, ValaSourceReference* source_reference); | ValaReturnStatement* vala_return_statement_new (ValaExpression* return_expr ession, ValaSourceReference* source_reference); | |||
ValaReturnStatement* vala_return_statement_construct (GType object_type, Va laExpression* return_expression, ValaSourceReference* source_reference); | ValaReturnStatement* vala_return_statement_construct (GType object_type, Va laExpression* return_expression, ValaSourceReference* source_reference); | |||
ValaExpression* vala_return_statement_get_return_expression (ValaReturnStat ement* self); | ValaExpression* vala_return_statement_get_return_expression (ValaReturnStat ement* self); | |||
void vala_return_statement_set_return_expression (ValaReturnStatement* self , ValaExpression* value); | void vala_return_statement_set_return_expression (ValaReturnStatement* self , ValaExpression* value); | |||
skipping to change at line 5133 | skipping to change at line 5143 | |||
gchar* vala_symbol_get_lower_case_cname (ValaSymbol* self, const gchar* inf ix); | gchar* vala_symbol_get_lower_case_cname (ValaSymbol* self, const gchar* inf ix); | |||
gchar* vala_symbol_get_lower_case_cprefix (ValaSymbol* self); | gchar* vala_symbol_get_lower_case_cprefix (ValaSymbol* self); | |||
ValaList* vala_symbol_get_cheader_filenames (ValaSymbol* self); | ValaList* vala_symbol_get_cheader_filenames (ValaSymbol* self); | |||
gchar* vala_symbol_camel_case_to_lower_case (const gchar* camel_case); | gchar* vala_symbol_camel_case_to_lower_case (const gchar* camel_case); | |||
gchar* vala_symbol_lower_case_to_camel_case (const gchar* lower_case); | gchar* vala_symbol_lower_case_to_camel_case (const gchar* lower_case); | |||
ValaScope* vala_symbol_get_top_accessible_scope (ValaSymbol* self, gboolean is_internal); | ValaScope* vala_symbol_get_top_accessible_scope (ValaSymbol* self, gboolean is_internal); | |||
gboolean vala_symbol_is_instance_member (ValaSymbol* self); | gboolean vala_symbol_is_instance_member (ValaSymbol* self); | |||
gboolean vala_symbol_is_class_member (ValaSymbol* self); | gboolean vala_symbol_is_class_member (ValaSymbol* self); | |||
void vala_symbol_process_deprecated_attribute (ValaSymbol* self, ValaAttrib ute* attr); | void vala_symbol_process_deprecated_attribute (ValaSymbol* self, ValaAttrib ute* attr); | |||
gboolean vala_symbol_check_deprecated (ValaSymbol* self, ValaSourceReferenc e* source_ref); | gboolean vala_symbol_check_deprecated (ValaSymbol* self, ValaSourceReferenc e* source_ref); | |||
void vala_symbol_process_experimental_attribute (ValaSymbol* self, ValaAttr | ||||
ibute* attr); | ||||
gboolean vala_symbol_check_experimental (ValaSymbol* self, ValaSourceRefere | ||||
nce* source_ref); | ||||
void vala_symbol_set_cheader_filename (ValaSymbol* self, const gchar* chead er_filename); | void vala_symbol_set_cheader_filename (ValaSymbol* self, const gchar* chead er_filename); | |||
void vala_symbol_add_cheader_filename (ValaSymbol* self, const gchar* filen ame); | void vala_symbol_add_cheader_filename (ValaSymbol* self, const gchar* filen ame); | |||
ValaSymbol* vala_symbol_get_hidden_member (ValaSymbol* self); | ValaSymbol* vala_symbol_get_hidden_member (ValaSymbol* self); | |||
gboolean vala_symbol_is_accessible (ValaSymbol* self, ValaSymbol* sym); | gboolean vala_symbol_is_accessible (ValaSymbol* self, ValaSymbol* sym); | |||
void vala_symbol_add_namespace (ValaSymbol* self, ValaNamespace* ns); | void vala_symbol_add_namespace (ValaSymbol* self, ValaNamespace* ns); | |||
void vala_symbol_add_class (ValaSymbol* self, ValaClass* cl); | void vala_symbol_add_class (ValaSymbol* self, ValaClass* cl); | |||
void vala_symbol_add_interface (ValaSymbol* self, ValaInterface* iface); | void vala_symbol_add_interface (ValaSymbol* self, ValaInterface* iface); | |||
void vala_symbol_add_struct (ValaSymbol* self, ValaStruct* st); | void vala_symbol_add_struct (ValaSymbol* self, ValaStruct* st); | |||
void vala_symbol_add_enum (ValaSymbol* self, ValaEnum* en); | void vala_symbol_add_enum (ValaSymbol* self, ValaEnum* en); | |||
void vala_symbol_add_error_domain (ValaSymbol* self, ValaErrorDomain* edoma in); | void vala_symbol_add_error_domain (ValaSymbol* self, ValaErrorDomain* edoma in); | |||
skipping to change at line 5166 | skipping to change at line 5178 | |||
const gchar* vala_symbol_get_name (ValaSymbol* self); | const gchar* vala_symbol_get_name (ValaSymbol* self); | |||
void vala_symbol_set_name (ValaSymbol* self, const gchar* value); | void vala_symbol_set_name (ValaSymbol* self, const gchar* value); | |||
gboolean vala_symbol_get_active (ValaSymbol* self); | gboolean vala_symbol_get_active (ValaSymbol* self); | |||
void vala_symbol_set_active (ValaSymbol* self, gboolean value); | void vala_symbol_set_active (ValaSymbol* self, gboolean value); | |||
gboolean vala_symbol_get_deprecated (ValaSymbol* self); | gboolean vala_symbol_get_deprecated (ValaSymbol* self); | |||
void vala_symbol_set_deprecated (ValaSymbol* self, gboolean value); | void vala_symbol_set_deprecated (ValaSymbol* self, gboolean value); | |||
const gchar* vala_symbol_get_deprecated_since (ValaSymbol* self); | const gchar* vala_symbol_get_deprecated_since (ValaSymbol* self); | |||
void vala_symbol_set_deprecated_since (ValaSymbol* self, const gchar* value ); | void vala_symbol_set_deprecated_since (ValaSymbol* self, const gchar* value ); | |||
const gchar* vala_symbol_get_replacement (ValaSymbol* self); | const gchar* vala_symbol_get_replacement (ValaSymbol* self); | |||
void vala_symbol_set_replacement (ValaSymbol* self, const gchar* value); | void vala_symbol_set_replacement (ValaSymbol* self, const gchar* value); | |||
gboolean vala_symbol_get_experimental (ValaSymbol* self); | ||||
void vala_symbol_set_experimental (ValaSymbol* self, gboolean value); | ||||
gboolean vala_symbol_get_used (ValaSymbol* self); | gboolean vala_symbol_get_used (ValaSymbol* self); | |||
void vala_symbol_set_used (ValaSymbol* self, gboolean value); | void vala_symbol_set_used (ValaSymbol* self, gboolean value); | |||
GType vala_symbol_accessibility_get_type (void) G_GNUC_CONST; | GType vala_symbol_accessibility_get_type (void) G_GNUC_CONST; | |||
ValaSymbolAccessibility vala_symbol_get_access (ValaSymbol* self); | ValaSymbolAccessibility vala_symbol_get_access (ValaSymbol* self); | |||
void vala_symbol_set_access (ValaSymbol* self, ValaSymbolAccessibility valu e); | void vala_symbol_set_access (ValaSymbol* self, ValaSymbolAccessibility valu e); | |||
ValaComment* vala_symbol_get_comment (ValaSymbol* self); | ValaComment* vala_symbol_get_comment (ValaSymbol* self); | |||
void vala_symbol_set_comment (ValaSymbol* self, ValaComment* value); | void vala_symbol_set_comment (ValaSymbol* self, ValaComment* value); | |||
gboolean vala_symbol_get_hides (ValaSymbol* self); | gboolean vala_symbol_get_hides (ValaSymbol* self); | |||
void vala_symbol_set_hides (ValaSymbol* self, gboolean value); | void vala_symbol_set_hides (ValaSymbol* self, gboolean value); | |||
ValaScope* vala_symbol_get_scope (ValaSymbol* self); | ValaScope* vala_symbol_get_scope (ValaSymbol* self); | |||
End of changes. 6 change blocks. | ||||
0 lines changed or deleted | 24 lines changed or added | |||
valacodegen.h | valacodegen.h | |||
---|---|---|---|---|
skipping to change at line 600 | skipping to change at line 600 | |||
void (*append_vala_array_free) (ValaCCodeBaseModule* self); | void (*append_vala_array_free) (ValaCCodeBaseModule* self); | |||
void (*append_vala_array_move) (ValaCCodeBaseModule* self); | void (*append_vala_array_move) (ValaCCodeBaseModule* self); | |||
void (*append_vala_array_length) (ValaCCodeBaseModule* self); | void (*append_vala_array_length) (ValaCCodeBaseModule* self); | |||
gboolean (*generate_enum_declaration) (ValaCCodeBaseModule* self, Va laEnum* en, ValaCCodeFile* decl_space); | gboolean (*generate_enum_declaration) (ValaCCodeBaseModule* self, Va laEnum* en, ValaCCodeFile* decl_space); | |||
void (*generate_class_struct_declaration) (ValaCCodeBaseModule* self , ValaClass* cl, ValaCCodeFile* decl_space); | void (*generate_class_struct_declaration) (ValaCCodeBaseModule* self , ValaClass* cl, ValaCCodeFile* decl_space); | |||
void (*generate_struct_declaration) (ValaCCodeBaseModule* self, Vala Struct* st, ValaCCodeFile* decl_space); | void (*generate_struct_declaration) (ValaCCodeBaseModule* self, Vala Struct* st, ValaCCodeFile* decl_space); | |||
void (*generate_delegate_declaration) (ValaCCodeBaseModule* self, Va laDelegate* d, ValaCCodeFile* decl_space); | void (*generate_delegate_declaration) (ValaCCodeBaseModule* self, Va laDelegate* d, ValaCCodeFile* decl_space); | |||
void (*generate_cparameters) (ValaCCodeBaseModule* self, ValaMethod* m, ValaCCodeFile* decl_space, ValaMap* cparam_map, ValaCCodeFunction* func , ValaCCodeFunctionDeclarator* vdeclarator, ValaMap* carg_map, ValaCCodeFun ctionCall* vcall, gint direction); | void (*generate_cparameters) (ValaCCodeBaseModule* self, ValaMethod* m, ValaCCodeFile* decl_space, ValaMap* cparam_map, ValaCCodeFunction* func , ValaCCodeFunctionDeclarator* vdeclarator, ValaMap* carg_map, ValaCCodeFun ctionCall* vcall, gint direction); | |||
ValaCCodeExpression* (*get_dup_func_expression) (ValaCCodeBaseModule * self, ValaDataType* type, ValaSourceReference* source_reference, gboolean is_chainup); | ValaCCodeExpression* (*get_dup_func_expression) (ValaCCodeBaseModule * self, ValaDataType* type, ValaSourceReference* source_reference, gboolean is_chainup); | |||
gchar* (*append_struct_array_free) (ValaCCodeBaseModule* self, ValaS truct* st); | gchar* (*append_struct_array_free) (ValaCCodeBaseModule* self, ValaS truct* st); | |||
ValaCCodeExpression* (*destroy_variable) (ValaCCodeBaseModule* self, ValaVariable* variable, ValaCCodeExpression* inner); | ValaCCodeExpression* (*destroy_variable) (ValaCCodeBaseModule* self, ValaVariable* variable, ValaTargetValue* target_lvalue); | |||
ValaCCodeExpression* (*destroy_value) (ValaCCodeBaseModule* self, Va laTargetValue* value, gboolean is_macro_definition); | ValaCCodeExpression* (*destroy_value) (ValaCCodeBaseModule* self, Va laTargetValue* value, gboolean is_macro_definition); | |||
void (*append_local_free) (ValaCCodeBaseModule* self, ValaSymbol* sy m, gboolean stop_at_loop, ValaCodeNode* stop_at); | void (*append_local_free) (ValaCCodeBaseModule* self, ValaSymbol* sy m, gboolean stop_at_loop, ValaCodeNode* stop_at); | |||
ValaTargetValue* (*get_variable_cvalue) (ValaCCodeBaseModule* self, | ValaTargetValue* (*get_local_cvalue) (ValaCCodeBaseModule* self, Val | |||
ValaVariable* variable, ValaCCodeExpression* inner); | aLocalVariable* local); | |||
ValaTargetValue* (*load_parameter) (ValaCCodeBaseModule* self, ValaP | ValaTargetValue* (*get_parameter_cvalue) (ValaCCodeBaseModule* self, | |||
arameter* param); | ValaParameter* param); | |||
ValaTargetValue* (*get_field_cvalue) (ValaCCodeBaseModule* self, Val | ||||
aField* field, ValaTargetValue* instance); | ||||
ValaTargetValue* (*load_this_parameter) (ValaCCodeBaseModule* self, | ||||
ValaTypeSymbol* sym); | ||||
gchar* (*get_delegate_target_cname) (ValaCCodeBaseModule* self, cons t gchar* delegate_cname); | gchar* (*get_delegate_target_cname) (ValaCCodeBaseModule* self, cons t gchar* delegate_cname); | |||
ValaCCodeExpression* (*get_delegate_target_cexpression) (ValaCCodeBa seModule* self, ValaExpression* delegate_expr, ValaCCodeExpression** delega te_target_destroy_notify); | ValaCCodeExpression* (*get_delegate_target_cexpression) (ValaCCodeBa seModule* self, ValaExpression* delegate_expr, ValaCCodeExpression** delega te_target_destroy_notify); | |||
ValaCCodeExpression* (*get_delegate_target_cvalue) (ValaCCodeBaseMod ule* self, ValaTargetValue* value); | ValaCCodeExpression* (*get_delegate_target_cvalue) (ValaCCodeBaseMod ule* self, ValaTargetValue* value); | |||
ValaCCodeExpression* (*get_delegate_target_destroy_notify_cvalue) (V alaCCodeBaseModule* self, ValaTargetValue* value); | ValaCCodeExpression* (*get_delegate_target_destroy_notify_cvalue) (V alaCCodeBaseModule* self, ValaTargetValue* value); | |||
gchar* (*get_delegate_target_destroy_notify_cname) (ValaCCodeBaseMod ule* self, const gchar* delegate_cname); | gchar* (*get_delegate_target_destroy_notify_cname) (ValaCCodeBaseMod ule* self, const gchar* delegate_cname); | |||
ValaCCodeExpression* (*get_ref_cexpression) (ValaCCodeBaseModule* se lf, ValaDataType* expression_type, ValaCCodeExpression* cexpr, ValaExpressi on* expr, ValaCodeNode* node); | ValaCCodeExpression* (*get_ref_cexpression) (ValaCCodeBaseModule* se lf, ValaDataType* expression_type, ValaCCodeExpression* cexpr, ValaExpressi on* expr, ValaCodeNode* node); | |||
void (*generate_class_declaration) (ValaCCodeBaseModule* self, ValaC lass* cl, ValaCCodeFile* decl_space); | void (*generate_class_declaration) (ValaCCodeBaseModule* self, ValaC lass* cl, ValaCCodeFile* decl_space); | |||
void (*generate_interface_declaration) (ValaCCodeBaseModule* self, V alaInterface* iface, ValaCCodeFile* decl_space); | void (*generate_interface_declaration) (ValaCCodeBaseModule* self, V alaInterface* iface, ValaCCodeFile* decl_space); | |||
void (*generate_method_declaration) (ValaCCodeBaseModule* self, Vala Method* m, ValaCCodeFile* decl_space); | void (*generate_method_declaration) (ValaCCodeBaseModule* self, Vala Method* m, ValaCCodeFile* decl_space); | |||
void (*generate_error_domain_declaration) (ValaCCodeBaseModule* self , ValaErrorDomain* edomain, ValaCCodeFile* decl_space); | void (*generate_error_domain_declaration) (ValaCCodeBaseModule* self , ValaErrorDomain* edomain, ValaCCodeFile* decl_space); | |||
skipping to change at line 1189 | skipping to change at line 1191 | |||
gchar* vala_ccode_base_module_get_variable_cname (ValaCCodeBaseModule* self , const gchar* name); | gchar* vala_ccode_base_module_get_variable_cname (ValaCCodeBaseModule* self , const gchar* name); | |||
ValaCCodeExpression* vala_ccode_base_module_get_result_cexpression (ValaCCo deBaseModule* self, const gchar* cname); | ValaCCodeExpression* vala_ccode_base_module_get_result_cexpression (ValaCCo deBaseModule* self, const gchar* cname); | |||
ValaLocalVariable* vala_ccode_base_module_get_temp_variable (ValaCCodeBaseM odule* self, ValaDataType* type, gboolean value_owned, ValaCodeNode* node_r eference, gboolean init); | ValaLocalVariable* vala_ccode_base_module_get_temp_variable (ValaCCodeBaseM odule* self, ValaDataType* type, gboolean value_owned, ValaCodeNode* node_r eference, gboolean init); | |||
ValaCCodeExpression* vala_ccode_base_module_get_type_id_expression (ValaCCo deBaseModule* self, ValaDataType* type, gboolean is_chainup); | ValaCCodeExpression* vala_ccode_base_module_get_type_id_expression (ValaCCo deBaseModule* self, ValaDataType* type, gboolean is_chainup); | |||
ValaCCodeExpression* vala_ccode_base_module_get_dup_func_expression (ValaCC odeBaseModule* self, ValaDataType* type, ValaSourceReference* source_refere nce, gboolean is_chainup); | ValaCCodeExpression* vala_ccode_base_module_get_dup_func_expression (ValaCC odeBaseModule* self, ValaDataType* type, ValaSourceReference* source_refere nce, gboolean is_chainup); | |||
gchar* vala_ccode_base_module_generate_dup_func_wrapper (ValaCCodeBaseModul e* self, ValaDataType* type); | gchar* vala_ccode_base_module_generate_dup_func_wrapper (ValaCCodeBaseModul e* self, ValaDataType* type); | |||
gchar* vala_ccode_base_module_generate_free_func_wrapper (ValaCCodeBaseModu le* self, ValaDataType* type); | gchar* vala_ccode_base_module_generate_free_func_wrapper (ValaCCodeBaseModu le* self, ValaDataType* type); | |||
ValaCCodeExpression* vala_ccode_base_module_get_destroy0_func_expression (V alaCCodeBaseModule* self, ValaDataType* type, gboolean is_chainup); | ValaCCodeExpression* vala_ccode_base_module_get_destroy0_func_expression (V alaCCodeBaseModule* self, ValaDataType* type, gboolean is_chainup); | |||
ValaCCodeExpression* vala_ccode_base_module_get_destroy_func_expression (Va laCCodeBaseModule* self, ValaDataType* type, gboolean is_chainup); | ValaCCodeExpression* vala_ccode_base_module_get_destroy_func_expression (Va laCCodeBaseModule* self, ValaDataType* type, gboolean is_chainup); | |||
gchar* vala_ccode_base_module_append_struct_array_free (ValaCCodeBaseModule * self, ValaStruct* st); | gchar* vala_ccode_base_module_append_struct_array_free (ValaCCodeBaseModule * self, ValaStruct* st); | |||
ValaCCodeExpression* vala_ccode_base_module_destroy_variable (ValaCCodeBase | ValaCCodeExpression* vala_ccode_base_module_destroy_variable (ValaCCodeBase | |||
Module* self, ValaVariable* variable, ValaCCodeExpression* inner); | Module* self, ValaVariable* variable, ValaTargetValue* target_lvalue); | |||
ValaCCodeExpression* vala_ccode_base_module_destroy_local (ValaCCodeBaseMod | ||||
ule* self, ValaLocalVariable* local); | ||||
ValaCCodeExpression* vala_ccode_base_module_destroy_parameter (ValaCCodeBas | ||||
eModule* self, ValaParameter* param); | ||||
ValaCCodeExpression* vala_ccode_base_module_destroy_field (ValaCCodeBaseMod | ||||
ule* self, ValaField* field, ValaTargetValue* instance); | ||||
ValaCCodeExpression* vala_ccode_base_module_get_unref_expression (ValaCCode BaseModule* self, ValaCCodeExpression* cvar, ValaDataType* type, ValaExpres sion* expr, gboolean is_macro_definition); | ValaCCodeExpression* vala_ccode_base_module_get_unref_expression (ValaCCode BaseModule* self, ValaCCodeExpression* cvar, ValaDataType* type, ValaExpres sion* expr, gboolean is_macro_definition); | |||
ValaCCodeExpression* vala_ccode_base_module_destroy_value (ValaCCodeBaseMod ule* self, ValaTargetValue* value, gboolean is_macro_definition); | ValaCCodeExpression* vala_ccode_base_module_destroy_value (ValaCCodeBaseMod ule* self, ValaTargetValue* value, gboolean is_macro_definition); | |||
void vala_ccode_base_module_emit_temp_var (ValaCCodeBaseModule* self, ValaL ocalVariable* local, gboolean always_init); | void vala_ccode_base_module_emit_temp_var (ValaCCodeBaseModule* self, ValaL ocalVariable* local, gboolean always_init); | |||
void vala_ccode_base_module_append_local_free (ValaCCodeBaseModule* self, V alaSymbol* sym, gboolean stop_at_loop, ValaCodeNode* stop_at); | void vala_ccode_base_module_append_local_free (ValaCCodeBaseModule* self, V alaSymbol* sym, gboolean stop_at_loop, ValaCodeNode* stop_at); | |||
gboolean vala_ccode_base_module_variable_accessible_in_finally (ValaCCodeBa seModule* self, ValaLocalVariable* local); | gboolean vala_ccode_base_module_variable_accessible_in_finally (ValaCCodeBa seModule* self, ValaLocalVariable* local); | |||
gchar* vala_ccode_base_module_get_symbol_lock_name (ValaCCodeBaseModule* se lf, const gchar* symname); | gchar* vala_ccode_base_module_get_symbol_lock_name (ValaCCodeBaseModule* se lf, const gchar* symname); | |||
ValaTargetValue* vala_ccode_base_module_get_variable_cvalue (ValaCCodeBaseM | ValaTargetValue* vala_ccode_base_module_get_local_cvalue (ValaCCodeBaseModu | |||
odule* self, ValaVariable* variable, ValaCCodeExpression* inner); | le* self, ValaLocalVariable* local); | |||
ValaTargetValue* vala_ccode_base_module_load_parameter (ValaCCodeBaseModule | ValaTargetValue* vala_ccode_base_module_get_parameter_cvalue (ValaCCodeBase | |||
* self, ValaParameter* param); | Module* self, ValaParameter* param); | |||
ValaTargetValue* vala_ccode_base_module_get_field_cvalue (ValaCCodeBaseModu | ||||
le* self, ValaField* field, ValaTargetValue* instance); | ||||
ValaTargetValue* vala_ccode_base_module_load_this_parameter (ValaCCodeBaseM | ||||
odule* self, ValaTypeSymbol* sym); | ||||
gchar* vala_ccode_base_module_get_delegate_target_cname (ValaCCodeBaseModul e* self, const gchar* delegate_cname); | gchar* vala_ccode_base_module_get_delegate_target_cname (ValaCCodeBaseModul e* self, const gchar* delegate_cname); | |||
ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_cexpression (ValaCCodeBaseModule* self, ValaExpression* delegate_expr, ValaCCodeExpres sion** delegate_target_destroy_notify); | ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_cexpression (ValaCCodeBaseModule* self, ValaExpression* delegate_expr, ValaCCodeExpres sion** delegate_target_destroy_notify); | |||
ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_cvalue (Val aCCodeBaseModule* self, ValaTargetValue* value); | ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_cvalue (Val aCCodeBaseModule* self, ValaTargetValue* value); | |||
ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_destroy_not ify_cvalue (ValaCCodeBaseModule* self, ValaTargetValue* value); | ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_destroy_not ify_cvalue (ValaCCodeBaseModule* self, ValaTargetValue* value); | |||
gchar* vala_ccode_base_module_get_delegate_target_destroy_notify_cname (Val aCCodeBaseModule* self, const gchar* delegate_cname); | gchar* vala_ccode_base_module_get_delegate_target_destroy_notify_cname (Val aCCodeBaseModule* self, const gchar* delegate_cname); | |||
gboolean vala_ccode_base_module_requires_copy (ValaCCodeBaseModule* self, V alaDataType* type); | gboolean vala_ccode_base_module_requires_copy (ValaCCodeBaseModule* self, V alaDataType* type); | |||
gboolean vala_ccode_base_module_requires_destroy (ValaCCodeBaseModule* self , ValaDataType* type); | gboolean vala_ccode_base_module_requires_destroy (ValaCCodeBaseModule* self , ValaDataType* type); | |||
ValaCCodeExpression* vala_ccode_base_module_get_ref_cexpression (ValaCCodeB aseModule* self, ValaDataType* expression_type, ValaCCodeExpression* cexpr, ValaExpression* expr, ValaCodeNode* node); | ValaCCodeExpression* vala_ccode_base_module_get_ref_cexpression (ValaCCodeB aseModule* self, ValaDataType* expression_type, ValaCCodeExpression* cexpr, ValaExpression* expr, ValaCodeNode* node); | |||
void vala_ccode_base_module_check_type (ValaCCodeBaseModule* self, ValaData Type* type); | void vala_ccode_base_module_check_type (ValaCCodeBaseModule* self, ValaData Type* type); | |||
void vala_ccode_base_module_generate_class_declaration (ValaCCodeBaseModule * self, ValaClass* cl, ValaCCodeFile* decl_space); | void vala_ccode_base_module_generate_class_declaration (ValaCCodeBaseModule * self, ValaClass* cl, ValaCCodeFile* decl_space); | |||
skipping to change at line 1223 | skipping to change at line 1230 | |||
ValaCCodeExpression* vala_ccode_base_module_try_cast_value_to_type (ValaCCo deBaseModule* self, ValaCCodeExpression* ccodeexpr, ValaDataType* from, Val aDataType* to, ValaExpression* expr); | ValaCCodeExpression* vala_ccode_base_module_try_cast_value_to_type (ValaCCo deBaseModule* self, ValaCCodeExpression* ccodeexpr, ValaDataType* from, Val aDataType* to, ValaExpression* expr); | |||
ValaCCodeExpression* vala_ccode_base_module_try_cast_variant_to_type (ValaC CodeBaseModule* self, ValaCCodeExpression* ccodeexpr, ValaDataType* from, V alaDataType* to, ValaExpression* expr); | ValaCCodeExpression* vala_ccode_base_module_try_cast_variant_to_type (ValaC CodeBaseModule* self, ValaCCodeExpression* ccodeexpr, ValaDataType* from, V alaDataType* to, ValaExpression* expr); | |||
ValaCCodeExpression* vala_ccode_base_module_deserialize_expression (ValaCCo deBaseModule* self, ValaDataType* type, ValaCCodeExpression* variant_expr, ValaCCodeExpression* expr, ValaCCodeExpression* error_expr, gboolean* may_f ail); | ValaCCodeExpression* vala_ccode_base_module_deserialize_expression (ValaCCo deBaseModule* self, ValaDataType* type, ValaCCodeExpression* variant_expr, ValaCCodeExpression* expr, ValaCCodeExpression* error_expr, gboolean* may_f ail); | |||
ValaCCodeExpression* vala_ccode_base_module_serialize_expression (ValaCCode BaseModule* self, ValaDataType* type, ValaCCodeExpression* expr); | ValaCCodeExpression* vala_ccode_base_module_serialize_expression (ValaCCode BaseModule* self, ValaDataType* type, ValaCCodeExpression* expr); | |||
gchar* vala_ccode_base_module_get_type_check_function (ValaCCodeBaseModule* self, ValaTypeSymbol* type); | gchar* vala_ccode_base_module_get_type_check_function (ValaCCodeBaseModule* self, ValaTypeSymbol* type); | |||
ValaCCodeExpression* vala_ccode_base_module_convert_from_generic_pointer (V alaCCodeBaseModule* self, ValaCCodeExpression* cexpr, ValaDataType* actual_ type); | ValaCCodeExpression* vala_ccode_base_module_convert_from_generic_pointer (V alaCCodeBaseModule* self, ValaCCodeExpression* cexpr, ValaDataType* actual_ type); | |||
ValaCCodeExpression* vala_ccode_base_module_convert_to_generic_pointer (Val aCCodeBaseModule* self, ValaCCodeExpression* cexpr, ValaDataType* actual_ty pe); | ValaCCodeExpression* vala_ccode_base_module_convert_to_generic_pointer (Val aCCodeBaseModule* self, ValaCCodeExpression* cexpr, ValaDataType* actual_ty pe); | |||
ValaCCodeExpression* vala_ccode_base_module_transform_expression (ValaCCode BaseModule* self, ValaCCodeExpression* source_cexpr, ValaDataType* expressi on_type, ValaDataType* target_type, ValaExpression* expr); | ValaCCodeExpression* vala_ccode_base_module_transform_expression (ValaCCode BaseModule* self, ValaCCodeExpression* source_cexpr, ValaDataType* expressi on_type, ValaDataType* target_type, ValaExpression* expr); | |||
ValaCCodeExpression* vala_ccode_base_module_get_implicit_cast_expression (V alaCCodeBaseModule* self, ValaCCodeExpression* source_cexpr, ValaDataType* expression_type, ValaDataType* target_type, ValaExpression* expr); | ValaCCodeExpression* vala_ccode_base_module_get_implicit_cast_expression (V alaCCodeBaseModule* self, ValaCCodeExpression* source_cexpr, ValaDataType* expression_type, ValaDataType* target_type, ValaExpression* expr); | |||
void vala_ccode_base_module_store_property (ValaCCodeBaseModule* self, Vala Property* prop, ValaExpression* instance, ValaTargetValue* value); | void vala_ccode_base_module_store_property (ValaCCodeBaseModule* self, Vala Property* prop, ValaExpression* instance, ValaTargetValue* value); | |||
gboolean vala_ccode_base_module_is_address_of_possible (ValaCCodeBaseModule | ||||
* self, ValaExpression* e); | ||||
ValaCCodeExpression* vala_ccode_base_module_get_address_of_expression (Vala | ||||
CCodeBaseModule* self, ValaExpression* e, ValaCCodeExpression* ce); | ||||
gboolean vala_ccode_base_module_add_wrapper (ValaCCodeBaseModule* self, con st gchar* wrapper_name); | gboolean vala_ccode_base_module_add_wrapper (ValaCCodeBaseModule* self, con st gchar* wrapper_name); | |||
gboolean vala_ccode_base_module_add_generated_external_symbol (ValaCCodeBas eModule* self, ValaSymbol* external_symbol); | gboolean vala_ccode_base_module_add_generated_external_symbol (ValaCCodeBas eModule* self, ValaSymbol* external_symbol); | |||
ValaDataType* vala_ccode_base_module_get_data_type_for_symbol (ValaTypeSymb ol* sym); | ValaDataType* vala_ccode_base_module_get_data_type_for_symbol (ValaTypeSymb ol* sym); | |||
ValaCCodeExpression* vala_ccode_base_module_default_value_for_type (ValaCCo deBaseModule* self, ValaDataType* type, gboolean initializer_expression); | ValaCCodeExpression* vala_ccode_base_module_default_value_for_type (ValaCCo deBaseModule* self, ValaDataType* type, gboolean initializer_expression); | |||
void vala_ccode_base_module_create_type_check_statement (ValaCCodeBaseModul e* self, ValaCodeNode* method_node, ValaDataType* ret_type, ValaTypeSymbol* t, gboolean non_null, const gchar* var_name); | void vala_ccode_base_module_create_type_check_statement (ValaCCodeBaseModul e* self, ValaCodeNode* method_node, ValaDataType* ret_type, ValaTypeSymbol* t, gboolean non_null, const gchar* var_name); | |||
gint vala_ccode_base_module_get_param_pos (ValaCCodeBaseModule* self, gdoub le param_pos, gboolean ellipsis); | gint vala_ccode_base_module_get_param_pos (ValaCCodeBaseModule* self, gdoub le param_pos, gboolean ellipsis); | |||
ValaCCodeExpression* vala_ccode_base_module_get_ccodenode (ValaCCodeBaseMod ule* self, ValaExpression* node); | ValaCCodeExpression* vala_ccode_base_module_get_ccodenode (ValaCCodeBaseMod ule* self, ValaExpression* node); | |||
void vala_ccode_base_module_create_postcondition_statement (ValaCCodeBaseMo dule* self, ValaExpression* postcondition); | void vala_ccode_base_module_create_postcondition_statement (ValaCCodeBaseMo dule* self, ValaExpression* postcondition); | |||
gboolean vala_ccode_base_module_is_gobject_property (ValaCCodeBaseModule* s elf, ValaProperty* prop); | gboolean vala_ccode_base_module_is_gobject_property (ValaCCodeBaseModule* s elf, ValaProperty* prop); | |||
ValaDataType* vala_ccode_base_module_get_this_type (ValaCCodeBaseModule* se lf); | ValaDataType* vala_ccode_base_module_get_this_type (ValaCCodeBaseModule* se lf); | |||
skipping to change at line 1314 | skipping to change at line 1319 | |||
void vala_value_take_ccode_compiler (GValue* value, gpointer v_object); | void vala_value_take_ccode_compiler (GValue* value, gpointer v_object); | |||
gpointer vala_value_get_ccode_compiler (const GValue* value); | gpointer vala_value_get_ccode_compiler (const GValue* value); | |||
GType vala_ccode_compiler_get_type (void) G_GNUC_CONST; | GType vala_ccode_compiler_get_type (void) G_GNUC_CONST; | |||
ValaCCodeCompiler* vala_ccode_compiler_new (void); | ValaCCodeCompiler* vala_ccode_compiler_new (void); | |||
ValaCCodeCompiler* vala_ccode_compiler_construct (GType object_type); | ValaCCodeCompiler* vala_ccode_compiler_construct (GType object_type); | |||
void vala_ccode_compiler_compile (ValaCCodeCompiler* self, ValaCodeContext* context, const gchar* cc_command, gchar** cc_options, int cc_options_lengt h1); | void vala_ccode_compiler_compile (ValaCCodeCompiler* self, ValaCodeContext* context, const gchar* cc_command, gchar** cc_options, int cc_options_lengt h1); | |||
ValaCCodeControlFlowModule* vala_ccode_control_flow_module_construct (GType object_type); | ValaCCodeControlFlowModule* vala_ccode_control_flow_module_construct (GType object_type); | |||
GType vala_ccode_delegate_module_get_type (void) G_GNUC_CONST; | GType vala_ccode_delegate_module_get_type (void) G_GNUC_CONST; | |||
ValaCCodeDelegateModule* vala_ccode_delegate_module_new (void); | ValaCCodeDelegateModule* vala_ccode_delegate_module_new (void); | |||
ValaCCodeDelegateModule* vala_ccode_delegate_module_construct (GType object _type); | ValaCCodeDelegateModule* vala_ccode_delegate_module_construct (GType object _type); | |||
ValaTargetValue* vala_ccode_member_access_module_get_local_cvalue (ValaCCod | ||||
eMemberAccessModule* self, ValaLocalVariable* local); | ||||
ValaTargetValue* vala_ccode_member_access_module_get_parameter_cvalue (Vala | ||||
CCodeMemberAccessModule* self, ValaParameter* param); | ||||
ValaCCodeMemberAccessModule* vala_ccode_member_access_module_construct (GTy pe object_type); | ValaCCodeMemberAccessModule* vala_ccode_member_access_module_construct (GTy pe object_type); | |||
ValaCCodeMethodCallModule* vala_ccode_method_call_module_new (void); | ValaCCodeMethodCallModule* vala_ccode_method_call_module_new (void); | |||
ValaCCodeMethodCallModule* vala_ccode_method_call_module_construct (GType o bject_type); | ValaCCodeMethodCallModule* vala_ccode_method_call_module_construct (GType o bject_type); | |||
void vala_ccode_method_module_generate_method_result_declaration (ValaCCode MethodModule* self, ValaMethod* m, ValaCCodeFile* decl_space, ValaCCodeFunc tion* cfunc, ValaMap* cparam_map, ValaMap* carg_map); | void vala_ccode_method_module_generate_method_result_declaration (ValaCCode MethodModule* self, ValaMethod* m, ValaCCodeFile* decl_space, ValaCCodeFunc tion* cfunc, ValaMap* cparam_map, ValaMap* carg_map); | |||
void vala_ccode_method_module_complete_async (ValaCCodeMethodModule* self); | void vala_ccode_method_module_complete_async (ValaCCodeMethodModule* self); | |||
ValaCCodeParameter* vala_ccode_method_module_generate_parameter (ValaCCodeM ethodModule* self, ValaParameter* param, ValaCCodeFile* decl_space, ValaMap * cparam_map, ValaMap* carg_map); | ValaCCodeParameter* vala_ccode_method_module_generate_parameter (ValaCCodeM ethodModule* self, ValaParameter* param, ValaCCodeFile* decl_space, ValaMap * cparam_map, ValaMap* carg_map); | |||
void vala_ccode_method_module_generate_vfunc (ValaCCodeMethodModule* self, ValaMethod* m, ValaDataType* return_type, ValaMap* cparam_map, ValaMap* car g_map, const gchar* suffix, gint direction); | void vala_ccode_method_module_generate_vfunc (ValaCCodeMethodModule* self, ValaMethod* m, ValaDataType* return_type, ValaMap* cparam_map, ValaMap* car g_map, const gchar* suffix, gint direction); | |||
ValaCCodeMethodModule* vala_ccode_method_module_construct (GType object_typ e); | ValaCCodeMethodModule* vala_ccode_method_module_construct (GType object_typ e); | |||
ValaCCodeStructModule* vala_ccode_struct_module_construct (GType object_typ e); | ValaCCodeStructModule* vala_ccode_struct_module_construct (GType object_typ e); | |||
gpointer vala_typeregister_function_ref (gpointer instance); | gpointer vala_typeregister_function_ref (gpointer instance); | |||
skipping to change at line 1477 | skipping to change at line 1480 | |||
GType vala_dova_object_module_get_type (void) G_GNUC_CONST; | GType vala_dova_object_module_get_type (void) G_GNUC_CONST; | |||
GType vala_dova_value_module_get_type (void) G_GNUC_CONST; | GType vala_dova_value_module_get_type (void) G_GNUC_CONST; | |||
GType vala_dova_delegate_module_get_type (void) G_GNUC_CONST; | GType vala_dova_delegate_module_get_type (void) G_GNUC_CONST; | |||
ValaDovaDelegateModule* vala_dova_delegate_module_new (void); | ValaDovaDelegateModule* vala_dova_delegate_module_new (void); | |||
ValaDovaDelegateModule* vala_dova_delegate_module_construct (GType object_t ype); | ValaDovaDelegateModule* vala_dova_delegate_module_construct (GType object_t ype); | |||
GType vala_dova_error_module_get_type (void) G_GNUC_CONST; | GType vala_dova_error_module_get_type (void) G_GNUC_CONST; | |||
void vala_dova_error_module_return_with_exception (ValaDovaErrorModule* sel f); | void vala_dova_error_module_return_with_exception (ValaDovaErrorModule* sel f); | |||
ValaDovaErrorModule* vala_dova_error_module_new (void); | ValaDovaErrorModule* vala_dova_error_module_new (void); | |||
ValaDovaErrorModule* vala_dova_error_module_construct (GType object_type); | ValaDovaErrorModule* vala_dova_error_module_construct (GType object_type); | |||
ValaTargetValue* vala_dova_member_access_module_get_local_cvalue (ValaDovaM emberAccessModule* self, ValaLocalVariable* local); | ValaTargetValue* vala_dova_member_access_module_get_local_cvalue (ValaDovaM emberAccessModule* self, ValaLocalVariable* local); | |||
ValaTargetValue* vala_dova_member_access_module_get_parameter_cvalue (ValaD | ||||
ovaMemberAccessModule* self, ValaParameter* p); | ||||
ValaTargetValue* vala_dova_member_access_module_get_field_cvalue (ValaDovaM | ||||
emberAccessModule* self, ValaField* f, ValaTargetValue* instance); | ||||
ValaDovaMemberAccessModule* vala_dova_member_access_module_construct (GType object_type); | ValaDovaMemberAccessModule* vala_dova_member_access_module_construct (GType object_type); | |||
ValaDovaMethodCallModule* vala_dova_method_call_module_new (void); | ValaDovaMethodCallModule* vala_dova_method_call_module_new (void); | |||
ValaDovaMethodCallModule* vala_dova_method_call_module_construct (GType obj ect_type); | ValaDovaMethodCallModule* vala_dova_method_call_module_construct (GType obj ect_type); | |||
ValaDovaMethodModule* vala_dova_method_module_construct (GType object_type) ; | ValaDovaMethodModule* vala_dova_method_module_construct (GType object_type) ; | |||
void vala_dova_object_module_declare_set_value_copy_function (ValaDovaObjec tModule* self, ValaCCodeFile* decl_space); | void vala_dova_object_module_declare_set_value_copy_function (ValaDovaObjec tModule* self, ValaCCodeFile* decl_space); | |||
void vala_dova_object_module_declare_set_value_equals_function (ValaDovaObj ectModule* self, ValaCCodeFile* decl_space); | void vala_dova_object_module_declare_set_value_equals_function (ValaDovaObj ectModule* self, ValaCCodeFile* decl_space); | |||
void vala_dova_object_module_declare_set_value_hash_function (ValaDovaObjec tModule* self, ValaCCodeFile* decl_space); | void vala_dova_object_module_declare_set_value_hash_function (ValaDovaObjec tModule* self, ValaCCodeFile* decl_space); | |||
void vala_dova_object_module_declare_set_value_to_any_function (ValaDovaObj ectModule* self, ValaCCodeFile* decl_space); | void vala_dova_object_module_declare_set_value_to_any_function (ValaDovaObj ectModule* self, ValaCCodeFile* decl_space); | |||
void vala_dova_object_module_declare_set_value_from_any_function (ValaDovaO bjectModule* self, ValaCCodeFile* decl_space); | void vala_dova_object_module_declare_set_value_from_any_function (ValaDovaO bjectModule* self, ValaCCodeFile* decl_space); | |||
ValaCCodeBlock* vala_dova_object_module_generate_type_get_function (ValaDov aObjectModule* self, ValaTypeSymbol* cl, ValaClass* base_class); | ValaCCodeBlock* vala_dova_object_module_generate_type_get_function (ValaDov aObjectModule* self, ValaTypeSymbol* cl, ValaClass* base_class); | |||
End of changes. 7 change blocks. | ||||
19 lines changed or deleted | 29 lines changed or added | |||