Class: SyntaxTree::CLI::Format

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

Overview

An action of the CLI that formats the input source and prints it out.

Instance Method Summary collapse

Methods inherited from Action

#failure, #success

Instance Method Details

#run(item) ⇒ Object



151
152
153
# File 'lib/syntax_tree/cli.rb', line 151

def run(item)
  puts item.handler.format(item.source)
end