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