Skip to content

Commit

Permalink
Merge pull request #490 from Luthetus/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
Luthetus authored Jan 22, 2025
2 parents f375da1 + 52db735 commit 6544655
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ public Person(string firstName, string lastName)
public interface IPerson { }
public record PersonRecord(string FirstName, string LastName) // : IPerson; TODO: Inheritance here isn't working
public record PersonRecord(string FirstName, string LastName) : IPerson
{
// Comments need to be moved to some "trivia" like thing.
// I fixed primary constructor syntax then published but "// : IPerson; TODO: Inheritance here isn't working"
// was an older comment I had after the primary constructor syntax but before the OpenBraceToken and it broke the file.
public string DisplayName => $"{FirstName} {LastName}";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,12 @@
Recent Changes:
<div>
<div>
<div>v <em class="luth_em">0.9.7.19 </em> (WIP_DATE)</div>
<div>v <em class="luth_em">0.9.7.19 </em> (2025-01-22)</div>
<ul>
<li>
Text Editor NuGet Package v3.9.0 (by the end of the day I will publish this)
<a target="_blank" href="https://www.nuget.org/packages/Luthetus.TextEditor/">(nuget.org)</a>
</li>
<li>
Fix: primary constructor syntax with inheritance.
</li>
Expand All @@ -185,6 +189,9 @@
</li>
<li>
Re-work AbsolutePath
</li>
<li>
Fix: race condition exceptions from a lack of thread safety on UI List usage.
</li>
<li>
TextEditorCursor and TextEditorSelection -> record struct
Expand Down

0 comments on commit 6544655

Please sign in to comment.