~ubuntu-branches/ubuntu/vivid/vala/vivid

« back to all changes in this revision

Viewing changes to codegen/valaccodeassignmentmodule.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-07-28 07:58:01 UTC
  • mfrom: (1.5.5 upstream) (7.3.14 experimental)
  • Revision ID: james.westby@ubuntu.com-20100728075801-18u9cg5hv5oety6m
Tags: 0.9.4-1
New upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
        void (*visit_enum) (ValaCCodeModule* self, ValaEnum* en);
152
152
        void (*visit_error_domain) (ValaCCodeModule* self, ValaErrorDomain* edomain);
153
153
        void (*visit_delegate) (ValaCCodeModule* self, ValaDelegate* d);
154
 
        void (*visit_member) (ValaCCodeModule* self, ValaMember* m);
 
154
        void (*visit_member) (ValaCCodeModule* self, ValaSymbol* m);
155
155
        void (*visit_constant) (ValaCCodeModule* self, ValaConstant* c);
156
156
        void (*visit_field) (ValaCCodeModule* self, ValaField* f);
157
157
        void (*visit_method) (ValaCCodeModule* self, ValaMethod* m);
988
988
}
989
989
 
990
990
 
 
991
/**
 
992
 * The link between an assignment and generated code.
 
993
 */
991
994
GType vala_ccode_assignment_module_get_type (void) {
992
995
        static volatile gsize vala_ccode_assignment_module_type_id__volatile = 0;
993
996
        if (g_once_init_enter (&vala_ccode_assignment_module_type_id__volatile)) {