BCompiler.st
changeset 148 ef0e604209ec
parent 141 d378d997aab0
child 150 7aae365b392a
equal deleted inserted replaced
147:9de6bea67dbf 148:ef0e604209ec
    63 
    63 
    64     Class variables:
    64     Class variables:
    65 
    65 
    66 	JumpToAbsJump   <Dictionary>            internal table to map opcodes
    66 	JumpToAbsJump   <Dictionary>            internal table to map opcodes
    67 "
    67 "
    68 !
       
    69 
       
    70 version
       
    71     ^ '$Header: /cvs/stx/stx/libcomp/Attic/BCompiler.st,v 1.48 1995-11-23 02:20:16 cg Exp $'
       
    72 ! !
    68 ! !
    73 
    69 
    74 !ByteCodeCompiler class methodsFor:'compiling methods'!
    70 !ByteCodeCompiler class methodsFor:'compiling methods'!
    75 
    71 
    76 compile:methodText forClass:classToCompileFor
    72 compile:methodText forClass:classToCompileFor
  1884 	newMethod package:(Project currentPackageName)
  1880 	newMethod package:(Project currentPackageName)
  1885     ].
  1881     ].
  1886     ^ newMethod
  1882     ^ newMethod
  1887 ! !
  1883 ! !
  1888 
  1884 
       
  1885 !ByteCodeCompiler class methodsFor:'documentation'!
       
  1886 
       
  1887 version
       
  1888     ^ '$Header: /cvs/stx/stx/libcomp/Attic/BCompiler.st,v 1.49 1995-12-03 12:10:53 cg Exp $'
       
  1889 ! !