Sha256: 98d7710a70f8b4d60bf8f1d921f123d412c9680f8d697bd5088dbab46ecdd215
Contents?: true
Size: 518 Bytes
Versions: 41
Compression:
Stored size: 518 Bytes
Contents
module OrigenTesters::ATP class Formatter < Processor def format(node, options = {}) process(node) end def run_and_format(node, options = {}) ast = Runner.new.run(node, options) format(ast, options) end def self.format(node, options = {}) new.format(node, options) end def self.run_and_format(node, options = {}) ast = Runner.new.run(node, options) format(ast, options) end def self.run(*args) run_and_format(*args) end end end
Version data entries
41 entries across 41 versions & 1 rubygems