Property | Type | Description |
---|
Method | Description | |
---|---|---|
Equals ( object obj ) : bool | ||
Execute ( Lexer lexer ) : void |
This method calls Execute(Antlr4.Runtime.Lexer) on the result of Action() using the provided lexer .
|
|
GetHashCode ( ) : int | ||
LexerIndexedCustomAction ( int offset, ILexerAction action ) : Antlr4.Runtime |
Constructs a new indexed custom action by associating a character offset with a ILexerAction . Note: This class is only required for lexer actions for which ILexerAction.IsPositionDependent() returns
|
public LexerIndexedCustomAction ( int offset, ILexerAction action ) : Antlr4.Runtime | ||
offset | int |
/// The offset into the input
/// |
action | ILexerAction |
/// The lexer action to execute at a particular offset in the
/// input
/// |
return | Antlr4.Runtime |