mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-13 00:12:14 +01:00
Fix bug
This commit is contained in:
@@ -117,7 +117,7 @@ class BitwiseOperationExpressionFactory implements IExpressionParserFactory {
|
||||
num = m[2];
|
||||
|
||||
var parsed = null;
|
||||
if(num.indexOf('~') == '0') {
|
||||
if(num.indexOf('~') == 0) {
|
||||
parsed = new ExpressionOperand(num, NumericOperand.parse(num.substring(1)), '~');
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user