1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/preludes/ruby.rb
Patrick Thomson 4187810a1a First stab at a prelude that enables subclassing.
This appears to work, though the evaluation order in
evaluatePreludedRubyFile is off somehow.
2018-03-21 10:52:37 -04:00

10 lines
85 B
Ruby

class Object
def new
self
end
def inspect
return "<object>"
end
end