Files
Bubberstation/code/modules/events
SkyratBot b8d9874c27 [MIRROR] Converts all A && A.B into A?.B (#1292)
* Converts A && A.B into A?.B (#54342)

Implements the ?. operator, replacing code like A && A.B with A?.B

BYOND Ref:
When reading A?.B, it's equivalent to A && A.B except that A is only evaluated once, even if it's a complex expression like a proc call.

* Converts all A && A.B into A?.B

Co-authored-by: ZeWaka <zewakagamer@gmail.com>
2020-10-13 23:19:25 +02:00
..
2020-01-29 04:13:57 +01:00
2020-07-06 23:44:02 -04:00
2020-10-04 23:45:58 +01:00
2020-02-17 15:03:16 +01:00