BreakPointInterrupt.st
author Stefan Vogel <sv@exept.de>
Fri, 09 May 2003 18:11:22 +0200
changeset 7280 7afcccb7c856
parent 6207 b53b64413b40
child 7588 1819a1c408f3
permissions -rw-r--r--
Fix pidgin spelling: 'does not exists' and 'not exists'
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6038
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
HaltInterrupt subclass:#BreakPointInterrupt
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
6207
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
     7
	category:'Kernel-Exceptions-Control'
6038
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
6207
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    10
!BreakPointInterrupt class methodsFor:'documentation'!
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    11
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    12
documentation
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    13
"
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    14
    Raised by the breakpoint wrapper code.
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    15
    A debug-breakpoint (see browsers methodList-debug menu).
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    16
"
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    17
! !
6038
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!BreakPointInterrupt class methodsFor:'documentation'!
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
version
6207
b53b64413b40 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 6038
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/libbasic/BreakPointInterrupt.st,v 1.2 2001-11-17 10:02:06 cg Exp $'
6038
c365981fc61e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !