compiler/PPCCompiledMethod.st
changeset 438 20598d7ce9fa
parent 422 116d2b2af905
child 452 9f4558b3be66
equal deleted inserted replaced
437:54b3bc9e3987 438:20598d7ce9fa
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
     2 
     2 
     3 "{ NameSpace: Smalltalk }"
     3 "{ NameSpace: Smalltalk }"
     4 
     4 
     5 Object subclass:#PPCCompiledMethod
     5 Object subclass:#PPCCompiledMethod
     6 	instanceVariableNames:'code id'
     6 	instanceVariableNames:'id'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:''
     8 	poolDictionaries:''
     9 	category:'PetitCompiler-Core'
     9 	category:'PetitCompiler-Core'
    10 !
    10 !
       
    11 
    11 
    12 
    12 !PPCCompiledMethod methodsFor:'as yet unclassified'!
    13 !PPCCompiledMethod methodsFor:'as yet unclassified'!
    13 
    14 
    14 call
    15 call
    15 	^ 'self ', self methodName, '.'.
    16 	^ 'self ', self methodName, '.'.
    21 
    22 
    22 methodName
    23 methodName
    23 	^ id
    24 	^ id
    24 ! !
    25 ! !
    25 
    26 
       
    27 !PPCCompiledMethod class methodsFor:'documentation'!
       
    28 
       
    29 version_MC
       
    30     ^ 'PetitCompiler-JanVrany.stx.85 147209f0-e9c3-11e4-944c-606720e43e2c 2015-04-23T15:14:39+01 JanVrany'
       
    31 ! !
       
    32