Class: Code::Parser::BitwiseAnd
- Inherits:
-
LeftOperation
- Object
- Language
- LeftOperation
- Code::Parser::BitwiseAnd
- Defined in:
- lib/code/parser/bitwise_and.rb
Instance Method Summary collapse
Methods inherited from LeftOperation
#root, #whitespace, #whitespace?
Instance Method Details
#ampersand ⇒ Object
10 11 12 |
# File 'lib/code/parser/bitwise_and.rb', line 10 def ampersand str("&") end |
#operator ⇒ Object
14 15 16 |
# File 'lib/code/parser/bitwise_and.rb', line 14 def operator ampersand end |
#statement ⇒ Object
6 7 8 |
# File 'lib/code/parser/bitwise_and.rb', line 6 def statement Shift end |