mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
'not case' expression, case variable scope change
This commit is contained in:
parent
471897a150
commit
5feb0c044b
15 changed files with 133 additions and 19 deletions
|
@ -2423,8 +2423,8 @@ namespace System {
|
|||
if (dynamicKey.GetValue(c_firstEntryValue) case .Ok(let val))
|
||||
first = val.Get<int32>();
|
||||
int32 last = -1;
|
||||
if (dynamicKey.GetValue(c_lastEntryValue) case .Ok(let val))
|
||||
last = val.Get<int32>();
|
||||
if (dynamicKey.GetValue(c_lastEntryValue) case .Ok(let val2))
|
||||
last = val2.Get<int32>();
|
||||
|
||||
if ((first == -1) || (last == -1) || (first > last)) {
|
||||
rules = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue