lib/code/parser/bitwise_or.rb in code-ruby-0.5.6 vs lib/code/parser/bitwise_or.rb in code-ruby-0.6.0
- old
+ new
@@ -1,9 +1,11 @@
+# frozen_string_literal: true
+
class Code
class Parser
- class BitwiseOr < Operation
+ class BitwiseOr < LeftOperation
def statement
- ::Code::Parser::BitwiseAnd
+ BitwiseAnd
end
def pipe
str("|")
end