// 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 to complete and
/// optimize code generation.
///
///
///
/// The last phase of intermediate node document processing is optimization. Passes in this phase perform some
/// kind of transformation on the intermediate node document 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.
///
///
public interface IRazorOptimizationPhase : IRazorEnginePhase
{
}
}