Class: SyntaxTree::CLI::Doc

Inherits:
Action
  • Object
show all
Defined in:
lib/syntax_tree/cli.rb

Overview

An action of the CLI that prints out the doc tree IR for the given source.

Instance Attribute Summary

Attributes inherited from Action

#options

Instance Method Summary collapse

Methods inherited from Action

#failure, #initialize, #success

Constructor Details

This class inherits a constructor from SyntaxTree::CLI::Action

Instance Method Details

#run(item) ⇒ Object



157
158
159
160
161
162
163
# File 'lib/syntax_tree/cli.rb', line 157

def run(item)
  source = item.source

  formatter = Formatter.new(source, [])
  item.handler.parse(source).format(formatter)
  pp formatter.groups.first
end