mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-26 07:47:56 +01:00
* Move Spectre.Console.Cli to its own repository * Update build script to use Cake.Sdk and .NET Make * Remove StyleCop (unmaintained) * Add linting using dotnet format * Fix generator which was broken * Update dependencies
9 lines
247 B
C#
9 lines
247 B
C#
namespace Spectre.Console.Json.Syntax;
|
|
|
|
/// <summary>
|
|
/// Represents a syntax node in the JSON abstract syntax tree.
|
|
/// </summary>
|
|
public abstract class JsonSyntax
|
|
{
|
|
internal abstract void Accept<T>(JsonSyntaxVisitor<T> visitor, T context);
|
|
} |