~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/addins/CSharpBinding/MonoDevelop.CSharp.Dom/Expressions/ThisReferenceExpression.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
        public class ThisReferenceExpression : AbstractCSharpNode
33
33
        {
 
34
                public DomLocation Location {
 
35
                        get;
 
36
                        set;
 
37
                }
 
38
                
 
39
                public override DomLocation StartLocation {
 
40
                        get {
 
41
                                return Location;
 
42
                        }
 
43
                }
 
44
                public override DomLocation EndLocation {
 
45
                        get {
 
46
                                return new DomLocation (Location.Line, Location.Column + "this".Length);
 
47
                        }
 
48
                }
 
49
 
 
50
 
34
51
                public override S AcceptVisitor<T, S> (ICSharpDomVisitor<T, S> visitor, T data)
35
52
                {
36
53
                        return visitor.VisitThisReferenceExpression (this, data);