Changes between Version 2 and Version 3 of Ticket #5843, comment 3


Ignore:
Timestamp:
2020-02-20T22:58:39Z (5 years ago)
Author:
Karim Adbdelhak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5843, comment 3

    v2 v3  
    3434I guess this is an alias of another condition that has appeared inside a `pre()` call or something like that. This would be something minimal i could think of:
    3535{{{
    36 when {c1, c2} then
    37   b1 = pre(c1);
    38   b2 = pre(c2);
     36when pre(c1) then
     37 /* ... */
    3938end
    4039}}}
    41 `c1` would be an alias of `$whencondition1`.
     40`pre(c1)` would be an alias of `$whencondition1`.