Link.st
changeset 17260 c86df97b698d
parent 1290 15ba3221b89b
child 18120 e3a375d5f6a8
child 19971 9bf68cbff965
--- a/Link.st	Mon Dec 29 16:46:03 2014 +0100
+++ b/Link.st	Tue Dec 30 00:51:04 2014 +0100
@@ -9,6 +9,9 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
+"{ Package: 'stx:libbasic' }"
+
+"{ NameSpace: Smalltalk }"
 
 Object subclass:#Link
 	instanceVariableNames:'nextLink'
@@ -59,8 +62,15 @@
     nextLink := aLink
 ! !
 
+!Link methodsFor:'converting'!
+
+asLink
+    ^ self
+! !
+
 !Link class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Link.st,v 1.12 1996-04-25 16:16:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Link.st,v 1.13 2014-12-29 23:51:04 cg Exp $'
 ! !
+