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

StringHelperBase.cs « scanner « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b88768aee0c8c3a85a058de970b6ebb311f600f (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
// StringHelperBase.cs
// Author: Sergey Chaban (serge@wildwestsoftware.com)

using System;
using System.Text;

namespace Mono.ILASM {

	/// <summary>
	/// </summary>
	internal abstract class StringHelperBase {

		protected ILTokenizer host;
		protected int mode;

		/// <summary>
		/// </summary>
		/// <param name="host"></param>
		public StringHelperBase (ILTokenizer host) {
			this.host = host;
			mode = Token.UNKNOWN;
		}

		/// <summary>
		/// </summary>
		/// <returns></returns>
		public abstract bool Start (char ch);


		/// <summary>
		/// </summary>
		/// <returns></returns>
		public bool Start (int ch)
		{
			return Start ((char)ch);
		}

		/// <summary>
		/// </summary>
		/// <returns></returns>
		public bool Start ()
		{
			return Start (host.Reader.Peek ());
		}


		/// <summary>
		/// </summary>
		/// <returns></returns>
		public abstract string Build ();


		/// <summary>
		/// </summary>
		public int TokenId {
			get {
				return mode;
			}
		}

	}

}