| vala.h | | vala.h | |
| | | | |
| skipping to change at line 1699 | | skipping to change at line 1699 | |
| void (*add_destructor) (ValaSymbol* self, ValaDestructor* d); | | void (*add_destructor) (ValaSymbol* self, ValaDestructor* d); | |
| }; | | }; | |
| | | | |
| struct _ValaVariable { | | struct _ValaVariable { | |
| ValaSymbol parent_instance; | | ValaSymbol parent_instance; | |
| ValaVariablePrivate * priv; | | ValaVariablePrivate * priv; | |
| }; | | }; | |
| | | | |
| struct _ValaVariableClass { | | struct _ValaVariableClass { | |
| ValaSymbolClass parent_class; | | ValaSymbolClass parent_class; | |
|
| | | void (*process_attributes) (ValaVariable* self); | |
| }; | | }; | |
| | | | |
| struct _ValaLockableIface { | | struct _ValaLockableIface { | |
| GTypeInterface parent_iface; | | GTypeInterface parent_iface; | |
| gboolean (*get_lock_used) (ValaLockable* self); | | gboolean (*get_lock_used) (ValaLockable* self); | |
| void (*set_lock_used) (ValaLockable* self, gboolean used); | | void (*set_lock_used) (ValaLockable* self, gboolean used); | |
| }; | | }; | |
| | | | |
| struct _ValaField { | | struct _ValaField { | |
| ValaVariable parent_instance; | | ValaVariable parent_instance; | |
| | | | |
| skipping to change at line 2168 | | skipping to change at line 2169 | |
| struct _ValaCodeGenerator { | | struct _ValaCodeGenerator { | |
| 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); | | void (*store_local) (ValaCodeGenerator* self, ValaLocalVariable* loc
al, ValaTargetValue* value, gboolean initializer); | |
| }; | | }; | |
| | | | |
| 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 3989 | | skipping to change at line 3990 | |
| gpointer vala_target_value_ref (gpointer instance); | | gpointer vala_target_value_ref (gpointer instance); | |
| 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); | | void vala_code_generator_store_local (ValaCodeGenerator* self, ValaLocalVar
iable* local, ValaTargetValue* value, gboolean initializer); | |
| 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 4344 | | skipping to change at line 4345 | |
| ValaStatement* vala_expression_get_parent_statement (ValaExpression* self); | | ValaStatement* vala_expression_get_parent_statement (ValaExpression* self); | |
| ValaExpressionStatement* vala_expression_statement_new (ValaExpression* exp
ression, ValaSourceReference* source_reference); | | ValaExpressionStatement* vala_expression_statement_new (ValaExpression* exp
ression, ValaSourceReference* source_reference); | |
| ValaExpressionStatement* vala_expression_statement_construct (GType object_
type, ValaExpression* expression, ValaSourceReference* source_reference); | | ValaExpressionStatement* vala_expression_statement_construct (GType object_
type, ValaExpression* expression, ValaSourceReference* source_reference); | |
| ValaExpression* vala_expression_statement_get_expression (ValaExpressionSta
tement* self); | | ValaExpression* vala_expression_statement_get_expression (ValaExpressionSta
tement* self); | |
| void vala_expression_statement_set_expression (ValaExpressionStatement* sel
f, ValaExpression* value); | | void vala_expression_statement_set_expression (ValaExpressionStatement* sel
f, ValaExpression* value); | |
| ValaField* vala_field_new (const gchar* name, ValaDataType* variable_type,
ValaExpression* initializer, ValaSourceReference* source_reference, ValaCom
ment* comment); | | ValaField* vala_field_new (const gchar* name, ValaDataType* variable_type,
ValaExpression* initializer, ValaSourceReference* source_reference, ValaCom
ment* comment); | |
| ValaField* vala_field_construct (GType object_type, const gchar* name, Vala
DataType* variable_type, ValaExpression* initializer, ValaSourceReference*
source_reference, ValaComment* comment); | | ValaField* vala_field_construct (GType object_type, const gchar* name, Vala
DataType* variable_type, ValaExpression* initializer, ValaSourceReference*
source_reference, ValaComment* comment); | |
| gchar* vala_field_get_cname (ValaField* self); | | gchar* vala_field_get_cname (ValaField* self); | |
| void vala_field_set_cname (ValaField* self, const gchar* cname); | | void vala_field_set_cname (ValaField* self, const gchar* cname); | |
| gchar* vala_field_get_default_cname (ValaField* self); | | gchar* vala_field_get_default_cname (ValaField* self); | |
|
| gchar* vala_field_get_array_length_cname (ValaField* self); | | | |
| void vala_field_set_array_length_cname (ValaField* self, const gchar* array | | | |
| _length_cname); | | | |
| gchar* vala_field_get_array_length_cexpr (ValaField* self); | | | |
| void vala_field_set_array_length_cexpr (ValaField* self, const gchar* array | | | |
| _length_cexpr); | | | |
| void vala_field_process_attributes (ValaField* self); | | | |
| gchar* vala_field_get_ctype (ValaField* self); | | gchar* vala_field_get_ctype (ValaField* self); | |
| void vala_field_set_ctype (ValaField* self, const gchar* ctype); | | void vala_field_set_ctype (ValaField* self, const gchar* ctype); | |
| ValaMemberBinding vala_field_get_binding (ValaField* self); | | ValaMemberBinding vala_field_get_binding (ValaField* self); | |
| void vala_field_set_binding (ValaField* self, ValaMemberBinding value); | | void vala_field_set_binding (ValaField* self, ValaMemberBinding value); | |
| gboolean vala_field_get_is_volatile (ValaField* self); | | gboolean vala_field_get_is_volatile (ValaField* self); | |
| void vala_field_set_is_volatile (ValaField* self, gboolean value); | | void vala_field_set_is_volatile (ValaField* self, gboolean value); | |
|
| gboolean vala_field_get_no_array_length (ValaField* self); | | | |
| void vala_field_set_no_array_length (ValaField* self, gboolean value); | | | |
| gboolean vala_field_get_no_delegate_target (ValaField* self); | | | |
| void vala_field_set_no_delegate_target (ValaField* self, gboolean value); | | | |
| gboolean vala_field_get_array_null_terminated (ValaField* self); | | | |
| void vala_field_set_array_null_terminated (ValaField* self, gboolean value) | | | |
| ; | | | |
| gboolean vala_field_get_has_array_length_cname (ValaField* self); | | | |
| gboolean vala_field_get_has_array_length_cexpr (ValaField* self); | | | |
| const gchar* vala_field_get_array_length_type (ValaField* self); | | | |
| void vala_field_set_array_length_type (ValaField* self, const gchar* value) | | | |
| ; | | | |
| GType vala_field_prototype_get_type (void) G_GNUC_CONST; | | GType vala_field_prototype_get_type (void) G_GNUC_CONST; | |
| ValaFieldPrototype* vala_field_prototype_new (ValaField* field_symbol); | | ValaFieldPrototype* vala_field_prototype_new (ValaField* field_symbol); | |
| ValaFieldPrototype* vala_field_prototype_construct (GType object_type, Vala
Field* field_symbol); | | ValaFieldPrototype* vala_field_prototype_construct (GType object_type, Vala
Field* field_symbol); | |
| ValaField* vala_field_prototype_get_field_symbol (ValaFieldPrototype* self)
; | | ValaField* vala_field_prototype_get_field_symbol (ValaFieldPrototype* self)
; | |
| void vala_field_prototype_set_field_symbol (ValaFieldPrototype* self, ValaF
ield* value); | | void vala_field_prototype_set_field_symbol (ValaFieldPrototype* self, ValaF
ield* value); | |
| GType vala_floating_type_get_type (void) G_GNUC_CONST; | | GType vala_floating_type_get_type (void) G_GNUC_CONST; | |
| ValaFloatingType* vala_floating_type_new (ValaStruct* type_symbol); | | ValaFloatingType* vala_floating_type_new (ValaStruct* type_symbol); | |
| ValaFloatingType* vala_floating_type_construct (GType object_type, ValaStru
ct* type_symbol); | | ValaFloatingType* vala_floating_type_construct (GType object_type, ValaStru
ct* type_symbol); | |
| ValaFlowAnalyzer* vala_flow_analyzer_new (void); | | ValaFlowAnalyzer* vala_flow_analyzer_new (void); | |
| ValaFlowAnalyzer* vala_flow_analyzer_construct (GType object_type); | | ValaFlowAnalyzer* vala_flow_analyzer_construct (GType object_type); | |
| | | | |
| skipping to change at line 4742 | | skipping to change at line 4728 | |
| ValaList* vala_object_type_symbol_get_signals (ValaObjectTypeSymbol* self); | | ValaList* vala_object_type_symbol_get_signals (ValaObjectTypeSymbol* self); | |
| ValaList* vala_object_type_symbol_get_properties (ValaObjectTypeSymbol* sel
f); | | ValaList* vala_object_type_symbol_get_properties (ValaObjectTypeSymbol* sel
f); | |
| void vala_object_type_symbol_add_type_parameter (ValaObjectTypeSymbol* self
, ValaTypeParameter* p); | | void vala_object_type_symbol_add_type_parameter (ValaObjectTypeSymbol* self
, ValaTypeParameter* p); | |
| ValaList* vala_object_type_symbol_get_type_parameters (ValaObjectTypeSymbol
* self); | | ValaList* vala_object_type_symbol_get_type_parameters (ValaObjectTypeSymbol
* self); | |
| ValaObjectType* vala_object_type_symbol_get_this_type (ValaObjectTypeSymbol
* self); | | ValaObjectType* vala_object_type_symbol_get_this_type (ValaObjectTypeSymbol
* self); | |
| void vala_object_type_symbol_add_hidden_method (ValaObjectTypeSymbol* self,
ValaMethod* m); | | void vala_object_type_symbol_add_hidden_method (ValaObjectTypeSymbol* self,
ValaMethod* m); | |
| ValaParameter* vala_parameter_new (const gchar* name, ValaDataType* variabl
e_type, ValaSourceReference* source_reference); | | ValaParameter* vala_parameter_new (const gchar* name, ValaDataType* variabl
e_type, ValaSourceReference* source_reference); | |
| ValaParameter* vala_parameter_construct (GType object_type, const gchar* na
me, ValaDataType* variable_type, ValaSourceReference* source_reference); | | ValaParameter* vala_parameter_construct (GType object_type, const gchar* na
me, ValaDataType* variable_type, ValaSourceReference* source_reference); | |
| ValaParameter* vala_parameter_new_with_ellipsis (ValaSourceReference* sourc
e_reference); | | ValaParameter* vala_parameter_new_with_ellipsis (ValaSourceReference* sourc
e_reference); | |
| ValaParameter* vala_parameter_construct_with_ellipsis (GType object_type, V
alaSourceReference* source_reference); | | ValaParameter* vala_parameter_construct_with_ellipsis (GType object_type, V
alaSourceReference* source_reference); | |
|
| gchar* vala_parameter_get_array_length_cname (ValaParameter* self); | | | |
| void vala_parameter_set_array_length_cname (ValaParameter* self, const gcha | | | |
| r* array_length_cname); | | | |
| void vala_parameter_process_attributes (ValaParameter* self); | | | |
| ValaParameter* vala_parameter_copy (ValaParameter* self); | | ValaParameter* vala_parameter_copy (ValaParameter* self); | |
| GType vala_parameter_direction_get_type (void) G_GNUC_CONST; | | GType vala_parameter_direction_get_type (void) G_GNUC_CONST; | |
| ValaParameterDirection vala_parameter_get_direction (ValaParameter* self); | | ValaParameterDirection vala_parameter_get_direction (ValaParameter* self); | |
| void vala_parameter_set_direction (ValaParameter* self, ValaParameterDirect
ion value); | | void vala_parameter_set_direction (ValaParameter* self, ValaParameterDirect
ion value); | |
| gboolean vala_parameter_get_ellipsis (ValaParameter* self); | | gboolean vala_parameter_get_ellipsis (ValaParameter* self); | |
| void vala_parameter_set_ellipsis (ValaParameter* self, gboolean value); | | void vala_parameter_set_ellipsis (ValaParameter* self, gboolean value); | |
| gboolean vala_parameter_get_params_array (ValaParameter* self); | | gboolean vala_parameter_get_params_array (ValaParameter* self); | |
| void vala_parameter_set_params_array (ValaParameter* self, gboolean value); | | void vala_parameter_set_params_array (ValaParameter* self, gboolean value); | |
|
| gboolean vala_parameter_get_no_array_length (ValaParameter* self); | | | |
| void vala_parameter_set_no_array_length (ValaParameter* self, gboolean valu | | | |
| e); | | | |
| gboolean vala_parameter_get_array_null_terminated (ValaParameter* self); | | | |
| void vala_parameter_set_array_null_terminated (ValaParameter* self, gboolea | | | |
| n value); | | | |
| gboolean vala_parameter_get_has_array_length_cname (ValaParameter* self); | | | |
| const gchar* vala_parameter_get_array_length_type (ValaParameter* self); | | | |
| void vala_parameter_set_array_length_type (ValaParameter* self, const gchar | | | |
| * value); | | | |
| gdouble vala_parameter_get_cparameter_position (ValaParameter* self); | | gdouble vala_parameter_get_cparameter_position (ValaParameter* self); | |
| void vala_parameter_set_cparameter_position (ValaParameter* self, gdouble v
alue); | | void vala_parameter_set_cparameter_position (ValaParameter* self, gdouble v
alue); | |
| gdouble vala_parameter_get_carray_length_parameter_position (ValaParameter*
self); | | gdouble vala_parameter_get_carray_length_parameter_position (ValaParameter*
self); | |
| void vala_parameter_set_carray_length_parameter_position (ValaParameter* se
lf, gdouble value); | | void vala_parameter_set_carray_length_parameter_position (ValaParameter* se
lf, gdouble value); | |
| gdouble vala_parameter_get_cdelegate_target_parameter_position (ValaParamet
er* self); | | gdouble vala_parameter_get_cdelegate_target_parameter_position (ValaParamet
er* self); | |
| void vala_parameter_set_cdelegate_target_parameter_position (ValaParameter*
self, gdouble value); | | void vala_parameter_set_cdelegate_target_parameter_position (ValaParameter*
self, gdouble value); | |
| gdouble vala_parameter_get_cdestroy_notify_parameter_position (ValaParamete
r* self); | | gdouble vala_parameter_get_cdestroy_notify_parameter_position (ValaParamete
r* self); | |
| void vala_parameter_set_cdestroy_notify_parameter_position (ValaParameter*
self, gdouble value); | | void vala_parameter_set_cdestroy_notify_parameter_position (ValaParameter*
self, gdouble value); | |
| const gchar* vala_parameter_get_ctype (ValaParameter* self); | | const gchar* vala_parameter_get_ctype (ValaParameter* self); | |
| void vala_parameter_set_ctype (ValaParameter* self, const gchar* value); | | void vala_parameter_set_ctype (ValaParameter* self, const gchar* value); | |
| | | | |
| skipping to change at line 5299 | | skipping to change at line 5275 | |
| void vala_unresolved_type_set_unresolved_symbol (ValaUnresolvedType* self,
ValaUnresolvedSymbol* value); | | void vala_unresolved_type_set_unresolved_symbol (ValaUnresolvedType* self,
ValaUnresolvedSymbol* value); | |
| ValaUsingDirective* vala_using_directive_new (ValaSymbol* namespace_symbol,
ValaSourceReference* source_reference); | | ValaUsingDirective* vala_using_directive_new (ValaSymbol* namespace_symbol,
ValaSourceReference* source_reference); | |
| ValaUsingDirective* vala_using_directive_construct (GType object_type, Vala
Symbol* namespace_symbol, ValaSourceReference* source_reference); | | ValaUsingDirective* vala_using_directive_construct (GType object_type, Vala
Symbol* namespace_symbol, ValaSourceReference* source_reference); | |
| ValaSymbol* vala_using_directive_get_namespace_symbol (ValaUsingDirective*
self); | | ValaSymbol* vala_using_directive_get_namespace_symbol (ValaUsingDirective*
self); | |
| void vala_using_directive_set_namespace_symbol (ValaUsingDirective* self, V
alaSymbol* value); | | void vala_using_directive_set_namespace_symbol (ValaUsingDirective* self, V
alaSymbol* value); | |
| ValaValueType* vala_value_type_construct (GType object_type, ValaTypeSymbol
* type_symbol); | | ValaValueType* vala_value_type_construct (GType object_type, ValaTypeSymbol
* type_symbol); | |
| ValaTypeSymbol* vala_value_type_get_type_symbol (ValaValueType* self); | | ValaTypeSymbol* vala_value_type_get_type_symbol (ValaValueType* self); | |
| void vala_value_type_set_type_symbol (ValaValueType* self, ValaTypeSymbol*
value); | | void vala_value_type_set_type_symbol (ValaValueType* self, ValaTypeSymbol*
value); | |
| ValaVariable* vala_variable_new (ValaDataType* variable_type, const gchar*
name, ValaExpression* initializer, ValaSourceReference* source_reference, V
alaComment* comment); | | ValaVariable* vala_variable_new (ValaDataType* variable_type, const gchar*
name, ValaExpression* initializer, ValaSourceReference* source_reference, V
alaComment* comment); | |
| ValaVariable* vala_variable_construct (GType object_type, ValaDataType* var
iable_type, const gchar* name, ValaExpression* initializer, ValaSourceRefer
ence* source_reference, ValaComment* comment); | | ValaVariable* vala_variable_construct (GType object_type, ValaDataType* var
iable_type, const gchar* name, ValaExpression* initializer, ValaSourceRefer
ence* source_reference, ValaComment* comment); | |
|
| | | gchar* vala_variable_get_array_length_cname (ValaVariable* self); | |
| | | void vala_variable_set_array_length_cname (ValaVariable* self, const gchar* | |
| | | array_length_cname); | |
| | | gchar* vala_variable_get_array_length_cexpr (ValaVariable* self); | |
| | | void vala_variable_set_array_length_cexpr (ValaVariable* self, const gchar* | |
| | | array_length_cexpr); | |
| | | void vala_variable_process_attributes (ValaVariable* self); | |
| ValaExpression* vala_variable_get_initializer (ValaVariable* self); | | ValaExpression* vala_variable_get_initializer (ValaVariable* self); | |
| void vala_variable_set_initializer (ValaVariable* self, ValaExpression* val
ue); | | void vala_variable_set_initializer (ValaVariable* self, ValaExpression* val
ue); | |
| ValaDataType* vala_variable_get_variable_type (ValaVariable* self); | | ValaDataType* vala_variable_get_variable_type (ValaVariable* self); | |
| void vala_variable_set_variable_type (ValaVariable* self, ValaDataType* val
ue); | | void vala_variable_set_variable_type (ValaVariable* self, ValaDataType* val
ue); | |
|
| | | gboolean vala_variable_get_no_array_length (ValaVariable* self); | |
| | | void vala_variable_set_no_array_length (ValaVariable* self, gboolean value) | |
| | | ; | |
| | | gboolean vala_variable_get_no_delegate_target (ValaVariable* self); | |
| | | void vala_variable_set_no_delegate_target (ValaVariable* self, gboolean val | |
| | | ue); | |
| | | gboolean vala_variable_get_array_null_terminated (ValaVariable* self); | |
| | | void vala_variable_set_array_null_terminated (ValaVariable* self, gboolean | |
| | | value); | |
| | | gboolean vala_variable_get_has_array_length_cname (ValaVariable* self); | |
| | | gboolean vala_variable_get_has_array_length_cexpr (ValaVariable* self); | |
| | | const gchar* vala_variable_get_array_length_type (ValaVariable* self); | |
| | | void vala_variable_set_array_length_type (ValaVariable* self, const gchar* | |
| | | value); | |
| GType vala_void_type_get_type (void) G_GNUC_CONST; | | GType vala_void_type_get_type (void) G_GNUC_CONST; | |
| ValaVoidType* vala_void_type_new (ValaSourceReference* source_reference); | | ValaVoidType* vala_void_type_new (ValaSourceReference* source_reference); | |
| ValaVoidType* vala_void_type_construct (GType object_type, ValaSourceRefere
nce* source_reference); | | ValaVoidType* vala_void_type_construct (GType object_type, ValaSourceRefere
nce* source_reference); | |
| ValaWhileStatement* vala_while_statement_new (ValaExpression* condition, Va
laBlock* body, ValaSourceReference* source_reference); | | ValaWhileStatement* vala_while_statement_new (ValaExpression* condition, Va
laBlock* body, ValaSourceReference* source_reference); | |
| ValaWhileStatement* vala_while_statement_construct (GType object_type, Vala
Expression* condition, ValaBlock* body, ValaSourceReference* source_referen
ce); | | ValaWhileStatement* vala_while_statement_construct (GType object_type, Vala
Expression* condition, ValaBlock* body, ValaSourceReference* source_referen
ce); | |
| ValaExpression* vala_while_statement_get_condition (ValaWhileStatement* sel
f); | | ValaExpression* vala_while_statement_get_condition (ValaWhileStatement* sel
f); | |
| void vala_while_statement_set_condition (ValaWhileStatement* self, ValaExpr
ession* value); | | void vala_while_statement_set_condition (ValaWhileStatement* self, ValaExpr
ession* value); | |
| ValaBlock* vala_while_statement_get_body (ValaWhileStatement* self); | | ValaBlock* vala_while_statement_get_body (ValaWhileStatement* self); | |
| void vala_while_statement_set_body (ValaWhileStatement* self, ValaBlock* va
lue); | | void vala_while_statement_set_body (ValaWhileStatement* self, ValaBlock* va
lue); | |
| ValaYieldStatement* vala_yield_statement_new (ValaExpression* yield_express
ion, ValaSourceReference* source_reference); | | ValaYieldStatement* vala_yield_statement_new (ValaExpression* yield_express
ion, ValaSourceReference* source_reference); | |
| | | | |
End of changes. 9 change blocks. |
| 35 lines changed or deleted | | 24 lines changed or added | |
|
| valacodegen.h | | valacodegen.h | |
| | | | |
| skipping to change at line 602 | | skipping to change at line 602 | |
| 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_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,
ValaVariable* variable, ValaCCodeExpression* inner); | |
| 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 1147 | | skipping to change at line 1148 | |
| GType vala_ccode_method_module_get_type (void) G_GNUC_CONST; | | GType vala_ccode_method_module_get_type (void) G_GNUC_CONST; | |
| GType vala_ccode_control_flow_module_get_type (void) G_GNUC_CONST; | | GType vala_ccode_control_flow_module_get_type (void) G_GNUC_CONST; | |
| GType vala_ccode_member_access_module_get_type (void) G_GNUC_CONST; | | GType vala_ccode_member_access_module_get_type (void) G_GNUC_CONST; | |
| GType vala_ccode_assignment_module_get_type (void) G_GNUC_CONST; | | GType vala_ccode_assignment_module_get_type (void) G_GNUC_CONST; | |
| GType vala_ccode_method_call_module_get_type (void) G_GNUC_CONST; | | GType vala_ccode_method_call_module_get_type (void) G_GNUC_CONST; | |
| GType vala_ccode_array_module_get_type (void) G_GNUC_CONST; | | GType vala_ccode_array_module_get_type (void) G_GNUC_CONST; | |
| ValaCCodeArrayModule* vala_ccode_array_module_new (void); | | ValaCCodeArrayModule* vala_ccode_array_module_new (void); | |
| ValaCCodeArrayModule* vala_ccode_array_module_construct (GType object_type)
; | | ValaCCodeArrayModule* vala_ccode_array_module_construct (GType object_type)
; | |
| ValaCCodeAssignmentModule* vala_ccode_assignment_module_new (void); | | ValaCCodeAssignmentModule* vala_ccode_assignment_module_new (void); | |
| ValaCCodeAssignmentModule* vala_ccode_assignment_module_construct (GType ob
ject_type); | | ValaCCodeAssignmentModule* vala_ccode_assignment_module_construct (GType ob
ject_type); | |
|
| | | gboolean vala_ccode_base_module_is_in_coroutine (ValaCCodeBaseModule* self)
; | |
| gboolean vala_ccode_base_module_is_in_constructor (ValaCCodeBaseModule* sel
f); | | gboolean vala_ccode_base_module_is_in_constructor (ValaCCodeBaseModule* sel
f); | |
| gboolean vala_ccode_base_module_is_in_destructor (ValaCCodeBaseModule* self
); | | gboolean vala_ccode_base_module_is_in_destructor (ValaCCodeBaseModule* self
); | |
| ValaBlock* vala_ccode_base_module_next_closure_block (ValaCCodeBaseModule*
self, ValaSymbol* sym); | | ValaBlock* vala_ccode_base_module_next_closure_block (ValaCCodeBaseModule*
self, ValaSymbol* sym); | |
| ValaCCodeBaseModule* vala_ccode_base_module_construct (GType object_type); | | ValaCCodeBaseModule* vala_ccode_base_module_construct (GType object_type); | |
| void vala_ccode_base_module_push_context (ValaCCodeBaseModule* self, ValaCC
odeBaseModuleEmitContext* emit_context); | | void vala_ccode_base_module_push_context (ValaCCodeBaseModule* self, ValaCC
odeBaseModuleEmitContext* emit_context); | |
| void vala_ccode_base_module_pop_context (ValaCCodeBaseModule* self); | | void vala_ccode_base_module_pop_context (ValaCCodeBaseModule* self); | |
| void vala_ccode_base_module_push_function (ValaCCodeBaseModule* self, ValaC
CodeFunction* func); | | void vala_ccode_base_module_push_function (ValaCCodeBaseModule* self, ValaC
CodeFunction* func); | |
| void vala_ccode_base_module_pop_function (ValaCCodeBaseModule* self); | | void vala_ccode_base_module_pop_function (ValaCCodeBaseModule* self); | |
| gboolean vala_ccode_base_module_add_symbol_declaration (ValaCCodeBaseModule
* self, ValaCCodeFile* decl_space, ValaSymbol* sym, const gchar* name); | | gboolean vala_ccode_base_module_add_symbol_declaration (ValaCCodeBaseModule
* self, ValaCCodeFile* decl_space, ValaSymbol* sym, const gchar* name); | |
| ValaCCodeIdentifier* vala_ccode_base_module_get_value_setter_function (Vala
CCodeBaseModule* self, ValaDataType* type_reference); | | ValaCCodeIdentifier* vala_ccode_base_module_get_value_setter_function (Vala
CCodeBaseModule* self, ValaDataType* type_reference); | |
| | | | |
| skipping to change at line 1185 | | skipping to change at line 1187 | |
| 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_get_unref_expression_ (ValaCCod
eBaseModule* self, ValaVariable* variable, ValaCCodeExpression* inner); | |
| 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); | | 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
odule* self, ValaVariable* variable, ValaCCodeExpression* inner); | |
| 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 1260 | | skipping to change at line 1264 | |
| gchar* vala_ccode_base_module_generate_ready_function (ValaCCodeBaseModule*
self, ValaMethod* m); | | gchar* vala_ccode_base_module_generate_ready_function (ValaCCodeBaseModule*
self, ValaMethod* m); | |
| ValaCCodeExpression* vala_ccode_base_module_get_cvalue (ValaCCodeBaseModule
* self, ValaExpression* expr); | | ValaCCodeExpression* vala_ccode_base_module_get_cvalue (ValaCCodeBaseModule
* self, ValaExpression* expr); | |
| ValaCCodeExpression* vala_ccode_base_module_get_cvalue_ (ValaCCodeBaseModul
e* self, ValaTargetValue* value); | | ValaCCodeExpression* vala_ccode_base_module_get_cvalue_ (ValaCCodeBaseModul
e* self, ValaTargetValue* value); | |
| void vala_ccode_base_module_set_cvalue (ValaCCodeBaseModule* self, ValaExpr
ession* expr, ValaCCodeExpression* cvalue); | | void vala_ccode_base_module_set_cvalue (ValaCCodeBaseModule* self, ValaExpr
ession* expr, ValaCCodeExpression* cvalue); | |
| ValaCCodeExpression* vala_ccode_base_module_get_array_size_cvalue (ValaCCod
eBaseModule* self, ValaTargetValue* value); | | ValaCCodeExpression* vala_ccode_base_module_get_array_size_cvalue (ValaCCod
eBaseModule* self, ValaTargetValue* value); | |
| void vala_ccode_base_module_set_array_size_cvalue (ValaCCodeBaseModule* sel
f, ValaTargetValue* value, ValaCCodeExpression* cvalue); | | void vala_ccode_base_module_set_array_size_cvalue (ValaCCodeBaseModule* sel
f, ValaTargetValue* value, ValaCCodeExpression* cvalue); | |
| ValaCCodeExpression* vala_ccode_base_module_get_delegate_target (ValaCCodeB
aseModule* self, ValaExpression* expr); | | ValaCCodeExpression* vala_ccode_base_module_get_delegate_target (ValaCCodeB
aseModule* self, ValaExpression* expr); | |
| void vala_ccode_base_module_set_delegate_target (ValaCCodeBaseModule* self,
ValaExpression* expr, ValaCCodeExpression* delegate_target); | | void vala_ccode_base_module_set_delegate_target (ValaCCodeBaseModule* self,
ValaExpression* expr, ValaCCodeExpression* delegate_target); | |
| ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_destroy_not
ify (ValaCCodeBaseModule* self, ValaExpression* expr); | | ValaCCodeExpression* vala_ccode_base_module_get_delegate_target_destroy_not
ify (ValaCCodeBaseModule* self, ValaExpression* expr); | |
| void vala_ccode_base_module_set_delegate_target_destroy_notify (ValaCCodeBa
seModule* self, ValaExpression* expr, ValaCCodeExpression* destroy_notify); | | void vala_ccode_base_module_set_delegate_target_destroy_notify (ValaCCodeBa
seModule* self, ValaExpression* expr, ValaCCodeExpression* destroy_notify); | |
|
| void vala_ccode_base_module_append_array_size (ValaCCodeBaseModule* self, V | | void vala_ccode_base_module_append_array_length (ValaCCodeBaseModule* self, | |
| alaExpression* expr, ValaCCodeExpression* size); | | ValaExpression* expr, ValaCCodeExpression* size); | |
| ValaList* vala_ccode_base_module_get_array_sizes (ValaCCodeBaseModule* self | | ValaList* vala_ccode_base_module_get_array_lengths (ValaCCodeBaseModule* se | |
| , ValaExpression* expr); | | lf, ValaExpression* expr); | |
| ValaCodeContext* vala_ccode_base_module_get_context (ValaCCodeBaseModule* s
elf); | | ValaCodeContext* vala_ccode_base_module_get_context (ValaCCodeBaseModule* s
elf); | |
| void vala_ccode_base_module_set_context (ValaCCodeBaseModule* self, ValaCod
eContext* value); | | void vala_ccode_base_module_set_context (ValaCCodeBaseModule* self, ValaCod
eContext* value); | |
| ValaSymbol* vala_ccode_base_module_get_current_symbol (ValaCCodeBaseModule*
self); | | ValaSymbol* vala_ccode_base_module_get_current_symbol (ValaCCodeBaseModule*
self); | |
| ValaTryStatement* vala_ccode_base_module_get_current_try (ValaCCodeBaseModu
le* self); | | ValaTryStatement* vala_ccode_base_module_get_current_try (ValaCCodeBaseModu
le* self); | |
| void vala_ccode_base_module_set_current_try (ValaCCodeBaseModule* self, Val
aTryStatement* value); | | void vala_ccode_base_module_set_current_try (ValaCCodeBaseModule* self, Val
aTryStatement* value); | |
| ValaCatchClause* vala_ccode_base_module_get_current_catch (ValaCCodeBaseMod
ule* self); | | ValaCatchClause* vala_ccode_base_module_get_current_catch (ValaCCodeBaseMod
ule* self); | |
| void vala_ccode_base_module_set_current_catch (ValaCCodeBaseModule* self, V
alaCatchClause* value); | | void vala_ccode_base_module_set_current_catch (ValaCCodeBaseModule* self, V
alaCatchClause* value); | |
| ValaTypeSymbol* vala_ccode_base_module_get_current_type_symbol (ValaCCodeBa
seModule* self); | | ValaTypeSymbol* vala_ccode_base_module_get_current_type_symbol (ValaCCodeBa
seModule* self); | |
| ValaClass* vala_ccode_base_module_get_current_class (ValaCCodeBaseModule* s
elf); | | ValaClass* vala_ccode_base_module_get_current_class (ValaCCodeBaseModule* s
elf); | |
| ValaMethod* vala_ccode_base_module_get_current_method (ValaCCodeBaseModule*
self); | | ValaMethod* vala_ccode_base_module_get_current_method (ValaCCodeBaseModule*
self); | |
| | | | |
| skipping to change at line 1308 | | skipping to change at line 1312 | |
| 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_local_cvalue (ValaCCod
eMemberAccessModule* self, ValaLocalVariable* local); | |
|
| | | ValaTargetValue* vala_ccode_member_access_module_get_parameter_cvalue (Vala | |
| | | CCodeMemberAccessModule* self, ValaParameter* param); | |
| | | ValaTargetValue* vala_ccode_member_access_module_load_parameter (ValaCCodeM | |
| | | emberAccessModule* 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 1548 | | skipping to change at line 1554 | |
| GType vala_interface_register_function_get_type (void) G_GNUC_CONST; | | GType vala_interface_register_function_get_type (void) G_GNUC_CONST; | |
| ValaInterfaceRegisterFunction* vala_interface_register_function_new (ValaIn
terface* iface, ValaCodeContext* context); | | ValaInterfaceRegisterFunction* vala_interface_register_function_new (ValaIn
terface* iface, ValaCodeContext* context); | |
| ValaInterfaceRegisterFunction* vala_interface_register_function_construct (
GType object_type, ValaInterface* iface, ValaCodeContext* context); | | ValaInterfaceRegisterFunction* vala_interface_register_function_construct (
GType object_type, ValaInterface* iface, ValaCodeContext* context); | |
| ValaInterface* vala_interface_register_function_get_interface_reference (Va
laInterfaceRegisterFunction* self); | | ValaInterface* vala_interface_register_function_get_interface_reference (Va
laInterfaceRegisterFunction* self); | |
| void vala_interface_register_function_set_interface_reference (ValaInterfac
eRegisterFunction* self, ValaInterface* value); | | void vala_interface_register_function_set_interface_reference (ValaInterfac
eRegisterFunction* self, ValaInterface* value); | |
| GType vala_struct_register_function_get_type (void) G_GNUC_CONST; | | GType vala_struct_register_function_get_type (void) G_GNUC_CONST; | |
| ValaStructRegisterFunction* vala_struct_register_function_new (ValaStruct*
st, ValaCodeContext* context); | | ValaStructRegisterFunction* vala_struct_register_function_new (ValaStruct*
st, ValaCodeContext* context); | |
| ValaStructRegisterFunction* vala_struct_register_function_construct (GType
object_type, ValaStruct* st, ValaCodeContext* context); | | ValaStructRegisterFunction* vala_struct_register_function_construct (GType
object_type, ValaStruct* st, ValaCodeContext* context); | |
| ValaStruct* vala_struct_register_function_get_struct_reference (ValaStructR
egisterFunction* self); | | ValaStruct* vala_struct_register_function_get_struct_reference (ValaStructR
egisterFunction* self); | |
| void vala_struct_register_function_set_struct_reference (ValaStructRegister
Function* self, ValaStruct* value); | | void vala_struct_register_function_set_struct_reference (ValaStructRegister
Function* self, ValaStruct* value); | |
|
| void vala_typeregister_function_init_from_type (ValaTypeRegisterFunction* s
elf, gboolean plugin); | | void vala_typeregister_function_init_from_type (ValaTypeRegisterFunction* s
elf, gboolean plugin, gboolean declaration_only); | |
| ValaTypeSymbol* vala_typeregister_function_get_type_declaration (ValaTypeRe
gisterFunction* self); | | ValaTypeSymbol* vala_typeregister_function_get_type_declaration (ValaTypeRe
gisterFunction* self); | |
| gchar* vala_typeregister_function_get_type_struct_name (ValaTypeRegisterFun
ction* self); | | gchar* vala_typeregister_function_get_type_struct_name (ValaTypeRegisterFun
ction* self); | |
| gchar* vala_typeregister_function_get_base_init_func_name (ValaTypeRegister
Function* self); | | gchar* vala_typeregister_function_get_base_init_func_name (ValaTypeRegister
Function* self); | |
| gchar* vala_typeregister_function_get_class_finalize_func_name (ValaTypeReg
isterFunction* self); | | gchar* vala_typeregister_function_get_class_finalize_func_name (ValaTypeReg
isterFunction* self); | |
| gchar* vala_typeregister_function_get_base_finalize_func_name (ValaTypeRegi
sterFunction* self); | | gchar* vala_typeregister_function_get_base_finalize_func_name (ValaTypeRegi
sterFunction* self); | |
| gchar* vala_typeregister_function_get_class_init_func_name (ValaTypeRegiste
rFunction* self); | | gchar* vala_typeregister_function_get_class_init_func_name (ValaTypeRegiste
rFunction* self); | |
| gchar* vala_typeregister_function_get_instance_struct_size (ValaTypeRegiste
rFunction* self); | | gchar* vala_typeregister_function_get_instance_struct_size (ValaTypeRegiste
rFunction* self); | |
| gchar* vala_typeregister_function_get_instance_init_func_name (ValaTypeRegi
sterFunction* self); | | gchar* vala_typeregister_function_get_instance_init_func_name (ValaTypeRegi
sterFunction* self); | |
| gchar* vala_typeregister_function_get_parent_type_name (ValaTypeRegisterFun
ction* self); | | gchar* vala_typeregister_function_get_parent_type_name (ValaTypeRegisterFun
ction* self); | |
| gchar* vala_typeregister_function_get_gtype_value_table_init_function_name
(ValaTypeRegisterFunction* self); | | gchar* vala_typeregister_function_get_gtype_value_table_init_function_name
(ValaTypeRegisterFunction* self); | |
| | | | |
End of changes. 8 change blocks. |
| 6 lines changed or deleted | | 14 lines changed or added | |
|