Вместо #2263
This commit is contained in:
parent
c9617a5afc
commit
de14051dad
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%MINOR%=6
|
||||
%REVISION%=2511
|
||||
%COREVERSION%=3
|
||||
%REVISION%=2512
|
||||
%MINOR%=6
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
3.6.3.2511
|
||||
3.6.3.2512
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.6.3.2511'
|
||||
!define VERSION '3.6.3.2512'
|
||||
|
|
|
|||
6
TestSuite/errors/err0365.pas
Normal file
6
TestSuite/errors/err0365.pas
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
type t1 = class end;
|
||||
|
||||
begin
|
||||
var a := new t1;
|
||||
a.НеСуществующийМетод;
|
||||
end.
|
||||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue