module Sorbet::Eraser

Constants

VERSION

Public Class Methods

erase(source) click to toggle source

The entrypoint method to this overall module. This should be called with a string that represents Ruby source, and it will return the modified Ruby source.

# File lib/sorbet/eraser.rb, line 26
def self.erase(source)
  Parser.erase(source)
end