Alaska Software Inc. - Debugger does not list protected variables of object
Username: Password:
AuthorTopic: Debugger does not list protected variables of object
Peter AlderliestenDebugger does not list protected variables of object
on Wed, 15 Oct 2014 22:59:28 +0200
I noticed that the command line debugger does not list the protected
variables of objects anymore. 

Peter
Andreas HerdtRe: Debugger does not list protected variables of object
on Thu, 16 Oct 2014 15:56:50 +0200
Hi Peter,

I have tried out following sample:

///////////////////////////// snip ////////////////////////////////
CLASS MyClass
  HIDDEN:
    VAR _Hid
  PROTECTED:
    VAR _prot
  EXPORTED:
    VAR _exp
    INLINE METHOD init()
      ::_Hid  := "hid"
      ::_Prot := "prot"
      ::_exp  := "exp"
    RETURN(self)
ENDCLASS

PROCEDURE Main

   LOCAL o
   o := MyClass():new()

RETURN
////////////////////////// snap /////////////////////////////////

When selecting to inspect local variable I can select
the variable "o" in the variable inspector. I am able
to further inspect the member variable. All of them
are shown.

What do you see at your side. Where does my
sample not fit your scenario.

With my best regards,

  Andreas Herdt
  Alaska Software

--------------------------------------------------------------------

Technical Support:      support@alaska-software.com

News Server:            news.alaska-software.com
Homepage:               http://www.alaska-software.com
WebKnowledgeBase:       http://www.alaska-software.com/kbase.shtm

Fax European Office:    +49 (0) 61 96 - 77 99 99 23
Fax US Office:          +1 (646) 218 1281
--------------------------------------------------------------------

"Peter Alderliesten" wrote in message 
news:avjefedaw6lg.1kam2i7w6oks$.dlg@40tude.net...
>
> I noticed that the command line debugger does not list the protected
> variables of objects anymore.
>
> Peter