Class: Jade::Parsing::FunctionCallPostfix
- Inherits:
-
Data
- Object
- Data
- Jade::Parsing::FunctionCallPostfix
- Defined in:
- lib/jade/parsing.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#lparen ⇒ Object
readonly
Returns the value of attribute lparen.
-
#rparen ⇒ Object
readonly
Returns the value of attribute rparen.
Instance Method Summary collapse
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args
16 17 18 |
# File 'lib/jade/parsing.rb', line 16 def args @args end |
#lparen ⇒ Object (readonly)
Returns the value of attribute lparen
16 17 18 |
# File 'lib/jade/parsing.rb', line 16 def lparen @lparen end |
#rparen ⇒ Object (readonly)
Returns the value of attribute rparen
16 17 18 |
# File 'lib/jade/parsing.rb', line 16 def rparen @rparen end |
Instance Method Details
#apply(node) ⇒ Object
17 18 19 |
# File 'lib/jade/parsing.rb', line 17 def apply(node) AST.function_call.call(node, lparen, args, rparen) end |