* branch init * add BindCollectLightSymInfo * moved lightsyminfo to syntaxVisitors * LIghtSymInfo fixes * binder 0.1 * Attributes -> SymbolAttributes * AssignTupleOptimizer -> AssignTupleDesugar * moved algorithm classes to AssignTupleDesugarAlgorithm namespace * fixes and refactoring * LightSymInfo rework * add rebuildDebug and build units * enable VarNamesInMethodsWithSameNameAsClassGenericParamsReplacer * remove CollectFullLightSymInfo call * bind now return BindResult * change BindResult path type * path testing * fix Current in BindCollectLightSymInfo * fix Current in BindCollectLightSymInfo * fix #3116 * (the rest of the fix) * potential symomyms handling without assigns count minimization * assign count minimization * rename AssignTuplesDesugar * move NewAssignTupleDesugar * add optimization switch * delete AssignTupleDesugar project * remove comments * collect symbols from var tuples * optimize var_tuple_def_statement and assign_var_tuple * fix * fix Tuple Visitor * #3091 * #3125 * revert #3125 * #3125 * #3123 * #3123 * #3127 * fix * del doc * await переместил * Перегенерировал грамматику * s.ToLines RenameDirectory * Исправление ToLines * Убрал из грамматики узлы await - случайно оставались * Sync `.ToLines` with `System.IO.StringReader` (#3154) * 3.9.0.3494 * add const optimization * #3152 * #3152 --------- Co-authored-by: Sun Serega <sunserega2@gmail.com> Co-authored-by: Ivan Bondarev <ibond84@googlemail.com> Co-authored-by: Mikhalkovich Stanislav <miks@math.sfedu.ru> Co-authored-by: Артём Филонов <afilono@sfedu.ru>
24 lines
798 B
C#
24 lines
798 B
C#
//Generated from GlobalAssemblyInfo.cs.tmpl && Version
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
[assembly: AssemblyDelaySign(false)]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyProduct("PascalABC.NET Compiler")]
|
|
[assembly: AssemblyCopyright("Copyright © 2005-2021 by Ivan Bondarev, Stanislav Mihalkovich")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: AssemblyVersion(RevisionClass.FullVersion)]
|
|
|
|
internal static class RevisionClass
|
|
{
|
|
public const string Major = "3";
|
|
public const string Minor = "9";
|
|
public const string Build = "0";
|
|
public const string Revision = "3494";
|
|
|
|
public const string MainVersion = Major + "." + Minor;
|
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
|
}
|
|
|