valaccodegenerator.h   valaccodegenerator.h 
skipping to change at line 117 skipping to change at line 117
#include <vala/valareferencetransferexpression.h> #include <vala/valareferencetransferexpression.h>
#include <vala/valabinaryexpression.h> #include <vala/valabinaryexpression.h>
#include <vala/valatypecheck.h> #include <vala/valatypecheck.h>
#include <vala/valaconditionalexpression.h> #include <vala/valaconditionalexpression.h>
#include <vala/valalambdaexpression.h> #include <vala/valalambdaexpression.h>
#include <vala/valaassignment.h> #include <vala/valaassignment.h>
#include <ccode/valaccodefunctioncall.h> #include <ccode/valaccodefunctioncall.h>
#include <ccode/valaccodestatement.h> #include <ccode/valaccodestatement.h>
#include <float.h> #include <float.h>
#include <math.h> #include <math.h>
#include <vala/valaarraytype.h>
#include <vala/valacodebinding.h> #include <vala/valacodebinding.h>
#include <vala/valanamespace.h> #include <vala/valanamespace.h>
#include <vala/valadynamicmethod.h> #include <vala/valadynamicmethod.h>
#include <vala/valadynamicproperty.h> #include <vala/valadynamicproperty.h>
#include <vala/valasignal.h> #include <vala/valasignal.h>
#include <vala/valadynamicsignal.h> #include <vala/valadynamicsignal.h>
#include <vala/valatypeparameter.h> #include <vala/valatypeparameter.h>
#include <vala/valaswitchlabel.h> #include <vala/valaswitchlabel.h>
#include <gee/list.h> #include <gee/list.h>
#include <vala/valasourcefile.h> #include <vala/valasourcefile.h>
skipping to change at line 187 skipping to change at line 188
ValaCCodeEnum* cenum; ValaCCodeEnum* cenum;
ValaCCodeFunction* function; ValaCCodeFunction* function;
ValaCCodeBlock* block; ValaCCodeBlock* block;
GeeArrayList* temp_vars; GeeArrayList* temp_vars;
GeeArrayList* temp_ref_vars; GeeArrayList* temp_ref_vars;
GeeSet* user_marshal_set; GeeSet* user_marshal_set;
GeeSet* predefined_marshal_set; GeeSet* predefined_marshal_set;
GeeSet* c_keywords; GeeSet* c_keywords;
gint next_temp_var_id; gint next_temp_var_id;
gboolean in_creation_method; gboolean in_creation_method;
gboolean in_static_or_class_ctor;
gboolean current_method_inner_error; gboolean current_method_inner_error;
ValaDataType* bool_type; ValaDataType* bool_type;
ValaDataType* char_type; ValaDataType* char_type;
ValaDataType* uchar_type;
ValaDataType* unichar_type; ValaDataType* unichar_type;
ValaDataType* short_type; ValaDataType* short_type;
ValaDataType* ushort_type; ValaDataType* ushort_type;
ValaDataType* int_type; ValaDataType* int_type;
ValaDataType* uint_type; ValaDataType* uint_type;
ValaDataType* long_type; ValaDataType* long_type;
ValaDataType* ulong_type; ValaDataType* ulong_type;
ValaDataType* int8_type; ValaDataType* int8_type;
ValaDataType* uint8_type; ValaDataType* uint8_type;
ValaDataType* int32_type;
ValaDataType* uint32_type;
ValaDataType* int64_type; ValaDataType* int64_type;
ValaDataType* uint64_type; ValaDataType* uint64_type;
ValaDataType* string_type; ValaDataType* string_type;
ValaDataType* float_type; ValaDataType* float_type;
ValaDataType* double_type; ValaDataType* double_type;
ValaTypeSymbol* gtype_type; ValaTypeSymbol* gtype_type;
ValaTypeSymbol* gobject_type; ValaTypeSymbol* gobject_type;
ValaErrorType* gerror_type; ValaErrorType* gerror_type;
ValaClass* glist_type; ValaClass* glist_type;
ValaClass* gslist_type; ValaClass* gslist_type;
skipping to change at line 257 skipping to change at line 262
ValaCCodeExpression* vala_ccode_generator_convert_to_generic_pointer (ValaC CodeGenerator* self, ValaCCodeExpression* cexpr, ValaDataType* actual_type) ; ValaCCodeExpression* vala_ccode_generator_convert_to_generic_pointer (ValaC CodeGenerator* self, ValaCCodeExpression* cexpr, ValaDataType* actual_type) ;
ValaCCodeExpression* vala_ccode_generator_transform_expression (ValaCCodeGe nerator* self, ValaCCodeExpression* source_cexpr, ValaDataType* expression_ type, ValaDataType* target_type, ValaExpression* expr); ValaCCodeExpression* vala_ccode_generator_transform_expression (ValaCCodeGe nerator* self, ValaCCodeExpression* source_cexpr, ValaDataType* expression_ type, ValaDataType* target_type, ValaExpression* expr);
ValaCCodeFunctionCall* vala_ccode_generator_get_property_set_call (ValaCCod eGenerator* self, ValaProperty* prop, ValaMemberAccess* ma, ValaCCodeExpres sion* cexpr); ValaCCodeFunctionCall* vala_ccode_generator_get_property_set_call (ValaCCod eGenerator* self, ValaProperty* prop, ValaMemberAccess* ma, ValaCCodeExpres sion* cexpr);
gboolean vala_ccode_generator_is_address_of_possible (ValaCCodeGenerator* s elf, ValaExpression* e); gboolean vala_ccode_generator_is_address_of_possible (ValaCCodeGenerator* s elf, ValaExpression* e);
ValaCCodeExpression* vala_ccode_generator_get_address_of_expression (ValaCC odeGenerator* self, ValaExpression* e, ValaCCodeExpression* ce); ValaCCodeExpression* vala_ccode_generator_get_address_of_expression (ValaCC odeGenerator* self, ValaExpression* e, ValaCCodeExpression* ce);
gboolean vala_ccode_generator_add_wrapper (ValaCCodeGenerator* self, const char* wrapper_name); gboolean vala_ccode_generator_add_wrapper (ValaCCodeGenerator* self, const char* wrapper_name);
ValaDataType* vala_ccode_generator_get_data_type_for_symbol (ValaTypeSymbol * sym); ValaDataType* vala_ccode_generator_get_data_type_for_symbol (ValaTypeSymbol * sym);
ValaCCodeExpression* vala_ccode_generator_default_value_for_type (ValaCCode Generator* self, ValaDataType* type, gboolean initializer_expression); ValaCCodeExpression* vala_ccode_generator_default_value_for_type (ValaCCode Generator* self, ValaDataType* type, gboolean initializer_expression);
ValaCCodeStatement* vala_ccode_generator_create_type_check_statement (ValaC CodeGenerator* self, ValaCodeNode* method_node, ValaDataType* ret_type, Val aTypeSymbol* t, gboolean non_null, const char* var_name); ValaCCodeStatement* vala_ccode_generator_create_type_check_statement (ValaC CodeGenerator* self, ValaCodeNode* method_node, ValaDataType* ret_type, Val aTypeSymbol* t, gboolean non_null, const char* var_name);
gint vala_ccode_generator_get_param_pos (ValaCCodeGenerator* self, double p aram_pos, gboolean ellipsis); gint vala_ccode_generator_get_param_pos (ValaCCodeGenerator* self, double p aram_pos, gboolean ellipsis);
gboolean vala_ccode_generator_dbus_use_ptr_array (ValaCCodeGenerator* self, ValaArrayType* array_type);
ValaCCodeBinding* vala_ccode_generator_code_binding (ValaCCodeGenerator* se lf, ValaCodeNode* node); ValaCCodeBinding* vala_ccode_generator_code_binding (ValaCCodeGenerator* se lf, ValaCodeNode* node);
ValaCCodeMethodBinding* vala_ccode_generator_method_binding (ValaCCodeGener ator* self, ValaMethod* node); ValaCCodeMethodBinding* vala_ccode_generator_method_binding (ValaCCodeGener ator* self, ValaMethod* node);
ValaCCodeDynamicMethodBinding* vala_ccode_generator_dynamic_method_binding (ValaCCodeGenerator* self, ValaDynamicMethod* node); ValaCCodeDynamicMethodBinding* vala_ccode_generator_dynamic_method_binding (ValaCCodeGenerator* self, ValaDynamicMethod* node);
ValaCCodeDynamicPropertyBinding* vala_ccode_generator_dynamic_property_bind ing (ValaCCodeGenerator* self, ValaDynamicProperty* node); ValaCCodeDynamicPropertyBinding* vala_ccode_generator_dynamic_property_bind ing (ValaCCodeGenerator* self, ValaDynamicProperty* node);
ValaCCodeDynamicSignalBinding* vala_ccode_generator_dynamic_signal_binding (ValaCCodeGenerator* self, ValaDynamicSignal* node); ValaCCodeDynamicSignalBinding* vala_ccode_generator_dynamic_signal_binding (ValaCCodeGenerator* self, ValaDynamicSignal* node);
ValaCCodeArrayCreationExpressionBinding* vala_ccode_generator_array_creatio n_expression_binding (ValaCCodeGenerator* self, ValaArrayCreationExpression * node); ValaCCodeArrayCreationExpressionBinding* vala_ccode_generator_array_creatio n_expression_binding (ValaCCodeGenerator* self, ValaArrayCreationExpression * node);
ValaCCodeElementAccessBinding* vala_ccode_generator_element_access_binding (ValaCCodeGenerator* self, ValaElementAccess* node); ValaCCodeElementAccessBinding* vala_ccode_generator_element_access_binding (ValaCCodeGenerator* self, ValaElementAccess* node);
ValaCCodeAssignmentBinding* vala_ccode_generator_assignment_binding (ValaCC odeGenerator* self, ValaAssignment* node); ValaCCodeAssignmentBinding* vala_ccode_generator_assignment_binding (ValaCC odeGenerator* self, ValaAssignment* node);
char* vala_ccode_generator_get_marshaller_function (ValaCCodeGenerator* sel f, GeeList* params, ValaDataType* return_type, const char* prefix, gboolean dbus); char* vala_ccode_generator_get_marshaller_function (ValaCCodeGenerator* sel f, GeeList* params, ValaDataType* return_type, const char* prefix, gboolean dbus);
void vala_ccode_generator_generate_marshaller (ValaCCodeGenerator* self, Ge eList* params, ValaDataType* return_type, gboolean dbus); void vala_ccode_generator_generate_marshaller (ValaCCodeGenerator* self, Ge eList* params, ValaDataType* return_type, gboolean dbus);
 End of changes. 5 change blocks. 
