//------------------------------------------------------------------------------
//
//
// petes
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.CodeDom.Compiler {
using System.Diagnostics;
using System.IO;
///
///
/// Provides a code parsing interface.
///
///
public interface ICodeParser {
///
///
/// Compiles the given text stream into a CodeCompile unit.
///
///
CodeCompileUnit Parse(TextReader codeStream);
}
}