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.
41 lines
738 B
41 lines
738 B
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using ICSharpCode.NRefactory.Ast; |
|
|
|
namespace ICSharpCode.NRefactory |
|
{ |
|
/// <summary> |
|
/// Parser interface. |
|
/// </summary> |
|
public interface IParser : IDisposable |
|
{ |
|
Parser.Errors Errors { |
|
get; |
|
} |
|
|
|
Parser.ILexer Lexer { |
|
get; |
|
} |
|
|
|
CompilationUnit CompilationUnit { |
|
get; |
|
} |
|
|
|
bool ParseMethodBodies { |
|
get; set; |
|
} |
|
|
|
void Parse(); |
|
|
|
Expression ParseExpression(); |
|
BlockStatement ParseBlock(); |
|
List<INode> ParseTypeMembers(); |
|
} |
|
}
|
|
|