Passing messages to "this" within class definition
Is it possible to pass a message to the instance of a class from within a method? Here is an example of what I am trying to do: Define Class(
"example",
x=1;
test = Method( {name, method},
<< Insert(name, method);
);
);
t = New Object( example());
// This fails to insert the blah method
t:test("blah", Method({y}, show("Blah " || char(x) || char(y))));
t:blah(6);
//This succeeds in insert
...