Przemyslaw Czerpak wrote:
On Tue, 13 Jan 2009, Teo Fonrouge wrote:
Hi Teo,
As subject. The following sample will not show the Self variable in the
Monitor->Local menu option when compiled with -b option:
[...]
because now it's fully optimized during compilation. If you want to
disabl
On Tue, 13 Jan 2009, Teo Fonrouge wrote:
Hi Teo,
> As subject. The following sample will not show the Self variable in the
> Monitor->Local menu option when compiled with -b option:
[...]
because now it's fully optimized during compilation. If you want to
disable this optimization then use -kJ
Hello,
As subject. The following sample will not show the Self variable in the
Monitor->Local menu option when compiled with -b option:
/* start prg code */
#include "hbclass.ch"
FUNCTION Main
t := Test1():New( 1 )
RETURN NIL
CLASS Test1
DATA v
METHOD New
ENDCLASS
METHOD New( p1 ) CLA