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