Class: RBS::AST::Members::Prepend

Inherits:
Base
  • Object
show all
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(*a) ⇒ Object



204
205
206
207
208
209
210
211
212
213
# File 'lib/rbs/ast/members.rb', line 204

def to_json(*a)
  {
    member: :prepend,
    name: name,
    args: args,
    annotations: annotations,
    location: location,
    comment: comment
  }.to_json(*a)
end