roxen.lists.pike.general

Subject Author Date
"this" keyword in constructors (7.8) Martin Nilsson (Opera Mini - A <6341[at]lyskom[dot]lysator[dot]liu[dot]se> 10-03-2009
Yes, it is the intended behaviour. this-> indexes the module as seen
from the outside. You can instead do

class Blaha
{
    private int foo;

    void create(int foo)
    {
        Blaha::foo = foo;
    }
}