~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to contrib/Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
                string source_file;
11
11
                int line_number;
12
12
                byte[] hash;
13
 
                //int column_number;
 
13
                int column_number;
14
14
                
15
15
                internal Location (VirtualMachine vm, MethodMirror method, long native_addr, int il_offset, string source_file, int line_number, int column_number, byte[] hash) : base (vm, 0) {
16
16
                        this.method = method;
19
19
                        this.source_file = source_file;
20
20
                        this.line_number = line_number;
21
21
                        this.hash = hash;
22
 
                        //this.column_number = column_number;
 
22
                        this.column_number = column_number;
23
23
                }
24
24
 
25
25
                public MethodMirror Method {
46
46
                        }
47
47
            }
48
48
 
 
49
                // Since protocol version 2.19, 0 in earlier protocol versions
 
50
                public int ColumnNumber {
 
51
                        get {
 
52
                                return column_number;
 
53
                        }
 
54
            }
 
55
 
49
56
                // MD5 hash of source file
50
57
                // Since protocol version 2.14, null in earlier protocol versions
51
58
                public byte[] SourceFileHash {