DISectionTypes.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 10 Jul 2018 15:59:31 +0100
branchjv
changeset 4383 b93f1405b8c7
permissions -rw-r--r--
DBG: Added classes representing Smalltalk/X debug info. See stx/dbginfo.h

"
 COPYRIGHT (c) 1989 by Claus Gittinger / eXept Software AG
 COPYRIGHT (c) 2016 Jan Vrany
              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: 'stx:libcomp' }"

"{ NameSpace: Smalltalk }"

SharedPool subclass:#DISectionTypes
	instanceVariableNames:''
	classVariableNames:'DbgInfoSectionVariableTable'
	poolDictionaries:''
	category:'System-Compiler-Debug Info'
!

!DISectionTypes class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1989 by Claus Gittinger / eXept Software AG
 COPYRIGHT (c) 2016 Jan Vrany
              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.
"
! !

!DISectionTypes class methodsFor:'initialization'!

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

    DbgInfoSectionVariableTable := 16r01.

    "Modified: / 10-07-2018 / 12:32:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !


DISectionTypes initialize!