diff -r 683a52b52f50 -r 05d01dd462f6 ExecutableFunction.st --- a/ExecutableFunction.st Fri Aug 18 00:50:40 2000 +0200 +++ b/ExecutableFunction.st Fri Aug 18 22:05:21 2000 +0200 @@ -375,19 +375,23 @@ ! referencesLiteral:aLiteral - "return true, if this executable references the literal directly or indirectly. + "return true, if this executable references the literal directly (i.e. a flat search). Return false (we dont know) here, to allow alien code objects to be handled by the browsers." ^ false + + "Modified: / 18.8.2000 / 21:18:43 / cg" ! refersToLiteral:aLiteral - "return true, if this executable references the literal directly. + "return true, if this executable references the literal directly or indirectly (i.e. a deep search). Return false (we dont know) here, to allow alien code objects to be handled by the browsers." ^ false + + "Modified: / 18.8.2000 / 21:18:03 / cg" ! resources @@ -417,6 +421,6 @@ !ExecutableFunction class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.43 2000-08-17 22:22:23 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.44 2000-08-18 20:05:04 cg Exp $' ! ! ExecutableFunction initialize!