#80 Method refactoring for type()

brian Sun 4 Jun 2006

I discovered a slot name conflict with Obj.type() versus Sys.type(Str,Bool) and Pod.type(Str,Bool) so I renamed the following methods:

class Sys
{
  pod()    -> findPod()
  type()   -> findType()
  slot()   -> findSlot()
  field()  -> findField()
  method() -> findMethod()
}

class Pod
{
  type()   -> findType()
}

I decided to leave the Type methods slot(), field(), and method() as they are instead of prefixing find.

Login or Signup to reply.