File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
src/Domain/HydraScript.Domain.FrontEnd/Parser/Impl/Ast/Nodes/Declarations Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 66
77Interpreter executable is built during release for 3 following platforms:
88- Windows (x64)
9- - MacOS (arm64 Apple Silicon)
9+ - macOS (arm64 Apple Silicon)
1010- Linux (x64)
1111
1212Download hydrascript executable on the corresponding release page.
1313
14- [ The latest relase is available here.] ( https://github.com/Stepami/hydrascript/releases/latest )
14+ [ The latest release is available here.] ( https://github.com/Stepami/hydrascript/releases/latest )
1515
1616Alternatively you can consume HydraScript as dotnet tool:
1717```
1818dotnet tool update --global hydrascript
1919```
20+ NuGet link: https://www.nuget.org/packages/hydrascript
2021
2122## Project History
2223
@@ -361,4 +362,4 @@ HydraScript file.js --dump
3613624 . [ Stanford CS143 Lectures] ( https://web.stanford.edu/class/archive/cs/cs143/cs143.1128/ )
3623635 . [ Simple Virtual Machine] ( https://github.com/parrt/simple-virtual-machine )
3633646 . Ахо А., Ульман Дж. Теория синтаксического анализа, перевода и компиляции
364- 7 . Свердлов С.З. Языки программирования и методы трансляции
365+ 7 . Свердлов С. З. Языки программирования и методы трансляции
Original file line number Diff line number Diff line change 1- using Cysharp . Text ;
21using HydraScript . Domain . FrontEnd . Parser . Impl . Ast . Nodes . Expressions . PrimaryExpressions ;
32
43namespace HydraScript . Domain . FrontEnd . Parser . Impl . Ast . Nodes . Declarations ;
@@ -44,6 +43,5 @@ public override string ToString() =>
4443[ AutoVisitable < TypeValue > ]
4544public partial record ObjectTypeValue ( List < PropertyTypeValue > Properties ) : TypeValue
4645{
47- public override string ToString ( ) =>
48- ZString . Concat ( '{' , ZString . Join ( ';' , Properties ) , '}' ) ;
46+ public override string ToString ( ) => $ "{{{string.Join(';', Properties)}}}";
4947}
You can’t perform that action at this time.
0 commit comments