0 lines changed or deleted 6 lines changed or added


 valafield.h   valafield.h 
skipping to change at line 62 skipping to change at line 62
struct _ValaFieldClass { struct _ValaFieldClass {
ValaMemberClass parent_class; ValaMemberClass parent_class;
}; };
ValaField* vala_field_new (const char* name, ValaDataType* field_type, Vala Expression* initializer, ValaSourceReference* source_reference); ValaField* vala_field_new (const char* name, ValaDataType* field_type, Vala Expression* initializer, ValaSourceReference* source_reference);
char* vala_field_get_cname (ValaField* self); char* vala_field_get_cname (ValaField* self);
void vala_field_set_cname (ValaField* self, const char* cname); void vala_field_set_cname (ValaField* self, const char* cname);
char* vala_field_get_default_cname (ValaField* self); char* vala_field_get_default_cname (ValaField* self);
void vala_field_process_attributes (ValaField* self); void vala_field_process_attributes (ValaField* self);
char* vala_field_get_ctype (ValaField* self);
void vala_field_set_ctype (ValaField* self, const char* ctype);
ValaDataType* vala_field_get_field_type (ValaField* self); ValaDataType* vala_field_get_field_type (ValaField* self);
void vala_field_set_field_type (ValaField* self, ValaDataType* value); void vala_field_set_field_type (ValaField* self, ValaDataType* value);
ValaExpression* vala_field_get_initializer (ValaField* self); ValaExpression* vala_field_get_initializer (ValaField* self);
void vala_field_set_initializer (ValaField* self, ValaExpression* value); void vala_field_set_initializer (ValaField* self, ValaExpression* value);
MemberBinding vala_field_get_binding (ValaField* self); MemberBinding vala_field_get_binding (ValaField* self);
void vala_field_set_binding (ValaField* self, MemberBinding value); void vala_field_set_binding (ValaField* self, MemberBinding 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); gboolean vala_field_get_no_array_length (ValaField* self);
void vala_field_set_no_array_length (ValaField* self, gboolean value); void vala_field_set_no_array_length (ValaField* self, gboolean value);
 End of changes. 1 change blocks. 
