Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Microsoft.AspNetCore.Razor.Language.Components
{
internal class ComponentConstrainedTypeParamDirective
internal static class ComponentConstrainedTypeParamDirective
{
public static DirectiveDescriptor Directive = DirectiveDescriptor.CreateDirective(
"typeparam",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.Razor.Language.Components
// but this one outputs properties annotated for Components's property injector, plus it doesn't need to
// support multiple CodeTargets.

internal class ComponentInjectDirective
internal static class ComponentInjectDirective
{
public static readonly DirectiveDescriptor Directive = DirectiveDescriptor.CreateDirective(
"inject",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Microsoft.AspNetCore.Razor.Language.Components
{
internal class ComponentTypeParamDirective
internal static class ComponentTypeParamDirective
{
public static DirectiveDescriptor Directive = DirectiveDescriptor.CreateDirective(
"typeparam",
Expand Down