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