Cface__CTypeNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 10 Jul 2008 20:56:08 +0000
changeset 6 ae25dce94003
parent 5 c110eef5b9ef
child 9 03c7a764d2be
permissions -rw-r--r--
Added SVNMapping. Now it is able to parse libsvn.def

"{ Package: 'cvut:fel/cface' }"

"{ NameSpace: Cface }"

CDefinitionNode subclass:#CTypeNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Cface-C AST'
!


!CTypeNode methodsFor:'accessing'!

cByteSize

    ^self subclassResponsibility

    "Created: / 09-07-2008 / 19:26:51 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

ffiTypeSymbol
    ^ self subclassResponsibility

    "Created: / 03-07-2008 / 22:54:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

priority

    ^self isForeign 
        ifTrue:[super priority - 1]
        ifFalse:[super priority]

    "Created: / 09-07-2008 / 20:41:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

smalltalkxValueExtractionSelector

    ^#at:

    "Created: / 09-07-2008 / 21:39:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

smalltalkxValueSettingSelector

    ^(self smalltalkxValueExtractionSelector , 'put:') asSymbol

    "Created: / 09-07-2008 / 22:13:29 / Jan Vrany <vranyj1@fel.cvut.cz>"
    "Modified: / 10-07-2008 / 07:38:35 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!CTypeNode methodsFor:'converting'!

resolved
    ^ self

    "Created: / 17-02-2008 / 17:56:03 / janfrog"
! !

!CTypeNode methodsFor:'testing'!

isAnonymous

    ^cName isNil

    "Created: / 04-07-2008 / 11:44:38 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

isCCharNode
    ^ false

    "Created: / 04-07-2008 / 09:26:46 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

isCTypeNode
    ^ true

    "Created: / 17-02-2008 / 21:49:53 / janfrog"
!

isForeign

    ^cName isNil

    "Created: / 04-07-2008 / 11:44:45 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!CTypeNode class methodsFor:'documentation'!

version
    ^ '$Header: /opt/data/cvs/cvut-fel/cface/Cface__CTypeNode.st,v 1.1 2008/02/26 15:59:04 vranyj1 Exp $'
! !