Class: Code::Parser::AndOperator
Instance Method Summary
collapse
#root, #whitespace, #whitespace?
Instance Method Details
#ampersand ⇒ Object
10
11
12
|
# File 'lib/code/parser/and_operator.rb', line 10
def ampersand
str("&")
end
|
14
15
16
|
# File 'lib/code/parser/and_operator.rb', line 14
def operator
ampersand << ampersand
end
|
#statement ⇒ Object
6
7
8
|
# File 'lib/code/parser/and_operator.rb', line 6
def statement
Equality
end
|