CompiledCodeObjectSectionFormat.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 17 Nov 2017 13:44:50 -0300
changeset 47 58bc3165af87
parent 12 6e775bad5027
permissions -rw-r--r--
libudis86sx: Fixed build support files

"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'jv:dragonfly' }"

"{ NameSpace: Smalltalk }"

SharedPool subclass:#CompiledCodeObjectSectionFormat
	instanceVariableNames:''
	classVariableNames:'SectionFormatBytes SectionFormatText SectionFormatOBJVector
		SectionFormatILCVector SectionFormatINTVector'
	poolDictionaries:''
	category:'System-Compiler-Interface'
!

!CompiledCodeObjectSectionFormat class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!CompiledCodeObjectSectionFormat class methodsFor:'initialization'!

initialize
    "Invoked at system start or when the class is dynamically loaded."

    "/ please change as required (and remove this comment)

    SectionFormatBytes := 0.
    SectionFormatText := 1.
    SectionFormatOBJVector := 2.
    SectionFormatILCVector := 4.
    SectionFormatINTVector := 5.

    "Modified: / 07-12-2015 / 21:43:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!CompiledCodeObjectSectionFormat class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !


CompiledCodeObjectSectionFormat initialize!