Вместо #2263

This commit is contained in:
Mikhalkovich Stanislav 2020-06-19 01:12:12 +03:00
parent c9617a5afc
commit de14051dad
7 changed files with 12 additions and 6 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "6";
public const string Build = "3";
public const string Revision = "2511";
public const string Revision = "2512";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%MINOR%=6
%REVISION%=2511
%COREVERSION%=3
%REVISION%=2512
%MINOR%=6
%MAJOR%=3

Binary file not shown.

View file

@ -1 +1 @@
3.6.3.2511
3.6.3.2512

View file

@ -1 +1 @@
!define VERSION '3.6.3.2511'
!define VERSION '3.6.3.2512'

View file

@ -0,0 +1,6 @@
type t1 = class end;
begin
var a := new t1;
a.НеСуществующийМетод;
end.

View file

@ -5278,7 +5278,7 @@ namespace PascalABCCompiler.TreeConverter
else
{
sil = exp.type.find_in_type(id_right.name, context.CurrentScope);
sil = sil.Distinct(new SymInfoComparer()).ToList(); // SSM 16/06/20 - удалил дубли для порядка
sil = sil?.Distinct(new SymInfoComparer()).ToList(); // SSM 16/06/20 - удалил дубли для порядка
if (sil != null && sil.FirstOrDefault().sym_info != null && sil.FirstOrDefault().sym_info.semantic_node_type == semantic_node_type.wrap_def)
{
BasePCUReader.RestoreSymbols(sil, id_right.name);