// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Razor.Language
{
///
/// Performs necessary modifications to the IR document to optimize code generation.
///
///
///
/// The last phase of IR processing is lowering. IR passes in this phase perform some kind of transformation
/// on the IR that optimizes the generated code. The key distinction here is that information may be discarded
/// during this phase.
///
///
/// objects are executed according to an ascending ordering of the
/// property. The default configuration of
/// prescribes a logical ordering of specific phases of IR processing.
///
///
public interface IRazorIROptimizationPhase : IRazorEnginePhase
{
}
}