0 lines changed or deleted 2 lines changed or added


 valagenietokentype.h   valagenietokentype.h 
skipping to change at line 72 skipping to change at line 72
VALA_GENIE_TOKEN_TYPE_COLON, VALA_GENIE_TOKEN_TYPE_COLON,
VALA_GENIE_TOKEN_TYPE_COMMA, VALA_GENIE_TOKEN_TYPE_COMMA,
VALA_GENIE_TOKEN_TYPE_CONST, VALA_GENIE_TOKEN_TYPE_CONST,
VALA_GENIE_TOKEN_TYPE_CONSTRUCT, VALA_GENIE_TOKEN_TYPE_CONSTRUCT,
VALA_GENIE_TOKEN_TYPE_CONTINUE, VALA_GENIE_TOKEN_TYPE_CONTINUE,
VALA_GENIE_TOKEN_TYPE_DEDENT, VALA_GENIE_TOKEN_TYPE_DEDENT,
VALA_GENIE_TOKEN_TYPE_DEF, VALA_GENIE_TOKEN_TYPE_DEF,
VALA_GENIE_TOKEN_TYPE_DEFAULT, VALA_GENIE_TOKEN_TYPE_DEFAULT,
VALA_GENIE_TOKEN_TYPE_DELEGATE, VALA_GENIE_TOKEN_TYPE_DELEGATE,
VALA_GENIE_TOKEN_TYPE_DELETE, VALA_GENIE_TOKEN_TYPE_DELETE,
VALA_GENIE_TOKEN_TYPE_DICT,
VALA_GENIE_TOKEN_TYPE_DIV, VALA_GENIE_TOKEN_TYPE_DIV,
VALA_GENIE_TOKEN_TYPE_DO, VALA_GENIE_TOKEN_TYPE_DO,
VALA_GENIE_TOKEN_TYPE_DOT, VALA_GENIE_TOKEN_TYPE_DOT,
VALA_GENIE_TOKEN_TYPE_DOWNTO, VALA_GENIE_TOKEN_TYPE_DOWNTO,
VALA_GENIE_TOKEN_TYPE_DYNAMIC, VALA_GENIE_TOKEN_TYPE_DYNAMIC,
VALA_GENIE_TOKEN_TYPE_ELLIPSIS, VALA_GENIE_TOKEN_TYPE_ELLIPSIS,
VALA_GENIE_TOKEN_TYPE_ELSE, VALA_GENIE_TOKEN_TYPE_ELSE,
VALA_GENIE_TOKEN_TYPE_ENUM, VALA_GENIE_TOKEN_TYPE_ENUM,
VALA_GENIE_TOKEN_TYPE_ENSURES, VALA_GENIE_TOKEN_TYPE_ENSURES,
VALA_GENIE_TOKEN_TYPE_ERRORDOMAIN, VALA_GENIE_TOKEN_TYPE_ERRORDOMAIN,
skipping to change at line 107 skipping to change at line 108
VALA_GENIE_TOKEN_TYPE_IN, VALA_GENIE_TOKEN_TYPE_IN,
VALA_GENIE_TOKEN_TYPE_INDENT, VALA_GENIE_TOKEN_TYPE_INDENT,
VALA_GENIE_TOKEN_TYPE_INIT, VALA_GENIE_TOKEN_TYPE_INIT,
VALA_GENIE_TOKEN_TYPE_INLINE, VALA_GENIE_TOKEN_TYPE_INLINE,
VALA_GENIE_TOKEN_TYPE_INTEGER_LITERAL, VALA_GENIE_TOKEN_TYPE_INTEGER_LITERAL,
VALA_GENIE_TOKEN_TYPE_INTERFACE, VALA_GENIE_TOKEN_TYPE_INTERFACE,
VALA_GENIE_TOKEN_TYPE_INTERR, VALA_GENIE_TOKEN_TYPE_INTERR,
VALA_GENIE_TOKEN_TYPE_IS, VALA_GENIE_TOKEN_TYPE_IS,
VALA_GENIE_TOKEN_TYPE_ISA, VALA_GENIE_TOKEN_TYPE_ISA,
VALA_GENIE_TOKEN_TYPE_LAMBDA, VALA_GENIE_TOKEN_TYPE_LAMBDA,
VALA_GENIE_TOKEN_TYPE_LIST,
VALA_GENIE_TOKEN_TYPE_LOCK, VALA_GENIE_TOKEN_TYPE_LOCK,
VALA_GENIE_TOKEN_TYPE_MINUS, VALA_GENIE_TOKEN_TYPE_MINUS,
VALA_GENIE_TOKEN_TYPE_NAMESPACE, VALA_GENIE_TOKEN_TYPE_NAMESPACE,
VALA_GENIE_TOKEN_TYPE_NEW, VALA_GENIE_TOKEN_TYPE_NEW,
VALA_GENIE_TOKEN_TYPE_NULL, VALA_GENIE_TOKEN_TYPE_NULL,
VALA_GENIE_TOKEN_TYPE_OF, VALA_GENIE_TOKEN_TYPE_OF,
VALA_GENIE_TOKEN_TYPE_OUT, VALA_GENIE_TOKEN_TYPE_OUT,
VALA_GENIE_TOKEN_TYPE_OP_AND, VALA_GENIE_TOKEN_TYPE_OP_AND,
VALA_GENIE_TOKEN_TYPE_OP_DEC, VALA_GENIE_TOKEN_TYPE_OP_DEC,
VALA_GENIE_TOKEN_TYPE_OP_EQ, VALA_GENIE_TOKEN_TYPE_OP_EQ,
 End of changes. 2 change blocks. 
