Next Prev Up Top Contents Index

break-new-instances-on-access

Function
Summary

Traps new instances of a given class, based on access modes. Note that this function is deprecated.

Package

clos

Signature
break-new-instances-on-access class-designator
 
                     &key read write slot-names
 => t
Arguments

class-designator

The class to trap.

read

If t , trap read accesses to the class. The default is t .

write

If t , trap write accesses to the class. The default is t .

slot-names

t means break on all slots, otherwise this should be a list of symbols which are the slot-names on which to break. The default is t .

Values

Returns t .

Description

Causes new instances of the class given by class-designator to be trapped for the access modes given by read , write and slot-names . Note that this function is deprecated. You should now use trace-new-instances-on-access instead.

See also

trace-new-instances-on-access


LispWorks Reference Manual - 25 Jul 2003

Next Prev Up Top Contents Index