Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
namespace Godot.SourceGenerators.Sample
{
public partial class AllReadOnly : GodotObject
public readonly string ReadonlyField = "foo";
public string ReadonlyAutoProperty { get; } = "foo";
public string ReadonlyProperty { get => "foo"; }
public string InitonlyAutoProperty { get; init; }
}