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

« back to all changes in this revision

Viewing changes to vala/valalambdaexpression.vala

  • 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:
187
187
                        }
188
188
 
189
189
                        string lambda_param = lambda_param_it.get ();
190
 
                        var param_type = cb_param.parameter_type.get_actual_type (target_type, null, this);
 
190
                        var param_type = cb_param.variable_type.get_actual_type (target_type, null, this);
191
191
                        var param = new FormalParameter (lambda_param, param_type);
192
192
                        method.add_parameter (param);
193
193
                }