fix #2333
This commit is contained in:
parent
cc2078cc96
commit
cf55d3ffd7
|
|
@ -15,7 +15,7 @@ internal static class RevisionClass
|
|||
public const string Major = "3";
|
||||
public const string Minor = "7";
|
||||
public const string Build = "2";
|
||||
public const string Revision = "2807";
|
||||
public const string Revision = "2809";
|
||||
|
||||
public const string MainVersion = Major + "." + Minor;
|
||||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%MINOR%=7
|
||||
%REVISION%=2807
|
||||
%REVISION%=2809
|
||||
%COREVERSION%=2
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// This CSharp output file generated by Gardens Point LEX
|
||||
// Version: 1.1.3.301
|
||||
// Machine: DESKTOP-G8V08V4
|
||||
// DateTime: 17.01.2021 19:14:30
|
||||
// DateTime: 18.01.2021 18:43:04
|
||||
// UserName: ?????????
|
||||
// GPLEX input file <ABCPascal.lex>
|
||||
// GPLEX frame file <embedded resource>
|
||||
|
|
|
|||
|
|
@ -2234,6 +2234,13 @@ var_decl_part
|
|||
typed_var_init_expression
|
||||
: typed_const_plus
|
||||
{ $$ = $1; }
|
||||
| const_simple_expr tkDotDot const_term // SSM 18/01/20
|
||||
{
|
||||
if (parsertools.build_tree_for_formatter)
|
||||
$$ = new diapason_expr($1,$3,@$);
|
||||
else
|
||||
$$ = new diapason_expr_new($1,$3,@$);
|
||||
}
|
||||
| expl_func_decl_lambda
|
||||
{ $$ = $1; }
|
||||
| identifier tkArrow lambda_function_body
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -301,6 +301,10 @@ script=
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
3.7.2.2807
|
||||
3.7.2.2809
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.7.2.2807'
|
||||
!define VERSION '3.7.2.2809'
|
||||
|
|
|
|||
4
TestSuite/typedRange.pas
Normal file
4
TestSuite/typedRange.pas
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
begin
|
||||
var b: IntRange := 1..5;
|
||||
Assert((b.Low=1) and (b.High=5));
|
||||
end.
|
||||
Loading…
Reference in a new issue