blob: 7cae04637ac2335a4aeb95eafe99b0cb6cbbf5ee (
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.Tokenizer.Symbols;
namespace System.Web.Razor.Tokenizer
{
public interface ITokenizer
{
ISymbol NextSymbol();
}
}
|