stx_libcomp.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4723 524785227024
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:
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     1
"
4045
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger / eXept Software AG
4275
e06f4b087e47 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4061
diff changeset
     3
 COPYRIGHT (c) 2016 Jan Vrany
4653
cc24fb996651 Implement `Context >> argAndVarNames` using compiler-recorded debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4387
diff changeset
     4
 COPYRIGHT (c) 2020 LabWare
3135
50948967dd54 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3127
diff changeset
     5
              All Rights Reserved
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     6
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     7
 This software is furnished under a license and may be used
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     8
 only in accordance with the terms of that license and with the
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    10
 be provided or otherwise made available to, or used by, any
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    11
 other person.  No title to or ownership of the software is
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    12
 hereby transferred.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    13
"
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libcomp' }"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
3559
61d213bd4a32 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3528
diff changeset
    16
"{ NameSpace: Smalltalk }"
61d213bd4a32 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3528
diff changeset
    17
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
LibraryDefinition subclass:#stx_libcomp
3255
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    19
	instanceVariableNames:''
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    20
	classVariableNames:''
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    21
	poolDictionaries:''
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    22
	category:'* Projects & Packages *'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    25
!stx_libcomp class methodsFor:'documentation'!
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    26
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    27
copyright
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    28
"
4045
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    29
 COPYRIGHT (c) 1989 by Claus Gittinger / eXept Software AG
4275
e06f4b087e47 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4061
diff changeset
    30
 COPYRIGHT (c) 2016 Jan Vrany
4653
cc24fb996651 Implement `Context >> argAndVarNames` using compiler-recorded debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4387
diff changeset
    31
 COPYRIGHT (c) 2020 LabWare
3135
50948967dd54 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3127
diff changeset
    32
              All Rights Reserved
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    33
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    34
 This software is furnished under a license and may be used
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    35
 only in accordance with the terms of that license and with the
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    36
 inclusion of the above copyright notice.   This software may not
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    37
 be provided or otherwise made available to, or used by, any
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    38
 other person.  No title to or ownership of the software is
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    39
 hereby transferred.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    40
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    41
!
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    42
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    43
documentation
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    44
"
3498
6c8ade5db168 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    45
    Package documentation:
6c8ade5db168 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    46
3559
61d213bd4a32 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3528
diff changeset
    47
    This library contains the Smalltalk parser and bytecode compiler,
3498
6c8ade5db168 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    48
    and related support classes (AST representation).
3597
89fd7f6409ca class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3559
diff changeset
    49
4033
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    50
    This compiler is used when code is changed within the running IDE or application,
4045
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    51
    and when source code is loaded (fileIn).
4033
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    52
    It generates bytecode methods, which are (typically) further translated to machine code by the VM,
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    53
    when first executed 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    54
    (although for some architectures, no JITTER is available, and the bytecode will be interpreted, 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    55
     which is of course much slower).
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    56
     
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    57
    This is not to be confused with the stc-compiler, which generates plain machine code, 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    58
    which is packaged into compiled class libraries and runs with very good performance. 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    59
    Usually, end user applications are deployed as stc-compiled binary code. 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    60
    And only patches or dynamically generated code uses bytecode methods.
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    61
    Therefore, the speed of the bytecode interpreter is usually not at all relevant to a deployed app's 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    62
    overall speed (and also not to the ST/X IDE itself, as it also consists of precompiled machine code).
4045
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    63
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    64
    [author:]
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    65
        cg
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    66
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    67
    [primary maintainer:]
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    68
        cg
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    69
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    70
! !
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
!stx_libcomp class methodsFor:'description'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    74
excludedFromPreRequisites
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    75
    ^ #(
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    76
        #'exept:ctypes'
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    77
        #'stx:libbasic2'    "Text - referenced by Parser>>selectorCheck:for:positions: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    78
        #'stx:libtool'    "Tools::ToDoListBrowser - referenced by Parser>>selectorCheck:for:positions: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    79
        #'stx:libview'    "Color - referenced by SyntaxHighlighter>>markParenthesisAt: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    80
        #'stx:libview2'    "ValueHolder - referenced by Parser>>addDoItTemporary: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    81
        #'stx:libwidg'    "Workspace - referenced by Parser>>primary_identifier "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    82
        #'stx:libwidg2'    "TextBox - referenced by WarningCompilationErrorHandler>>error:position:to:from: "
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    83
        #'stx:goodies/sunit'
