Method: CodeTools::CompiledFile#body
- Defined in:
- lib/rubinius/compiler/compiled_file.rb
#body ⇒ Object
Return the body object by unmarshaling the data
65 66 67 68 69 70 |
# File 'lib/rubinius/compiler/compiled_file.rb', line 65 def body return @data if @data mar = CompiledFile::Marshal.new @data = mar.unmarshal(stream) end |