0 lines changed or deleted 2 lines changed or added


 valanamedargument.h   valanamedargument.h 
/* valanamedargument.vala /* valanamedargument.vala
* *
* Copyright (C) 2006 Jürg Billeter * Copyright (C) 2006-2008 Jürg Billeter
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either * License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version. * version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
skipping to change at line 56 skipping to change at line 56
*/ */
struct _ValaNamedArgument { struct _ValaNamedArgument {
ValaCodeNode parent_instance; ValaCodeNode parent_instance;
ValaNamedArgumentPrivate * priv; ValaNamedArgumentPrivate * priv;
}; };
struct _ValaNamedArgumentClass { struct _ValaNamedArgumentClass {
ValaCodeNodeClass parent_class; ValaCodeNodeClass parent_class;
}; };
ValaNamedArgument* vala_named_argument_new (const char* _name, ValaExpressi on* arg, ValaSourceReference* source); ValaNamedArgument* vala_named_argument_new (const char* name, ValaExpressio n* argument, ValaSourceReference* source_reference);
const char* vala_named_argument_get_name (ValaNamedArgument* self); const char* vala_named_argument_get_name (ValaNamedArgument* self);
void vala_named_argument_set_name (ValaNamedArgument* self, const char* val ue); void vala_named_argument_set_name (ValaNamedArgument* self, const char* val ue);
ValaExpression* vala_named_argument_get_argument (ValaNamedArgument* self); ValaExpression* vala_named_argument_get_argument (ValaNamedArgument* self);
void vala_named_argument_set_argument (ValaNamedArgument* self, ValaExpress ion* value); void vala_named_argument_set_argument (ValaNamedArgument* self, ValaExpress ion* value);
GType vala_named_argument_get_type (void); GType vala_named_argument_get_type (void);
G_END_DECLS G_END_DECLS
#endif #endif
 End of changes. 2 change blocks. 