3912
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    84
        #'stx:goodies/refactoryBrowser/lint'    "RBReadBeforeWrittenTester - referenced by Parser class>>checkMethod:in:ignoreErrors:ignoreWarnings:"
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    85
        #'stx:goodies/refactoryBrowser/parser'    "RBAssignmentNode - referenced by Explainer class>>addTypesAssignedToLocal:inTree:to:"
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    86
        #'stx:goodies/refactoryBrowser/refactoring'    "RenameTemporaryRefactoring - referenced by Parser::CorrectByInteractiveRename>>fixFrom:to:for:"
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    87
        #'stx:libbasic3'    "AbstractSourceCodeManager - referenced by Explainer class>>methodSpecialInfoFor:"
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    88
        #'stx:libtool2'    "MethodFinderWindow - referenced by Explainer class>>actionToOpenMethodFinderFor:"
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    89
    )
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    90
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    91
    "Modified: / 16-06-2011 / 15:33:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    92
!
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    93
3033
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
    94
mandatoryPreRequisites
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    95
    "list packages which are mandatory as a prerequisite.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    96
     This are packages containing superclasses of my classes and classes which
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    97
     are extended by myself.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    98
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    99
     This method is generated automatically,
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   100
     by searching along the inheritance chain of all of my classes.
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   101
     Please take a look at the #referencedPreRequisites method as well."
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   102
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    ^ #(
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   104
        #'stx:libbasic'    "Behavior - superclass of Structure"
3033
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   105
    )
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   106
!
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   107
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   108
referencedPreRequisites
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   109
    "list packages which are a prerequisite, because they contain
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   110
     classes which are referenced by my classes.
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   111
     These packages are NOT needed as a prerequisite for compiling or loading,
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   112
     however, a class from it may be referenced during execution and having it
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   113
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   114
     includes explicit checks for the package being present.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   115
     This method is generated automatically,
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   116
     by searching all classes (and their packages) which are referenced by my classes.
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   117
     Please also take a look at the #mandatoryPreRequisites method"
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   118
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   119
    ^ #(
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   120
    )
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   123
!stx_libcomp class methodsFor:'description - compilation'!
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   124
2203
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   125
additionalBaseAddressDefinition_bc_dot_mak
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   126
    "this is an optional definition, which (if present) may speed up the dll-loading a little
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   127
     on win32 systems."
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   128
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
   129
    ^ '
1968
b6b05dcbafff Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1927
diff changeset
   130
# see stdHeader_bc for LIBCOMP_BASE
2203
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   131
LIB_BASE=$(LIBCOMP_BASE)
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
   132
'
1878
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   133
!
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   134
4358
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   135
additionalLinkLibraries_bc_dot_mak
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   136
    "allows for additional static libraries to be added to the bc.mak file.
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   137
     Subclasses may redefine this"
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   138
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   139
    ^ '-lPsapi'
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   140
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   141
    "Created: / 09-02-2019 / 09:33:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   142
!
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   143
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   144
stcOptimizationOptions
3528
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   145
    ^ '+optinline +optinline2 +inlinenew'
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   146
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   147
    "Created: / 23-08-2006 / 11:27:31 / cg"
3528
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   148
!
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   149
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   150
stcWarningOptions
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   151
    ^ '-warnNonStandard -warnUnused'
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   152
! !
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   153
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   154
!stx_libcomp class methodsFor:'description - contents'!
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   155
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   156
classNamesAndAttributes
2254
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   157
    "lists the classes which are to be included in the project.
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   158
     Each entry in the list may be: a single class-name (symbol),
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   159
     or an array-literal consisting of class name and attributes.
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   160
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   161
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   162
    ^ #(
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   163
        "<className> or (<className> attributes...) in load order"
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   164
        Breakpoint
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   165
        BreakpointDescription
3435
098a5800d572 Added BreakpointQuery
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3373
diff changeset
   166
        BreakpointQuery
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   167
        CompilationErrorHandler
3779
cda866352727 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3673
diff changeset
   168
        CompilationErrorHandlerQuery
