This commit is contained in:
miks1965 2018-08-09 09:31:48 +03:00
parent b51fc4ac44
commit 92baf0f7a3
5 changed files with 18 additions and 4 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "4";
public const string Build = "0";
public const string Revision = "1728";
public const string Revision = "1731";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%MINOR%=4
%REVISION%=1728
%COREVERSION%=0
%REVISION%=1731
%MINOR%=4
%MAJOR%=3

View file

@ -1 +1 @@
!define VERSION '3.4.0.1728'
!define VERSION '3.4.0.1731'

View file

@ -16,6 +16,11 @@ namespace SyntaxVisitors.SugarVisitors
get { return new TupleVisitor(); }
}
public override void visit(read_accessor_name wn)
{
}
public override void visit(tuple_node tup)
{
var dn = new dot_node(new dot_node(new ident("?System"), new ident("Tuple")), new ident("Create", tup.source_context));

View file

@ -0,0 +1,9 @@
var a: integer;
type
TExample = class
property Value: (integer,integer) read (1,1);
end;
begin
end.