~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to contrib/ICSharpCode.NRefactory.CSharp/Parser/mcs/method.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-06-22 20:35:35 UTC
  • mfrom: (10.3.2)
  • Revision ID: package-import@ubuntu.com-20120622203535-zrozwvcf6kfk6l6i
Tags: 3.0.3.2+dfsg-1
* [3fd89ae] Imported Upstream version 3.0.3.2+dfsg
* [379a680] Remove old patches we haven't used for ages from git.
* [d71161d] Remove correct_paths_in_monodevelop-core-addins.pc.patch.
  Upstream claim to have fixed this by moving assembly install locations.
* [15dbfb9] Fix install location for MonoDevelop.Gettext.dll.config.
* [26eb434] Fix install location for MonoDevelop.SourceEditor2.dll.config.
* [4169974] Upstream commit 53282c9 which finally reconciles the 
  MonoDevelop.Gettext.dll install location with the 
  monodevelop-core-addins.pc location.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1432
1432
                                base_ctor = ConstructorLookup (ec, type, ref argument_list, loc);
1433
1433
                        }
1434
1434
        
1435
 
                        // TODO MemberCache: Does it work for inflated types ?
1436
 
                        if (base_ctor == caller_builder.Spec){
 
1435
                        if (base_ctor.MemberDefinition == caller_builder.Spec.MemberDefinition) {
1437
1436
                                ec.Report.Error (516, loc, "Constructor `{0}' cannot call itself",
1438
1437
                                        caller_builder.GetSignatureForError ());
1439
1438
                        }