Re-encoding all files with utf-8;

This commit is contained in:
2025-11-04 13:31:21 +09:00
parent 017153aa02
commit 2612e19d35
178 changed files with 178 additions and 178 deletions

View File

@@ -1,4 +1,4 @@
namespace Ghost.SDL.Compiler;
namespace Ghost.SDL.Compiler;
public class Lexer
{

View File

@@ -1,4 +1,4 @@
namespace Ghost.SDL.Compiler.Parser;
namespace Ghost.SDL.Compiler.Parser;
internal static class ParseUtility
{

View File

@@ -1,4 +1,4 @@
namespace Ghost.SDL.Compiler.Parser;
namespace Ghost.SDL.Compiler.Parser;
internal class ShaderBlock : IBlockParser<SDLSyntax, SDLSemantics>
{

View File

@@ -1,4 +1,4 @@
using Ghost.Core;
using Ghost.Core;
using Ghost.Core.Graphics;
using Ghost.SDL.Compiler.Parser;
using System.Text;

View File

@@ -1,4 +1,4 @@
using Ghost.Core.Graphics;
using Ghost.Core.Graphics;
namespace Ghost.SDL.Compiler;

View File

@@ -1,4 +1,4 @@
namespace Ghost.SDL.Compiler;
namespace Ghost.SDL.Compiler;
internal struct FunctionCallDeclaration
{

View File

@@ -1,4 +1,4 @@
namespace Ghost.SDL.Compiler;
namespace Ghost.SDL.Compiler;
[Flags]
public enum TokenType

View File

@@ -1,4 +1,4 @@
namespace Ghost.SDL.Compiler;
namespace Ghost.SDL.Compiler;
internal static class TokenStreamImple
{