Consider object instantiation as a method call on a class object, rather 
than an opcode on a type ID.
   $P0 = get_class "HLLClass"
   $P1 = $P0.new()
Or even:
   $P0 = get_hll_namespace
   $P1 = $P0.find_class("HLLClass")
   $P2 = $P1.new()
(Though the first could be shorthand for the second that assumes the 
current selected namespace.)
Allison
Kevin