Allow line splitting on all operators &, !, ~, <<, and >>
Posted: Sat Oct 15, 2016 2:41 pm
We can split on the bitwise OR but not on the other bitwise operators.
This works:
But not this:
I can't split this line to keep it under 80 characters:
This works:
Code: Select all
Procedure A()
ProcedureReturn A.a|
%1000
EndProcedure
Code: Select all
Procedure B()
ProcedureReturn A.a&
%1000
EndProcedure
Procedure C()
ProcedureReturn A.a!
%1000
EndProcedure
Procedure D()
ProcedureReturn A.a~
%1000
EndProcedure
Procedure E()
ProcedureReturn A.a<<
1
EndProcedure
Procedure F()
ProcedureReturn A.a>>
1
EndProcedure
Code: Select all
Procedure BitwiseQuad()
ProcedureReturn Quad&
%1000000000000000000000000000000000000000000000000000000000000000
EndProcedure