~ubuntu-branches/ubuntu/oneiric/vala/oneiric

« back to all changes in this revision

Viewing changes to vala/valaassignment.vala

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-08-19 17:13:39 UTC
  • mfrom: (1.5.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100819171339-x73wiqhwr5q6cqzs
Tags: 0.9.7-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
454
454
                        bool instance = (field != null && field.binding == MemberBinding.INSTANCE)
455
455
                                || (property != null && property.binding == MemberBinding.INSTANCE);
456
456
 
457
 
                        if (instance) {
 
457
                        if (field != null) {
 
458
                                // always process full lvalue
 
459
                                // current codegen depends on it
 
460
                                // should be removed when moving codegen from
 
461
                                // visit_assignment to emit_store_field
 
462
                                ma.emit (codegen);
 
463
                        } else if (instance) {
458
464
                                ma.inner.emit (codegen);
459
465
                        }
460
466
                } else if (ea != null) {