|
@@ -531,13 +531,11 @@ function Smalltalk() {
|
|
|
}
|
|
|
|
|
|
st.removeMethod = function(method) {
|
|
|
- var protocol = method.category;
|
|
|
var klass = method.methodClass;
|
|
|
|
|
|
delete klass.fn.prototype[st.selector(method.selector)];
|
|
|
delete klass.methods[method.selector];
|
|
|
|
|
|
- var selectors = Object.keys(klass.methods);
|
|
|
|
|
|
|
|
|
};
|
|
@@ -818,13 +816,6 @@ SmalltalkMethodContext.prototype.method = function() {
|
|
|
return method;
|
|
|
};
|
|
|
|
|
|
-
|
|
|
-SmalltalkMethodContext.prototype.resume = function() {
|
|
|
-
|
|
|
- smalltalk.thisContext = this;
|
|
|
- return this.method.apply(receiver, temps);
|
|
|
-};
|
|
|
-
|
|
|
|
|
|
|
|
|
var nil = new SmalltalkNil();
|