Class: Code::Parser::BitwiseAnd
Instance Method Summary
collapse
#right_statement, #root, #whitespace
Instance Method Details
#ampersand ⇒ Object
14
15
16
|
# File 'lib/code/parser/bitwise_and.rb', line 14
def ampersand
str("&")
end
|
18
19
20
|
# File 'lib/code/parser/bitwise_and.rb', line 18
def operator
ampersand
end
|
#statement ⇒ Object
6
7
8
|
# File 'lib/code/parser/bitwise_and.rb', line 6
def statement
Shift
end
|
#whitespace? ⇒ Boolean
10
11
12
|
# File 'lib/code/parser/bitwise_and.rb', line 10
def whitespace?
whitespace
end
|