ClassBuildWarning.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 12 Jun 2019 15:02:01 +0100
branchjv
changeset 24334 e82c3f5bc1f1
parent 16426 f8a36e7fd6b1
permissions -rw-r--r--
Issue #259: fix `ProjectDefinition >> classesForPlatform` and use it `#testSuite` THis allows packages to specify testcases valid for some platform only. This is normally not needed but sometimes the testcase uses a class that is platform specific and this will cause package validation error upon commit.

"{ 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 $'
! !