프로퍼티 | 타입 | 설명 | |
---|---|---|---|
beginColumn | int | ||
beginLine | int | ||
endColumn | int | ||
endLine | int | ||
image | string | ||
kind | int | ||
next | |||
specialToken |
메소드 | 설명 | |
---|---|---|
NewToken ( int ofKind ) : |
||
NewToken ( int ofKind, string image ) : |
Returns a new Token object, by default. However, if you want, you can create and return subclass objects based on the value of ofKind. Simply add the cases to the switch for all those special cases. For example, if you have a subclass of Token called IDToken that you want to create if ofKind is ID, simply add something like : case MyParserConstants.ID : return new IDToken(ofKind, image); to the following switch statement. Then you can cast matchedToken variable to the appropriate type and use sit in your lexical actions.
|
|
ToString ( ) : string |
Returns the image.
|
|
Token ( ) : System |
No-argument constructor
|
|
Token ( int kind ) : System |
Constructs a new token for the specified Image.
|
|
Token ( int kind, string image ) : System |
Constructs a new token for the specified Image and Kind.
|
public static NewToken ( int ofKind, string image ) : |
||
ofKind | int | |
image | string | |
리턴 |