2 lines changed or deleted 2 lines changed or added


 valanamespacereference.h   valanamespacereference.h 
/* valanamespacereference.vala /* valanamespacereference.vala
* *
* Copyright (C) 2006-2007 Jürg Billeter * Copyright (C) 2006-2008 Jürg Billeter
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either * License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version. * version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 valasignal.h   valasignal.h 
skipping to change at line 65 skipping to change at line 65
struct _ValaSignalClass { struct _ValaSignalClass {
ValaMemberClass parent_class; ValaMemberClass parent_class;
}; };
ValaSignal* vala_signal_new (const char* name, ValaDataType* return_type, V alaSourceReference* source_reference); ValaSignal* vala_signal_new (const char* name, ValaDataType* return_type, V alaSourceReference* source_reference);
void vala_signal_add_parameter (ValaSignal* self, ValaFormalParameter* para m); void vala_signal_add_parameter (ValaSignal* self, ValaFormalParameter* para m);
GeeList* vala_signal_get_parameters (ValaSignal* self); GeeList* vala_signal_get_parameters (ValaSignal* self);
ValaDelegate* vala_signal_get_delegate (ValaSignal* self, ValaDataType* sen der_type); ValaDelegate* vala_signal_get_delegate (ValaSignal* self, ValaDataType* sen der_type);
char* vala_signal_get_cname (ValaSignal* self); char* vala_signal_get_cname (ValaSignal* self);
void vala_signal_set_cname (ValaSignal* self, const char* cname); void vala_signal_set_cname (ValaSignal* self, const char* cname);
ValaCCodeConstant* vala_signal_get_canonical_cconstant (ValaSignal* self); ValaCCodeConstant* vala_signal_get_canonical_cconstant (ValaSignal* self, c onst char* detail);
void vala_signal_process_attributes (ValaSignal* self); void vala_signal_process_attributes (ValaSignal* self);
ValaMethod* vala_signal_get_method_handler (ValaSignal* self); ValaMethod* vala_signal_get_method_handler (ValaSignal* self);
ValaDataType* vala_signal_get_return_type (ValaSignal* self); ValaDataType* vala_signal_get_return_type (ValaSignal* self);
void vala_signal_set_return_type (ValaSignal* self, ValaDataType* value); void vala_signal_set_return_type (ValaSignal* self, ValaDataType* value);
gboolean vala_signal_get_has_emitter (ValaSignal* self); gboolean vala_signal_get_has_emitter (ValaSignal* self);
void vala_signal_set_has_emitter (ValaSignal* self, gboolean value); void vala_signal_set_has_emitter (ValaSignal* self, gboolean value);
gboolean vala_signal_get_is_virtual (ValaSignal* self); gboolean vala_signal_get_is_virtual (ValaSignal* self);
void vala_signal_set_is_virtual (ValaSignal* self, gboolean value); void vala_signal_set_is_virtual (ValaSignal* self, gboolean value);
GType vala_signal_get_type (void); GType vala_signal_get_type (void);
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 valastringliteral.h   valastringliteral.h 
skipping to change at line 56 skipping to change at line 56
*/ */
struct _ValaStringLiteral { struct _ValaStringLiteral {
ValaLiteral parent_instance; ValaLiteral parent_instance;
ValaStringLiteralPrivate * priv; ValaStringLiteralPrivate * priv;
}; };
struct _ValaStringLiteralClass { struct _ValaStringLiteralClass {
ValaLiteralClass parent_class; ValaLiteralClass parent_class;
}; };
ValaStringLiteral* vala_string_literal_new (const char* s, ValaSourceRefere nce* source); ValaStringLiteral* vala_string_literal_new (const char* value, ValaSourceRe ference* source_reference);
char* vala_string_literal_eval (ValaStringLiteral* self); char* vala_string_literal_eval (ValaStringLiteral* self);
const char* vala_string_literal_get_value (ValaStringLiteral* self); const char* vala_string_literal_get_value (ValaStringLiteral* self);
void vala_string_literal_set_value (ValaStringLiteral* self, const char* va lue); void vala_string_literal_set_value (ValaStringLiteral* self, const char* va lue);
GType vala_string_literal_get_type (void); GType vala_string_literal_get_type (void);
G_END_DECLS G_END_DECLS
#endif #endif
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 valasymbol.h   valasymbol.h 
skipping to change at line 76 skipping to change at line 76
VALA_SYMBOL_ACCESSIBILITY_PUBLIC VALA_SYMBOL_ACCESSIBILITY_PUBLIC
} ValaSymbolAccessibility; } ValaSymbolAccessibility;
gboolean vala_symbol_is_internal_symbol (ValaSymbol* self); gboolean vala_symbol_is_internal_symbol (ValaSymbol* self);
char* vala_symbol_get_full_name (ValaSymbol* self); char* vala_symbol_get_full_name (ValaSymbol* self);
char* vala_symbol_get_cprefix (ValaSymbol* self); char* vala_symbol_get_cprefix (ValaSymbol* self);
char* vala_symbol_get_lower_case_cname (ValaSymbol* self, const char* infix ); char* vala_symbol_get_lower_case_cname (ValaSymbol* self, const char* infix );
char* vala_symbol_get_lower_case_cprefix (ValaSymbol* self); char* vala_symbol_get_lower_case_cprefix (ValaSymbol* self);
GeeList* vala_symbol_get_cheader_filenames (ValaSymbol* self); GeeList* vala_symbol_get_cheader_filenames (ValaSymbol* self);
char* vala_symbol_camel_case_to_lower_case (const char* camel_case); char* vala_symbol_camel_case_to_lower_case (const char* camel_case);
char* vala_symbol_lower_case_to_camel_case (const char* lower_case);
ValaScope* vala_symbol_get_top_accessible_scope (ValaSymbol* self); ValaScope* vala_symbol_get_top_accessible_scope (ValaSymbol* self);
ValaSymbol* vala_symbol_get_parent_symbol (ValaSymbol* self); ValaSymbol* vala_symbol_get_parent_symbol (ValaSymbol* self);
ValaScope* vala_symbol_get_owner (ValaSymbol* self); ValaScope* vala_symbol_get_owner (ValaSymbol* self);
void vala_symbol_set_owner (ValaSymbol* self, ValaScope* value); void vala_symbol_set_owner (ValaSymbol* self, ValaScope* value);
const char* vala_symbol_get_name (ValaSymbol* self); const char* vala_symbol_get_name (ValaSymbol* self);
void vala_symbol_set_name (ValaSymbol* self, const char* value); void vala_symbol_set_name (ValaSymbol* self, const char* 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);
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);
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added


 valasymbolresolver.h   valasymbolresolver.h 
