Method: SyntaxTree::TopConstRef#to_json

Defined in:
lib/syntax_tree.rb

#to_json(*opts) ⇒ Object



11914
11915
11916
11917
11918
11919
11920
11921
# File 'lib/syntax_tree.rb', line 11914

def to_json(*opts)
  {
    type: :top_const_ref,
    constant: constant,
    loc: location,
    cmts: comments
  }.to_json(*opts)
end