Original PR: https://github.com/Stone-Red-Code/YesNt-Interpreter/pull/2 Author: @Stone-Red-Code Created: 3/5/2026 Status: ✅ Merged Merged: 3/5/2026 Merged by: @Stone-Red-Code
Base: main ← Head: develop
main
develop
3c98c2b
dd6fbf3
533ad23
1ced6f3
e539813
0f7f63a
9d22381
ef1f731
2e023f1
79df5c9
82 files changed (+7828 additions, -1936 deletions)
📝 .editorconfig (+6 -0) ➕ LICENSE (+21 -0) 📝 README.md (+56 -4) ➕ SYNTAX_V2.md (+116 -0) 📝 YesNt-Interpreter.sln (+57 -1) 📝 YesNt.CodeEditor/Editor.cs (+311 -184) 📝 YesNt.CodeEditor/GlobalSuppressions.cs (+1 -1) 📝 YesNt.CodeEditor/InputHandler.cs (+310 -240) 📝 YesNt.CodeEditor/Program.cs (+3 -20) ➕ YesNt.CodeEditor/Properties/launchSettings.json (+12 -0) 📝 YesNt.CodeEditor/SyntaxHighlighter.cs (+129 -112) 📝 YesNt.CodeEditor/YesNt.CodeEditor.csproj (+8 -1) ➕ YesNt.Interpreter.App/Program.cs (+20 -0) ➕ YesNt.Interpreter.App/YesNt.Interpreter.App.csproj (+15 -0) ➕ YesNt.Interpreter.Generator/StatementRegistryGenerator.cs (+237 -0) ➕ YesNt.Interpreter.Generator/YesNt.Interpreter.Generator.csproj (+13 -0) ➕ YesNt.Interpreter.Tests/AddStatementTests.cs (+377 -0) ➕ YesNt.Interpreter.Tests/AssemblyInfo.cs (+3 -0) ➕ YesNt.Interpreter.Tests/CodeFlowStatementsTests.cs (+80 -0) ➕ YesNt.Interpreter.Tests/CodeFlowTests.cs (+288 -0)
.editorconfig
LICENSE
README.md
SYNTAX_V2.md
YesNt-Interpreter.sln
YesNt.CodeEditor/Editor.cs
YesNt.CodeEditor/GlobalSuppressions.cs
YesNt.CodeEditor/InputHandler.cs
YesNt.CodeEditor/Program.cs
YesNt.CodeEditor/Properties/launchSettings.json
YesNt.CodeEditor/SyntaxHighlighter.cs
YesNt.CodeEditor/YesNt.CodeEditor.csproj
YesNt.Interpreter.App/Program.cs
YesNt.Interpreter.App/YesNt.Interpreter.App.csproj
YesNt.Interpreter.Generator/StatementRegistryGenerator.cs
YesNt.Interpreter.Generator/YesNt.Interpreter.Generator.csproj
YesNt.Interpreter.Tests/AddStatementTests.cs
YesNt.Interpreter.Tests/AssemblyInfo.cs
YesNt.Interpreter.Tests/CodeFlowStatementsTests.cs
YesNt.Interpreter.Tests/CodeFlowTests.cs
...and 62 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/Stone-Red-Code/YesNt-Interpreter/pull/2
Author: @Stone-Red-Code
Created: 3/5/2026
Status: ✅ Merged
Merged: 3/5/2026
Merged by: @Stone-Red-Code
Base:
main← Head:develop📝 Commits (10+)
3c98c2bCode structure and speed imporvmentsdd6fbf3Add system statements ('exc')533ad23Fix error when loading empty file1ced6f3Improve code formattinge539813Use correct directory when importing other file0f7f63aImprove Regex performance and change .NET version to .NET 79d22381Rename SaveString to SafeStringef1f731Fix exc command2e023f1Add empty cwl command79df5c9Many improvements and bug fixes📊 Changes
82 files changed (+7828 additions, -1936 deletions)
View changed files
📝
.editorconfig(+6 -0)➕
LICENSE(+21 -0)📝
README.md(+56 -4)➕
SYNTAX_V2.md(+116 -0)📝
YesNt-Interpreter.sln(+57 -1)📝
YesNt.CodeEditor/Editor.cs(+311 -184)📝
YesNt.CodeEditor/GlobalSuppressions.cs(+1 -1)📝
YesNt.CodeEditor/InputHandler.cs(+310 -240)📝
YesNt.CodeEditor/Program.cs(+3 -20)➕
YesNt.CodeEditor/Properties/launchSettings.json(+12 -0)📝
YesNt.CodeEditor/SyntaxHighlighter.cs(+129 -112)📝
YesNt.CodeEditor/YesNt.CodeEditor.csproj(+8 -1)➕
YesNt.Interpreter.App/Program.cs(+20 -0)➕
YesNt.Interpreter.App/YesNt.Interpreter.App.csproj(+15 -0)➕
YesNt.Interpreter.Generator/StatementRegistryGenerator.cs(+237 -0)➕
YesNt.Interpreter.Generator/YesNt.Interpreter.Generator.csproj(+13 -0)➕
YesNt.Interpreter.Tests/AddStatementTests.cs(+377 -0)➕
YesNt.Interpreter.Tests/AssemblyInfo.cs(+3 -0)➕
YesNt.Interpreter.Tests/CodeFlowStatementsTests.cs(+80 -0)➕
YesNt.Interpreter.Tests/CodeFlowTests.cs(+288 -0)...and 62 more files
📄 Description
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.