// 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. using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Web.Razor.Parser.SyntaxTree; using System.Web.Razor.Tokenizer.Symbols; namespace System.Web.Razor.Editor { public class SingleLineMarkupEditHandler : SpanEditHandler { [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "Func is the recommended delegate type and requires this level of nesting.")] public SingleLineMarkupEditHandler(Func> tokenizer) : base(tokenizer) { } [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "Func is the recommended delegate type and requires this level of nesting.")] public SingleLineMarkupEditHandler(Func> tokenizer, AcceptedCharacters accepted) : base(tokenizer, accepted) { } } }