Open adityapatwardhan opened 5 years ago
New feature added to PowerShell https://github.com/PowerShell/PowerShell/pull/10636 for null coalescing operators. New feature added to PowerShell https://github.com/PowerShell/PowerShell/pull/10960 for null conditional member access.
$x ?? $y $x ??= 10 ${x}?.name ${x}?[0] ${x}?.MyMethod() ${x}?.name = 'myname' ${x}?['item'] = 'value'
My recommendation is to see what their TextMate scopes are today and see if they make sense.
From the code samples they look good so you might get away with not having to do any work.
Environment
Issue Description
New feature added to PowerShell https://github.com/PowerShell/PowerShell/pull/10636 for null coalescing operators. New feature added to PowerShell https://github.com/PowerShell/PowerShell/pull/10960 for null conditional member access.
Screenshots
Expected Behavior
Code Samples