mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.3 KiB
86 lines
2.3 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ICSharpCode.NRefactory.Parser |
|
{ |
|
/// <summary> |
|
/// Lexer interface |
|
/// </summary> |
|
public interface ILexer : IDisposable |
|
{ |
|
Errors Errors { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// The current Token. <seealso cref="ICSharpCode.NRefactory.Parser.Token"/> |
|
/// </summary> |
|
Token Token { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// The next Token (The <see cref="Token"/> after <see cref="NextToken"/> call) . <seealso cref="ICSharpCode.NRefactory.Parser.Token"/> |
|
/// </summary> |
|
Token LookAhead { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// Special comment tags are tags like TODO, HACK or UNDONE which are read by the lexer and stored in <see cref="TagComments"/>. |
|
/// </summary> |
|
string[] SpecialCommentTags { |
|
get; |
|
set; |
|
} |
|
|
|
/// <summary> |
|
/// Gets/Sets if the lexer should skip adding comments to the special tracker. Set this |
|
/// property to true to improve lexing performance. |
|
/// </summary> |
|
bool SkipAllComments { |
|
get; |
|
set; |
|
} |
|
|
|
/// <summary> |
|
/// Returns the comments that had been read and containing tag key words. |
|
/// </summary> |
|
List<TagComment> TagComments { |
|
get; |
|
} |
|
|
|
SpecialTracker SpecialTracker { |
|
get; |
|
} |
|
|
|
void StartPeek(); |
|
|
|
/// <summary> |
|
/// Gives back the next token. A second call to Peek() gives the next token after the last call for Peek() and so on. |
|
/// </summary> |
|
/// <returns>An <see cref="Token"/> object.</returns> |
|
Token Peek(); |
|
|
|
/// <summary> |
|
/// Reads the next token and gives it back. |
|
/// </summary> |
|
/// <returns>An <see cref="Token"/> object.</returns> |
|
Token NextToken(); |
|
|
|
/// <summary> |
|
/// Skips to the end of the current code block. |
|
/// For this, the lexer must have read the next token AFTER the token opening the |
|
/// block (so that Lexer.Token is the block-opening token, not Lexer.LookAhead). |
|
/// After the call, Lexer.LookAhead will be the block-closing token. |
|
/// </summary> |
|
void SkipCurrentBlock(int targetToken); |
|
} |
|
}
|
|
|