SmalltalkLanguage.st
changeset 22678 1f7fff8b32a9
parent 22668 942842a088be
child 24370 0ac45b7f595e
equal deleted inserted replaced
22677:71fe98c612e2 22678:1f7fff8b32a9
    48 
    48 
    49 !SmalltalkLanguage methodsFor:'accessing'!
    49 !SmalltalkLanguage methodsFor:'accessing'!
    50 
    50 
    51 id
    51 id
    52     "Return a unique integer id of this language.
    52     "Return a unique integer id of this language.
    53      id must be < 32.
    53      For languages built into the VM, it must be < 32.
    54      This id is used as index to various structures used by runtime"
    54      This id is used as index to various structures used by runtime
       
    55      (bytecode set ?).
       
    56      cg: this ought to be better documented - I have no idea, where it is used"
    55 
    57 
    56     ^ 1
    58     ^ 1
    57 
    59 
    58     "Created: / 12-04-2018 / 09:16:27 / stefan"
    60     "Created: / 12-04-2018 / 09:16:27 / stefan"
    59 !
    61 !