diff --git a/src/Draco.Compiler/Internal/Symbols/Synthetized/IntrinsicSymbols.cs b/src/Draco.Compiler/Internal/Symbols/Synthetized/IntrinsicSymbols.cs index 53931ebea..523d72661 100644 --- a/src/Draco.Compiler/Internal/Symbols/Synthetized/IntrinsicSymbols.cs +++ b/src/Draco.Compiler/Internal/Symbols/Synthetized/IntrinsicSymbols.cs @@ -1,12 +1,9 @@ using System.Collections.Generic; using System.Collections.Immutable; -using System.Linq; -using System.Reflection; using Draco.Compiler.Api; using Draco.Compiler.Api.Syntax; using Draco.Compiler.Internal.OptimizingIr; using Draco.Compiler.Internal.OptimizingIr.Model; -using Draco.Compiler.Internal.Symbols.Error; using static Draco.Compiler.Internal.OptimizingIr.InstructionFactory; namespace Draco.Compiler.Internal.Symbols.Synthetized; diff --git a/src/Draco.Compiler/Internal/Symbols/Synthetized/SynthetizedTypeAliasSymbol.cs b/src/Draco.Compiler/Internal/Symbols/Synthetized/SynthetizedTypeAliasSymbol.cs index 054ef44de..4c3cf2af9 100644 --- a/src/Draco.Compiler/Internal/Symbols/Synthetized/SynthetizedTypeAliasSymbol.cs +++ b/src/Draco.Compiler/Internal/Symbols/Synthetized/SynthetizedTypeAliasSymbol.cs @@ -1,10 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Draco.Compiler.Api.Semantics; - namespace Draco.Compiler.Internal.Symbols.Synthetized; /// diff --git a/src/Draco.Compiler/Internal/Symbols/TypeAliasSymbol.cs b/src/Draco.Compiler/Internal/Symbols/TypeAliasSymbol.cs index 6df05117c..8a865a95f 100644 --- a/src/Draco.Compiler/Internal/Symbols/TypeAliasSymbol.cs +++ b/src/Draco.Compiler/Internal/Symbols/TypeAliasSymbol.cs @@ -1,8 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Draco.Compiler.Api.Semantics; namespace Draco.Compiler.Internal.Symbols;