From 01733c9619088ceb4eca08bfef75ab0aaa2f4f71 Mon Sep 17 00:00:00 2001 From: Semenov Dmitry Date: Sat, 26 Jun 2021 15:28:45 +0300 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3f5177d..436adad 100644 --- a/README.md +++ b/README.md @@ -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 **2.0.0-alpha version** from [Nuget](https://www.nuget.org/packages/GDShrapt.Reader). +Currently the latest **2.1.0-alpha version** from [Nuget](https://www.nuget.org/packages/GDShrapt.Reader). Installation from Nuget console: ``` -Install-Package GDShrapt.Reader -Version 2.0.0-alpha +Install-Package GDShrapt.Reader -Version 2.1.0-alpha ``` ## Capabilities, plan and what can be parsed @@ -56,12 +56,17 @@ Install-Package GDShrapt.Reader -Version 2.0.0-alpha | RPC annotations parsing | IN PLAN | | Syntax errors managment and properly handling | IN PLAN | | Tree walking and node visiting | IN PLAN | -| Syntax cloning | IN PLAN | +| Syntax cloning | YES | | Syntax factory | IN PLAN | | Tree diff tool | IN PLAN | ## Version history +#### 2.1.0-alpha +Implemented 'clone' methods for every token type. +Changed the project type to Net.Standart 2.0 (Because this version is supported by Godot). +Small fix with 'ToString' method of GDIndexerExpression. + #### 2.0.0-alpha The project is now in Net.Standart 2.1 and was totally reworked with tokenization layer. The parser now performs token extraction and lexical tree construction at the same time.