bad-slot-value ( value class -- * )


Vocabulary
slots

Definition
IN: slots

TUPLE: bad-slot-value { value read-only } { class read-only } ;


USING: kernel ;

IN: slots

: bad-slot-value ( value class -- * )
\ bad-slot-value boa throw ;


Methods
USING: kernel slots summary ;

M: bad-slot-value summary
drop "Bad store to specialized slot" ;