bug fix #1027
This commit is contained in:
parent
b51fc4ac44
commit
92baf0f7a3
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%MINOR%=4
|
||||
%REVISION%=1728
|
||||
%COREVERSION%=0
|
||||
%REVISION%=1731
|
||||
%MINOR%=4
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.4.0.1728'
|
||||
!define VERSION '3.4.0.1731'
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
9
TestSuite/ReadExPropTup.pas
Normal file
9
TestSuite/ReadExPropTup.pas
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
var a: integer;
|
||||
|
||||
type
|
||||
TExample = class
|
||||
property Value: (integer,integer) read (1,1);
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
||||
Loading…
Reference in a new issue