CompilationError.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 3063 221910736c8f
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:
3063
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     1
"
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     3
              All Rights Reserved
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     4
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     5
 This software is furnished under a license and may be used
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     6
 only in accordance with the terms of that license and with the
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     8
 be provided or otherwise made available to, or used by, any
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
     9
 other person.  No title to or ownership of the software is
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    10
 hereby transferred.
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    11
"
3060
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libcomp' }"
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
3063
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    14
ParseError subclass:#CompilationError
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    15
	instanceVariableNames:''
3060
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Compiler'
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
3063
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    21
!CompilationError class methodsFor:'documentation'!
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    22
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    23
copyright
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    24
"
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    25
 COPYRIGHT (c) 1989 by Claus Gittinger
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    26
              All Rights Reserved
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    27
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    28
 This software is furnished under a license and may be used
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    29
 only in accordance with the terms of that license and with the
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    31
 be provided or otherwise made available to, or used by, any
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    32
 other person.  No title to or ownership of the software is
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    33
 hereby transferred.
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    34
"
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    35
!
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    36
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    37
documentation
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    38
"
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    39
    raised for code-generator problems.
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    40
    This can only be a super-sized method, for which we run out of literal-,
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    41
    or another index.
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    42
"
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    43
! !
3060
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!CompilationError class methodsFor:'documentation'!
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
version
3063
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    48
    ^ '$Header: /cvs/stx/stx/libcomp/CompilationError.st,v 1.2 2013-04-03 17:21:19 cg Exp $'
3060
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
!
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
version_CVS
3063
221910736c8f class: CompilationError
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
    52
    ^ '$Header: /cvs/stx/stx/libcomp/CompilationError.st,v 1.2 2013-04-03 17:21:19 cg Exp $'
3060
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54