BCompiler.st
changeset 259 a469695d8d19
parent 256 ae09ebb4aa35
child 263 3b21d0991eff
--- a/BCompiler.st	Wed Apr 24 13:34:02 1996 +0200
+++ b/BCompiler.st	Thu Apr 25 09:53:22 1996 +0200
@@ -50,36 +50,36 @@
     There are many dependencies to the run-time-system (especially the
     interpreter) in here - be careful when playing around ...
 
-    Instance variables:
+    [Instance variables:]
 
-	codeBytes       <ByteArry>              bytecodes
-	codeIndex       <SmallInteger>          next index to put into code array
-	litArray        <OrderedCollection>     literals
-	stackDelta      <SmallInteger>          return value of byteCodeFor:
-	extra           <Symbol>                return value of byteCodeFor:
-	lineno          <Boolean>               return value of byteCodeFor:
-	extraLiteral    <Symbol>                return value of byteCodeFor:
-	maxStackDepth   <SmallInteger>          stack need of method
-	relocList       <Array>                 used temporary for relocation
+        codeBytes       <ByteArry>              bytecodes
+        codeIndex       <SmallInteger>          next index to put into code array
+        litArray        <OrderedCollection>     literals
+        stackDelta      <SmallInteger>          return value of byteCodeFor:
+        extra           <Symbol>                return value of byteCodeFor:
+        lineno          <Boolean>               return value of byteCodeFor:
+        extraLiteral    <Symbol>                return value of byteCodeFor:
+        maxStackDepth   <SmallInteger>          stack need of method
+        relocList       <Array>                 used temporary for relocation
 
-    Class variables:
+    [Class variables:]
 
-	JumpToAbsJump   <Dictionary>            internal table to map opcodes
+        JumpToAbsJump   <Dictionary>            internal table to map opcodes
 
-	SequenceNumber  <Integer>               counting intermediate stc-compiled
-						objects (for unique o-file naming)
+        SequenceNumber  <Integer>               counting intermediate stc-compiled
+                                                objects (for unique o-file naming)
 
-	STCCompilationDefines                   passed to stc as command line arguments
-	STCCompilationIncludes
-	STCCompilationOptions
-			<String>                
+        STCCompilationDefines                   passed to stc as command line arguments
+        STCCompilationIncludes
+        STCCompilationOptions
+                        <String>                
 
-	STCCompilation  <Symbol>                #always, #primitiveOnly or #never
-						controls when stc compilation is wanted
+        STCCompilation  <Symbol>                #always, #primitiveOnly or #never
+                                                controls when stc compilation is wanted
 
-	ShareCode       <Boolean>               reuse byteArrays for common (simple) code sequences
-						This is normally a 'good' optimization,
-						expect if you plan to modify the byteCodes.
+        ShareCode       <Boolean>               reuse byteArrays for common (simple) code sequences
+                                                This is normally a 'good' optimization,
+                                                expect if you plan to modify the byteCodes.
 "
 ! !
 
@@ -2227,6 +2227,6 @@
 !ByteCodeCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/BCompiler.st,v 1.75 1996-04-20 18:13:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/BCompiler.st,v 1.76 1996-04-25 07:53:22 cg Exp $'
 ! !
 ByteCodeCompiler initialize!