Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Location.cs « scanner « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0933360817d591487c7c964a545e3ea719aea18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Location.cs
// Author: Sergey Chaban (serge@wildwestsoftware.com)

using System;

namespace Mono.ILASM {


	/// <summary>
	/// </summary>
	public class Location : ICloneable {
		internal int line;
		internal int column;


		/// <summary>
		/// </summary>
		public static readonly Location Unknown = new Location (-1, -1);

		/// <summary>
		/// </summary>
		public Location () {
			line = 1;
			column = 1;
		}

		/// <summary>
		/// </summary>
		/// <param name="line"></param>
		/// <param name="column"></param>
		public Location (int line, int column)
		{
			this.line = line;
			this.column = column;
		}


		/// <summary>
		/// </summary>
		/// <param name="that"></param>
		public Location (Location that)
		{
			this.line = that.line;
			this.column = that.column;
		}




		/// <summary>
		/// </summary>
		public void NewLine ()
		{
			++line;
			column = 1;
		}


		/// <summary>
		/// </summary>
		public void PreviousLine ()
		{
			--line;
			column = 1;
		}

		/// <summary>
		/// </summary>
		public void NextColumn ()
		{
			++column;
		}

		/// <summary>
		/// </summary>
		public void PreviousColumn ()
		{
			--column;
		}

		/// <summary>
		/// </summary>
		/// <param name="other"></param>
		public void CopyFrom (Location other)
		{
			this.line = other.line;
			this.column = other.column;
		}


		/// <summary>
		/// </summary>
		/// <returns></returns>
		public virtual object Clone () {
			return new Location (this);
		}

		public override string ToString ()
		{
			return "line (" + line + ") column (" + column + ")";
		}
	}
}