Skip to content

Commit

Permalink
Merge branch 'main' into Attributes-rework
Browse files Browse the repository at this point in the history
  • Loading branch information
elamaunt committed Jan 31, 2024
2 parents b4b8689 + ebabbd9 commit bf408cd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ GDShrapt.Reader allows to build a lexical tree or generate a new code from scrat

### How to install

Currently the latest **4.1.3-alpha version** from [Nuget](https://www.nuget.org/packages/GDShrapt.Reader).
Currently the latest **4.1.4-alpha version** from [Nuget](https://www.nuget.org/packages/GDShrapt.Reader).

Installation from Nuget console:
```
Install-Package GDShrapt.Reader -Version 4.1.3-alpha
Install-Package GDShrapt.Reader -Version 4.1.4-alpha
```
## Capabilities, plan and what can be parsed

Expand Down Expand Up @@ -62,6 +62,9 @@ Install-Package GDShrapt.Reader -Version 4.1.3-alpha

## Last updates

#### 4.1.4-alpha
Fixed dictionary with assignment parsing

#### 4.1.3-alpha
Fixed statics parsing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ public GDExpression Key
}
public GDColon Colon
{
get => (GDColon)_form.Token1;
get => _form.Token1 as GDColon;
set => _form.Token1 = value;
}
public GDAssign Assign
{
get => (GDAssign)_form.Token1;
get => _form.Token1 as GDAssign;
set => _form.Token1 = value;
}
public GDExpression Value
Expand Down
4 changes: 2 additions & 2 deletions src/GDShrapt.Reader/Declarations/GDEnumValueDeclaration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ public GDIdentifier Identifier
}
public GDColon Colon
{
get => (GDColon)_form.Token1;
get => _form.Token1 as GDColon;
set => _form.Token1 = value;
}
public GDAssign Assign
{
get => (GDAssign)_form.Token1;
get => _form.Token1 as GDAssign;
set => _form.Token1 = value;
}
public GDExpression Value
Expand Down
6 changes: 3 additions & 3 deletions src/GDShrapt.Reader/GDShrapt.Reader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>4.1.4-alpha</Version>
<Version>4.1.5-alpha</Version>
<Authors>elamaunt</Authors>
<Product>GDShrapt</Product>
<Description>GDShrapt.Reader is .Net library and object-oriented one-pass parser of GDScript. It can build a lexical tree of GDScript code or generate a new code from scratch.
Expand All @@ -16,8 +16,8 @@ Usage: Just create a GDScriptReader instance and call methods from it.</Descript
<RepositoryUrl>https://github.com/elamaunt/GDShrapt</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GDShrapt GDScript reader parser codegeneration Godot lexical analyzer</PackageTags>
<AssemblyVersion>4.1.4</AssemblyVersion>
<FileVersion>4.1.4</FileVersion>
<AssemblyVersion>4.1.5</AssemblyVersion>
<FileVersion>4.1.5</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

Expand Down

0 comments on commit bf408cd

Please sign in to comment.