Parcourir la source

Remove message never sent.

Herby Vojčík il y a 5 ans
Parent
commit
54d03fd37c
2 fichiers modifiés avec 0 ajouts et 35 suppressions
  1. 0 31
      lang/src/Compiler-AST.js
  2. 0 4
      lang/src/Compiler-AST.st

+ 0 - 31
lang/src/Compiler-AST.js

@@ -175,37 +175,6 @@ return self;
 }; }),
 }; }),
 $globals.ASTNode);
 $globals.ASTNode);
 
 
-$core.addMethod(
-$core.method({
-selector: "method",
-protocol: "accessing",
-//>>excludeStart("ide", pragmas.excludeIdeData);
-args: [],
-source: "method\x0a\x09^ self parent ifNotNil: [ :node | node method ]",
-referencedClasses: [],
-//>>excludeEnd("ide");
-pragmas: [],
-messageSends: ["ifNotNil:", "parent", "method"]
-}, function ($methodClass){ return function (){
-var self=this,$self=this;
-//>>excludeStart("ctx", pragmas.excludeDebugContexts);
-return $core.withContext(function($ctx1) {
-//>>excludeEnd("ctx");
-var $1,$receiver;
-$1=$self._parent();
-if(($receiver = $1) == null || $receiver.a$nil){
-return $1;
-} else {
-var node;
-node=$receiver;
-return $recv(node)._method();
-}
-//>>excludeStart("ctx", pragmas.excludeDebugContexts);
-}, function($ctx1) {$ctx1.fill(self,"method",{})});
-//>>excludeEnd("ctx");
-}; }),
-$globals.ASTNode);
-
 $core.addMethod(
 $core.addMethod(
 $core.method({
 $core.method({
 selector: "navigationNodeAt:ifAbsent:",
 selector: "navigationNodeAt:ifAbsent:",

+ 0 - 4
lang/src/Compiler-AST.st

@@ -15,10 +15,6 @@ location: aLocation
 	self position: aLocation start line @ aLocation start column
 	self position: aLocation start line @ aLocation start column
 !
 !
 
 
-method
-	^ self parent ifNotNil: [ :node | node method ]
-!
-
 navigationNodeAt: aPoint ifAbsent: aBlock
 navigationNodeAt: aPoint ifAbsent: aBlock
 	"Answer the navigation node in the receiver's tree at aPoint 
 	"Answer the navigation node in the receiver's tree at aPoint 
 	or nil if no navigation node was found.
 	or nil if no navigation node was found.