Class: RBS::AST::Members::Prepend
- Includes:
- Mixin
- Defined in:
- lib/rbs/ast/members.rb
Instance Attribute Summary
Attributes included from Mixin
#annotations, #args, #comment, #location, #name
Instance Method Summary collapse
Methods included from Mixin
#==, #eql?, #hash, #initialize
Instance Method Details
#to_json(state = _ = nil) ⇒ Object
210 211 212 213 214 215 216 217 218 219 |
# File 'lib/rbs/ast/members.rb', line 210 def to_json(state = _ = nil) { member: :prepend, name: name, args: args, annotations: annotations, location: location, comment: comment }.to_json(state) end |