4496
4896f7c0c61a #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4458
diff changeset
   169
        DoEnableCompilerOptionActionQuery
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   170
        DIEntry
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   171
        DIInfoVersions
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   172
        DISectionTypes
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   173
        DoNotShowCompilerWarningAgainActionQuery
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   174
        DoNotShowCompilerWarningAgainForThisMethodActionQuery
3779
cda866352727 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3673
diff changeset
   175
        DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   176
        InstrumentationContext
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   177
        InstrumentationInfo
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   178
        InstrumentedMethod
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   179
        LazyMethod
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   180
        ObjectFileHandle
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   181
        ObjectFileLoader
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   182
        ParseError
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   183
        ParseNode
3823
016b214c9d35 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
   184
        ParseNodeVisitor
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   185
        ParseWarning
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   186
        ParserFlags
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   187
        ProgramNodeBuilder
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   188
        ProgramNodeEnumerator
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   189
        STCCompilerInterface
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   190
        Scanner
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   191
        SourceFileLoader
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   192
        Structure
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   193
        UndefinedVariable
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   194
        UndefinedVariableNotification
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   195
        Variable
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   196
        #'stx_libcomp'
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   197
        AssignmentNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   198
        BlockNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   199
        BreakpointNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   200
        CompilationError
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   201
        DIInfo
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   202
        DISection
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   203
        DIVariable
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   204
        EvalScriptingErrorHandler
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   205
        MessageNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   206
        MethodNode
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   207
        ParseErrorNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   208
        Parser
3823
016b214c9d35 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
   209
        PluggableParseNodeVisitor
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   210
        PrimaryNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   211
        ProgramNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   212
        SelectorNode
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   213
        StatementNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   214
        TextCollectingCompilationErrorHandler
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   215
        UndefinedSuperclassError
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   216
        UndefinedVariableError
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   217
        WarningCompilationErrorHandler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   218
        AbstractSyntaxHighlighter
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   219
        BinaryNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   220
        BreakpointAnalyzer
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   221
        ByteCodeCompiler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   222
        CascadeNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   223
        ConstantNode
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
   224
        DIVariableTable
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   225
        Explainer
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   226
        PrimitiveNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   227
        ReturnNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   228
        SelfNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   229
        UnaryNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   230
        VariableNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   231
        ByteCodeCompilerWithBreakpointSupport
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   232
        CodeCoverageHighlighter
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   233
        Decompiler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   234
        ECompletionConstantNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   235
        InstrumentingCompiler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   236
        SuperNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   237
        SyntaxHighlighter
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   238
        (ParseNodeValidator autoload)
3823
016b214c9d35 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
   239
        (Switch autoload)
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   240
    )
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   241
!
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   242
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   243
extensionMethodNames
3848
869d3d3fe0ce #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3834
diff changeset
   244
    "lists the extension methods which are to be included in the project.
869d3d3fe0ce #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3834
diff changeset
   245
     Entries are 2-element array literals, consisting of class-name and selector.
869d3d3fe0ce #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3834
diff changeset
   246
     A correponding method with real names must be present in my concrete subclasses
869d3d3fe0ce #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3834
diff changeset
   247
     if it has extensions."
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   248
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   249
    ^ #(
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   250
        Object notifyTodo:position:className:selector:severity:priority:equalityParameter:checkAction:
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4383
diff changeset
   251
        Method dbgInfo
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4383
diff changeset
   252
        Method dbgVariableTable
4385
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
   253
        Block dbgVariableTable
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
   254
        Block dbgVariables
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
   255
        Context dbgVariableTable
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
   256
        Context dbgVariables
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
   257
        Method dbgVariables
