CompilationErrorHandlerQuery.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 3841 a22f33410bdf
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3841
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     1
"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     3
              All Rights Reserved
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     4
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     5
 This software is furnished under a license and may be used
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     6
 only in accordance with the terms of that license and with the
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
     9
 other person.  No title to or ownership of the software is
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    10
 hereby transferred.
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    11
"
3768
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libcomp' }"
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Smalltalk }"
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Query subclass:#CompilationErrorHandlerQuery
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'System-Compiler'
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
3841
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    23
!CompilationErrorHandlerQuery class methodsFor:'documentation'!
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    24
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    25
copyright
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    26
"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    28
              All Rights Reserved
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    29
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    30
 This software is furnished under a license and may be used
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    31
 only in accordance with the terms of that license and with the
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    33
 be provided or otherwise made available to, or used by, any
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    34
 other person.  No title to or ownership of the software is
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    35
 hereby transferred.
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    36
"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3768
diff changeset
    37
! !
3768
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!CompilationErrorHandlerQuery class methodsFor:'documentation'!
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
version
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    ^ '$Header$'
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
version_CVS
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    ^ '$Header$'
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
! !
1d647e88ef05 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48