Method: SyntaxTree::BEGINBlock#to_json

Defined in:
lib/syntax_tree.rb

#to_json(*opts) ⇒ Object



466
467
468
469
470
471
472
473
474
# File 'lib/syntax_tree.rb', line 466

def to_json(*opts)
  {
    type: :BEGIN,
    lbrace: lbrace,
    stmts: statements,
    loc: location,
    cmts: comments
  }.to_json(*opts)
end