Browse Source

Fix op_ExclusiveOr AST transform

pull/205/head
Pent Ploompuu 15 years ago
parent
commit
458571f750
  1. 2
      ICSharpCode.Decompiler/Ast/Transforms/ReplaceMethodCallsWithOperators.cs

2
ICSharpCode.Decompiler/Ast/Transforms/ReplaceMethodCallsWithOperators.cs

@ -125,7 +125,7 @@ namespace ICSharpCode.Decompiler.Ast.Transforms
return BinaryOperatorType.BitwiseAnd; return BinaryOperatorType.BitwiseAnd;
case "op_BitwiseOr": case "op_BitwiseOr":
return BinaryOperatorType.BitwiseOr; return BinaryOperatorType.BitwiseOr;
case "op_ExlusiveOr": case "op_ExclusiveOr":
return BinaryOperatorType.ExclusiveOr; return BinaryOperatorType.ExclusiveOr;
case "op_LeftShift": case "op_LeftShift":
return BinaryOperatorType.ShiftLeft; return BinaryOperatorType.ShiftLeft;

Loading…
Cancel
Save