skipping to change at line 66 skipping to change at line 66
#include <vala/valadostatement.h> #include <vala/valadostatement.h>
#include <vala/valaforstatement.h> #include <vala/valaforstatement.h>
#include <vala/valaforeachstatement.h> #include <vala/valaforeachstatement.h>
#include <vala/valareturnstatement.h> #include <vala/valareturnstatement.h>
#include <vala/valathrowstatement.h> #include <vala/valathrowstatement.h>
#include <vala/valatrystatement.h> #include <vala/valatrystatement.h>
#include <vala/valacatchclause.h> #include <vala/valacatchclause.h>
#include <vala/valaarraycreationexpression.h> #include <vala/valaarraycreationexpression.h>
#include <vala/valaparenthesizedexpression.h> #include <vala/valaparenthesizedexpression.h>
#include <vala/valainvocationexpression.h> #include <vala/valainvocationexpression.h>
#include <vala/valaelementaccess.h>
#include <vala/valaobjectcreationexpression.h> #include <vala/valaobjectcreationexpression.h>
#include <vala/valaunaryexpression.h> #include <vala/valaunaryexpression.h>
#include <vala/valareferencetransferexpression.h> #include <vala/valareferencetransferexpression.h>
#include <vala/valalambdaexpression.h> #include <vala/valalambdaexpression.h>
#include <vala/valaassignment.h> #include <vala/valaassignment.h>
G_BEGIN_DECLS G_BEGIN_DECLS
#define VALA_TYPE_SYMBOL_RESOLVER (vala_symbol_resolver_get_type ()) #define VALA_TYPE_SYMBOL_RESOLVER (vala_symbol_resolver_get_type ())
#define VALA_SYMBOL_RESOLVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VALA_ TYPE_SYMBOL_RESOLVER, ValaSymbolResolver)) #define VALA_SYMBOL_RESOLVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VALA_ TYPE_SYMBOL_RESOLVER, ValaSymbolResolver))
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/