Sha256: a90aad379be94bf3a4937f8bc9b657a0d81534800debe77ed7ef6876485622ff
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # The Object Heap. # The collection of objects that are currently in play in # the running engine. # module Gloo module Core class Heap # The context is a reference to an object, usually a container. # The context will be the root by default. attr_reader :context # TODO: Do I need a running script context? # how to resolve relative reference. attr_reader :it, :root # Set up the object heap. def initialize() $log.debug "object heap intialized..." @root = Gloo::Objs::Container.new @root.name = "root" @context = Pn.root @it = It.new end # Unload the given obj--remove it from the heap. def unload obj can = obj.parent.nil? ? @root : obj.parent return unless can can.remove_child obj end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gloo-0.3.0 | lib/gloo/core/heap.rb |