checkin from browser
authorClaus Gittinger <cg@exept.de>
Thu, 20 Jul 2000 16:05:24 +0200
changeset 1055 8180d6decde6
parent 1054 035067e8b90f
child 1056 b1a8d2b2a0ab
checkin from browser
ByteCodeCompiler.st
--- a/ByteCodeCompiler.st	Thu Jul 20 16:04:02 2000 +0200
+++ b/ByteCodeCompiler.st	Thu Jul 20 16:05:24 2000 +0200
@@ -400,37 +400,37 @@
 
     [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:]
 
-	JumpToAbsJump   <Dictionary>            internal table to map opcodes
-
-	SequenceNumber  <Integer>               counting intermediate stc-compiled
-						objects (for unique o-file naming)
-
-	STCCompilationDefines                   passed to stc as command line arguments
-	STCCompilationIncludes
-	STCCompilationOptions
-			<String>                
-
-	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.
+        JumpToAbsJump   <Dictionary>            internal table to map opcodes
+
+        SequenceNumber  <Integer>               counting intermediate stc-compiled
+                                                objects (for unique o-file naming)
+
+        STCCompilationDefines                   passed to stc as command line arguments
+        STCCompilationIncludes
+        STCCompilationOptions
+                        <String>                
+
+        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,
+                                                except if you plan to modify the byteCodes.
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 
 "
 ! !
@@ -3700,6 +3700,6 @@
 !ByteCodeCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.170 2000-07-20 14:04:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.171 2000-07-20 14:05:24 cg Exp $'
 ! !
 ByteCodeCompiler initialize!