blob: ecfb2fcb5db0443e4dd424a23d82693e5f0a2a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Web.Razor.Parser.SyntaxTree;
namespace System.Web.Razor.Parser
{
internal interface ISyntaxTreeRewriter
{
Block Rewrite(Block input);
}
}
|