Equivalent of "this" keyword in monkey C

Former Member
Former Member
What is the equivalent of the "this" keyword in monkey C? I want to do something like this:

class MyApp extends App.AppBase {
var view;

function initialize() {
view = new MyAppView(this);
}
}

Thanks
Jesus