Class: RBS::AST::Members::Extend

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(state = _ = nil) ⇒ Object



231
232
233
234
235
236
237
238
239
240
# File 'lib/rbs/ast/members.rb', line 231

def to_json(state = _ = nil)
  {
    member: :extend,
    name: name,
    args: args,
    annotations: annotations,
    location: location,
    comment: comment
  }.to_json(state)
end