Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ICodeParser.cs « System.CodeDom.Compiler « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a2522f5ab2c092fe2e090c16f9b320e13a057d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.CodeDom.Compiler ICodeParser Interface
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//   Daniel Stodden (stodden@in.tum.de)
//
// (C) 2001 Ximian, Inc.
//

namespace System.CodeDom.Compiler
{
	using System.CodeDom;
	using System.IO;

	public interface ICodeParser
	{
		CodeCompileUnit Parse( TextReader codeStream );
	}
}