4653
cc24fb996651 Implement `Context >> argAndVarNames` using compiler-recorded debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4387
diff changeset
   258
        Context argAndVarNames
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   259
    )
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   260
!
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   261
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   262
xclassNamesAndAttributes
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   263
    "lists the classes which are to be included in the project.
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   264
     Each entry in the list may be: a single class-name (symbol),
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   265
     or an array-literal consisting of class name and attributes.
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   266
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   267
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   268
    ^ #(
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   269
        "<className> or (<className> attributes...) in load order"
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   270
        Breakpoint
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   271
        CompilationErrorHandler
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   272
        DoNotShowCompilerWarningAgainActionQuery
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   273
        InstrumentedMethod
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   274
        LazyMethod
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   275
        ObjectFileHandle
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   276
        ObjectFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   277
        ParseNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   278
        ParserFlags
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   279
        ProgramNodeBuilder
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   280
        ProgramNodeEnumerator
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   281
        STCCompilerInterface
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   282
        Scanner
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   283
        SourceFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   284
        Structure
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   285
        Switch
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   286
        UndefinedVariable
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   287
        Variable
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   288
        #'stx_libcomp'
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   289
        AssignmentNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   290
        BlockNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   291
        BreakpointNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   292
        MessageNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   293
        Parser
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   294
        PrimaryNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   295
        ProgramNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   296
        StatementNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   297
        TextCollectingCompilationErrorHandler
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   298
        WarningCompilationErrorHandler
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   299
        AbstractSyntaxHighlighter
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   300
        BinaryNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   301
        ByteCodeCompiler
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   302
        CascadeNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   303
        ConstantNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   304
        Explainer
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   305
        ParseErrorNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   306
        PrimitiveNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   307
        ReturnNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   308
        SelfNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   309
        UnaryNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   310
        VariableNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   311
        ByteCodeCompilerWithBreakpointSupport
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   312
        CodeCoverageHighlighter
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   313
        Decompiler
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   314
        ECompletionConstantNode
2642
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   315
        InstrumentationInfo
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   316
        InstrumentationContext
2366
1576aadcc566 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   317
        InstrumentingCompiler
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   318
        SuperNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   319
        SyntaxHighlighter
2561
e1e66b3c7556 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2520
diff changeset
   320
        BreakpointDescription
2580
2597af58b54b automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2561
diff changeset
   321
        (ParseNodeValidator autoload)
2592
7ec3e1375ea4 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2580
diff changeset
   322
        (ParseNodeVisitor autoload)
2698
d91ab2f27d67 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
   323
        (MethodNode autoload)
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   324
    )
2023
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   325
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   326
    "Created: / 06-12-2011 / 21:14:23 / cg"
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   327
! !
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   328
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
!stx_libcomp class methodsFor:'description - project information'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   330
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
companyName
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   332
    "Return a companyname which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   333
4044
4575e6b46a65 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
   334
    ^ 'Claus Gittinger / eXept Software AG'
4575e6b46a65 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
   335
4575e6b46a65 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
   336
    "Modified: / 18-11-2016 / 11:48:29 / cg"
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   337
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   339
description
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   340
    "Return a description string which will appear in nt.def / bc.def"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   341
1859
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   342
    ^ 'Smalltalk/X Bytecode Compiler'
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   343
!
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   344
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   345
legalCopyright
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   346
    "Return copyright string which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   347
4046
ce10b34bf4a2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   348
    ^ 'Copyright Claus Gittinger 1988\nCopyright eXept Software AG 2012'
2045
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   349
4046
ce10b34bf4a2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   350
    "Modified: / 18-11-2016 / 12:17:52 / cg"
3033
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   351
!
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   352
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   353
productName
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   354
    "Return a product name which will appear in <lib>.rc"
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   355
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   356
    ^ 'Smalltalk/X'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   357
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   358
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   359
!stx_libcomp class methodsFor:'description - svn'!
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   360
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   361
svnRepositoryUrlString
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   362
    "Return a SVN repository URL of myself.
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   363
     (Generated since 2011-04-08)
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   364
    "        
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   365
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   366
    ^ '$URL$'
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   367
!
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   368
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   369
svnRevisionNr
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   370
    "Return a SVN revision number of myself.
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   371
     This number is updated after a commit"
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   372
3157
e30f7d5bf34a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3135
diff changeset
   373
    ^ "$SVN-Revision:"'exportiert'"$"
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   374
! !
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   375
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   376
!stx_libcomp class methodsFor:'documentation'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   377
2642
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   378
version
3655
c6a2d886cfe9 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   379
    ^ '$Header$'
2642
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   380
!
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   381
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   382
version_CVS
3655
c6a2d886cfe9 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   383
    ^ '$Header$'
2254
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   384
!
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   385
3841
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3834
diff changeset
   386
version_HG
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3834
diff changeset
   387
    ^ '$Changeset: <not expanded> $'
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3834
diff changeset
   388
!
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3834
diff changeset
   389
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   390
version_SVN
3255
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
   391
    ^ '$ Id $'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   392
! !
3026
a07fa51525e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
   393