class TypedRb::AstParser::RewrittenWrapper

Attributes

rewritten[R]

Public Class Methods

new(parsed) click to toggle source
# File lib/typed/runtime/ast_parser.rb, line 36
def initialize(parsed)
  @rewritten = parsed
end

Public Instance Methods

to_sexp() click to toggle source
# File lib/typed/runtime/ast_parser.rb, line 44
def to_sexp
  "REWRITTEN: #{@rewritten}"
end
type() click to toggle source
# File lib/typed/runtime/ast_parser.rb, line 40
def type
  :rewritten
end