From facfe8f2e91c13eb7c370b29fb264004f73d3976 Mon Sep 17 00:00:00 2001 From: Boris Shingarov Date: Tue, 16 Jul 2024 16:07:59 -0400 Subject: [PATCH] Get rid of explicit elaborateIn: We are trying to abandon this approach in view of https://github.com/shingarov/MachineArithmetic/issues/334 --- src/Sail-Jib/Def_Fn.class.st | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Sail-Jib/Def_Fn.class.st b/src/Sail-Jib/Def_Fn.class.st index 4d77312..f671a5f 100644 --- a/src/Sail-Jib/Def_Fn.class.st +++ b/src/Sail-Jib/Def_Fn.class.st @@ -22,13 +22,7 @@ Def_Fn class >> inducedParser [ Def_Fn >> addTo: aJibProgram [ aJibProgram values at: name - put: self. - self elaborateIn: aJibProgram -] - -{ #category : #'as yet unclassified' } -Def_Fn >> elaborateIn: aJibProgram [ - "self shouldBeImplemented." "the most interesting thing!" + put: self ] { #category : #printing }