Class: Code::Parser::BitwiseAnd
Instance Method Summary
collapse
#root, #whitespace, #whitespace?
Instance Method Details
#ampersand ⇒ Object
10
11
12
|
# File 'lib/code/parser/bitwise_and.rb', line 10
def ampersand
str("&")
end
|
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
|