-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathStringHelperBase.cs
More file actions
63 lines (48 loc) · 1.02 KB
/
Copy pathStringHelperBase.cs
File metadata and controls
63 lines (48 loc) · 1.02 KB
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;
}
}
}
}