Class: SyntaxTree::Def
Overview
Def represents defining a regular method on the current self object.
def method(param) result end
Instance Attribute Summary collapse
-
#bodystmt ⇒ Object
readonly
- BodyStmt
-
the expressions to be executed by the method.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#name ⇒ Object
readonly
- Backtick | Const | Ident | Kw | Op
-
the name of the method.
-
#params ⇒ Object
readonly
- Params | Paren
-
the parameter declaration for the method.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(name:, params:, bodystmt:, location:, comments: []) ⇒ Def
constructor
A new instance of Def.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(name:, params:, bodystmt:, location:, comments: []) ⇒ Def
Returns a new instance of Def.
3405 3406 3407 3408 3409 3410 3411 |
# File 'lib/syntax_tree/node.rb', line 3405 def initialize(name:, params:, bodystmt:, location:, comments: []) @name = name @params = params @bodystmt = bodystmt @location = location @comments = comments end |
Instance Attribute Details
#bodystmt ⇒ Object (readonly)
- BodyStmt
-
the expressions to be executed by the method
3400 3401 3402 |
# File 'lib/syntax_tree/node.rb', line 3400 def bodystmt @bodystmt end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
3403 3404 3405 |
# File 'lib/syntax_tree/node.rb', line 3403 def comments @comments end |
#name ⇒ Object (readonly)
- Backtick | Const | Ident | Kw | Op
-
the name of the method
3394 3395 3396 |
# File 'lib/syntax_tree/node.rb', line 3394 def name @name end |
#params ⇒ Object (readonly)
- Params | Paren
-
the parameter declaration for the method
3397 3398 3399 |
# File 'lib/syntax_tree/node.rb', line 3397 def params @params end |
Instance Method Details
#accept(visitor) ⇒ Object
3413 3414 3415 |
# File 'lib/syntax_tree/node.rb', line 3413 def accept(visitor) visitor.visit_def(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3417 3418 3419 |
# File 'lib/syntax_tree/node.rb', line 3417 def child_nodes [name, params, bodystmt] end |
#deconstruct_keys(_keys) ⇒ Object
3423 3424 3425 3426 3427 3428 3429 3430 3431 |
# File 'lib/syntax_tree/node.rb', line 3423 def deconstruct_keys(_keys) { name: name, params: params, bodystmt: bodystmt, location: location, comments: comments } end |
#format(q) ⇒ Object
3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 |
# File 'lib/syntax_tree/node.rb', line 3433 def format(q) q.group do q.group do q.text("def ") q.format(name) if !params.is_a?(Params) || !params.empty? || params.comments.any? q.format(params) end end unless bodystmt.empty? q.indent do q.breakable(force: true) q.format(bodystmt) end end q.breakable(force: true) q.text("end") end end |