class SyntaxTree::CLI::ScriptItem

command line.
An item of work that corresponds to a script content passed via the

def filepath

def filepath
  :script
end

def handler

def handler
  HANDLERS[".rb"]
end

def initialize(source)

def initialize(source)
  @source = source
end

def writable?

def writable?
  false
end