diff --git a/src/Draco.Compiler/Internal/Syntax/Formatting/FormatAtom.cs b/src/Draco.Compiler/Internal/Syntax/Formatting/FormatAtom.cs deleted file mode 100644 index a671d20e5..000000000 --- a/src/Draco.Compiler/Internal/Syntax/Formatting/FormatAtom.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Draco.Compiler.Api.Syntax; - -namespace Draco.Compiler.Internal.Syntax.Formatting; - -/// -/// A significant atomic piece of syntax in terms of formatting. -/// -/// This means general token and comments from trivia. -/// Newlines and whitespace are not considered atoms. -/// -/// The token kind, in case it's a token. -/// The trivia kind, in case it's trivia. -/// The text the atom represents. -internal readonly record struct FormatAtom( - TokenKind? TokenKind, - TriviaKind? TriviaKind, - string? Text);