BreakpointQuery.st
author Claus Gittinger <cg@exept.de>
Tue, 25 Feb 2020 02:40:09 +0100
changeset 4640 a1bb370605bc
parent 3427 97f94c0a8da7
child 3841 a22f33410bdf
permissions -rw-r--r--
#DOCUMENTATION by exept class: ParserFlags class comment/format in: #allowCStrings #allowEStrings changed: #initialize

"{ Package: 'stx:libcomp' }"

Query subclass:#BreakpointQuery
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'System-Compiler-Debugging'
!

!BreakpointQuery class methodsFor:'documentation'!

documentation
"
    BreakpointQuery is a query used to pass list of breakpoints
    to be installed from compilation requestor (browser, debugger,
    etc) to the compiler itself.

    [author:]
        Jan Vrany <jan.vrany@fit.cvut.cz>

    [instance variables:]

    [class variables:]

    [see also:]

"
! !

!BreakpointQuery class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libcomp/BreakpointQuery.st,v 1.1 2014-05-08 11:02:04 vrany Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libcomp/BreakpointQuery.st,v 1.1 2014-05-08 11:02:04 vrany Exp $'
! !