ClassBuildWarning.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 19 Oct 2016 09:22:53 +0100
branchjv
changeset 23071 77ad9497363c
parent 16426 f8a36e7fd6b1
permissions -rw-r--r--
Issue #94 [3/x]: Respect `SYS_PROCESS_ID` when creating an initial system process rather than assigning it (hardcoded) value of zero.

"{ Package: 'stx:libbasic' }"

Warning subclass:#ClassBuildWarning
	instanceVariableNames:'className'
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Support'
!


!ClassBuildWarning methodsFor:'accessing'!

className:aSymbol
    className := aSymbol.
! !

!ClassBuildWarning class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuildWarning.st,v 1.1 2014-05-13 22:11:40 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuildWarning.st,v 1.1 2014-05-13 22:11:40 cg Exp $'
! !