stx_libcomp.st
author Claus Gittinger <cg@exept.de>
Thu, 28 Mar 2019 16:29:59 +0100
changeset 4402 365edc34920c
parent 4046 ce10b34bf4a2
child 4061 ebdd14acce2d
child 4458 458a1ac0701d
permissions -rw-r--r--
#REFACTORING by cg class: ObjectFileLoader class changed: #createLoadableObjectFor:
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
3135
50948967dd54 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3127
diff changeset
     3
              All Rights Reserved
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     4
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     5
 This software is furnished under a license and may be used
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     6
 only in accordance with the terms of that license and with the
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     8
 be provided or otherwise made available to, or used by, any
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     9
 other person.  No title to or ownership of the software is
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    10
 hereby transferred.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    11
"
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libcomp' }"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
3559
61d213bd4a32 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3528
diff changeset
    14
"{ NameSpace: Smalltalk }"
61d213bd4a32 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3528
diff changeset
    15
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
LibraryDefinition subclass:#stx_libcomp
3255
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    17
	instanceVariableNames:''
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    18
	classVariableNames:''
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    19
	poolDictionaries:''
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    20
	category:'* Projects & Packages *'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    23
!stx_libcomp class methodsFor:'documentation'!
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    24
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    25
copyright
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    26
"
4045
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    27
 COPYRIGHT (c) 1989 by Claus Gittinger / eXept Software AG
3135
50948967dd54 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3127
diff changeset
    28
              All Rights Reserved
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    29
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    30
 This software is furnished under a license and may be used
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    31
 only in accordance with the terms of that license and with the
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    33
 be provided or otherwise made available to, or used by, any
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    34
 other person.  No title to or ownership of the software is
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    35
 hereby transferred.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    36
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    37
!
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    38
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    39
documentation
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    40
"
3498
6c8ade5db168 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    41
    Package documentation:
6c8ade5db168 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    42
3559
61d213bd4a32 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3528
diff changeset
    43
    This library contains the Smalltalk parser and bytecode compiler,
3498
6c8ade5db168 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    44
    and related support classes (AST representation).
3597
89fd7f6409ca class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3559
diff changeset
    45
4033
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    46
    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
    47
    and when source code is loaded (fileIn).
4033
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    48
    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
    49
    when first executed 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    50
    (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
    51
     which is of course much slower).
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    52
     
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    53
    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
    54
    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
    55
    Usually, end user applications are deployed as stc-compiled binary code. 
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    56
    And only patches or dynamically generated code uses bytecode methods.
2856dce456a8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    57
    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
    58
    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
    59
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    60
    [author:]
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    61
        cg
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    62
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    63
    [primary maintainer:]
603d37f30105 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    64
        cg
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    65
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    66
! !
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
!stx_libcomp class methodsFor:'description'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    70
excludedFromPreRequisites
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    71
    ^ #(
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    72
        #'exept:ctypes'
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    73
        #'stx:libbasic2'    "Text - referenced by Parser>>selectorCheck:for:positions: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    74
        #'stx:libtool'    "Tools::ToDoListBrowser - referenced by Parser>>selectorCheck:for:positions: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    75
        #'stx:libview'    "Color - referenced by SyntaxHighlighter>>markParenthesisAt: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    76
        #'stx:libview2'    "ValueHolder - referenced by Parser>>addDoItTemporary: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    77
        #'stx:libwidg'    "Workspace - referenced by Parser>>primary_identifier "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    78
        #'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
    79
        #'stx:goodies/sunit'
3912
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    80
        #'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
    81
        #'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
    82
        #'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
    83
        #'stx:libbasic3'    "AbstractSourceCodeManager - referenced by Explainer class>>methodSpecialInfoFor:"
11eb7594d5df #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3848
diff changeset
    84
        #'stx:libtool2'    "MethodFinderWindow - referenced by Explainer class>>actionToOpenMethodFinderFor:"
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    85
    )
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    86
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    87
    "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
    88
!
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    89
3033
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
    90
mandatoryPreRequisites
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    91
    "list packages which are mandatory as a prerequisite.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    92
     This are packages containing superclasses of my classes and classes which
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    93
     are extended by myself.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    94
     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
    95
     This method is generated automatically,
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    96
     by searching along the inheritance chain of all of my classes."
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
    97
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    ^ #(
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
    99
        #'stx:libbasic'    "Autoload - superclass of ParseNodeValidator"
3033
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   100
    )
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   101
!
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   102
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   103
referencedPreRequisites
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   104
    "list packages which are a prerequisite, because they contain
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   105
     classes which are referenced by my classes.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   106
     We do not need these packages as a prerequisite for compiling or loading,
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   107
     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
   108
     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
   109
     includes explicit checks for the package being present.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   110
     This method is generated automatically,
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   111
     by searching all classes (and their packages) which are referenced by my classes."
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   112
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   113
    ^ #(
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   114
    )
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   115
!
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   116
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   117
subProjects
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   118
    "list packages which are known as subprojects.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   119
     The generated makefile will enter those and make there as well.
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   120
     However: they are not forced to be loaded when a package is loaded;
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   121
     for those, redefine requiredPrerequisites."
3033
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   122
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   123
    ^ #(
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
    )
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   127
!stx_libcomp class methodsFor:'description - compilation'!
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   128
2203
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   129
additionalBaseAddressDefinition_bc_dot_mak
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   130
    "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
   131
     on win32 systems."
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   132
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
   133
    ^ '
1968
b6b05dcbafff Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1927
diff changeset
   134
# see stdHeader_bc for LIBCOMP_BASE
2203
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
   135
LIB_BASE=$(LIBCOMP_BASE)
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
   136
'
1878
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   137
!
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   138
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   139
stcOptimizationOptions
3528
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   140
    ^ '+optinline +optinline2 +inlinenew'
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   141
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   142
    "Created: / 23-08-2006 / 11:27:31 / cg"
3528
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   143
!
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   144
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   145
stcWarningOptions
Claus Gittinger <cg@exept.de>
parents: 3498
diff changeset
   146
    ^ '-warnNonStandard -warnUnused'
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   147
! !
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
   148
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   149
!stx_libcomp class methodsFor:'description - contents'!
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   150
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   151
classNamesAndAttributes
2254
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   152
    "lists the classes which are to be included in the project.
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   153
     Each entry in the list may be: a single class-name (symbol),
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   154
     or an array-literal consisting of class name and attributes.
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   155
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   156
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   157
    ^ #(
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   158
        "<className> or (<className> attributes...) in load order"
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   159
        Breakpoint
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   160
        BreakpointDescription
3435
098a5800d572 Added BreakpointQuery
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3373
diff changeset
   161
        BreakpointQuery
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   162
        CompilationErrorHandler
3779
cda866352727 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3673
diff changeset
   163
        CompilationErrorHandlerQuery
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   164
        DoNotShowCompilerWarningAgainActionQuery
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   165
        DoNotShowCompilerWarningAgainForThisMethodActionQuery
3779
cda866352727 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3673
diff changeset
   166
        DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   167
        InstrumentationContext
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   168
        InstrumentationInfo
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   169
        InstrumentedMethod
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   170
        LazyMethod
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   171
        ObjectFileHandle
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   172
        ObjectFileLoader
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   173
        ParseError
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   174
        ParseNode
3823
016b214c9d35 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
   175
        ParseNodeVisitor
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   176
        ParseWarning
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   177
        ParserFlags
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   178
        ProgramNodeBuilder
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   179
        ProgramNodeEnumerator
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   180
        STCCompilerInterface
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   181
        Scanner
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   182
        SourceFileLoader
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   183
        Structure
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   184
        UndefinedVariable
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   185
        UndefinedVariableNotification
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   186
        Variable
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   187
        #'stx_libcomp'
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   188
        AssignmentNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   189
        BlockNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   190
        BreakpointNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   191
        CompilationError
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   192
        EvalScriptingErrorHandler
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   193
        MessageNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   194
        MethodNode
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   195
        ParseErrorNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   196
        Parser
3823
016b214c9d35 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
   197
        PluggableParseNodeVisitor
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   198
        PrimaryNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   199
        ProgramNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   200
        SelectorNode
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   201
        StatementNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   202
        TextCollectingCompilationErrorHandler
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   203
        UndefinedSuperclassError
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   204
        UndefinedVariableError
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   205
        WarningCompilationErrorHandler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   206
        AbstractSyntaxHighlighter
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   207
        BinaryNode
3373
b6fe9ced025f added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3261
diff changeset
   208
        BreakpointAnalyzer
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   209
        ByteCodeCompiler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   210
        CascadeNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   211
        ConstantNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   212
        Explainer
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   213
        PrimitiveNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   214
        ReturnNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   215
        SelfNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   216
        UnaryNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   217
        VariableNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   218
        ByteCodeCompilerWithBreakpointSupport
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   219
        CodeCoverageHighlighter
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   220
        Decompiler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   221
        ECompletionConstantNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   222
        InstrumentingCompiler
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   223
        SuperNode
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   224
        SyntaxHighlighter
3834
988d5478a278 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3823
diff changeset
   225
        (ParseNodeValidator autoload)
3823
016b214c9d35 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
   226
        (Switch autoload)
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   227
    )
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   228
!
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   229
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   230
extensionMethodNames
3848
869d3d3fe0ce #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3834
diff changeset
   231
    "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
   232
     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
   233
     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
   234
     if it has extensions."
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   235
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   236
    ^ #(
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   237
        Object notifyTodo:position:className:selector:severity:priority:equalityParameter:checkAction:
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   238
    )
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   239
!
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
xclassNamesAndAttributes
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   242
    "lists the classes which are to be included in the project.
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   243
     Each entry in the list may be: a single class-name (symbol),
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   244
     or an array-literal consisting of class name and attributes.
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   245
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   246
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   247
    ^ #(
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   248
        "<className> or (<className> attributes...) in load order"
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   249
        Breakpoint
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   250
        CompilationErrorHandler
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   251
        DoNotShowCompilerWarningAgainActionQuery
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   252
        InstrumentedMethod
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   253
        LazyMethod
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   254
        ObjectFileHandle
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   255
        ObjectFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   256
        ParseNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   257
        ParserFlags
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   258
        ProgramNodeBuilder
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   259
        ProgramNodeEnumerator
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   260
        STCCompilerInterface
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   261
        Scanner
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   262
        SourceFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   263
        Structure
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   264
        Switch
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   265
        UndefinedVariable
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   266
        Variable
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   267
        #'stx_libcomp'
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   268
        AssignmentNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   269
        BlockNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   270
        BreakpointNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   271
        MessageNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   272
        Parser
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   273
        PrimaryNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   274
        ProgramNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   275
        StatementNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   276
        TextCollectingCompilationErrorHandler
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   277
        WarningCompilationErrorHandler
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   278
        AbstractSyntaxHighlighter
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   279
        BinaryNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   280
        ByteCodeCompiler
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   281
        CascadeNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   282
        ConstantNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   283
        Explainer
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   284
        ParseErrorNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   285
        PrimitiveNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   286
        ReturnNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   287
        SelfNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   288
        UnaryNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   289
        VariableNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   290
        ByteCodeCompilerWithBreakpointSupport
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   291
        CodeCoverageHighlighter
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   292
        Decompiler
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   293
        ECompletionConstantNode
2642
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   294
        InstrumentationInfo
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   295
        InstrumentationContext
2366
1576aadcc566 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   296
        InstrumentingCompiler
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   297
        SuperNode
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   298
        SyntaxHighlighter
2561
e1e66b3c7556 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2520
diff changeset
   299
        BreakpointDescription
2580
2597af58b54b automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2561
diff changeset
   300
        (ParseNodeValidator autoload)
2592
7ec3e1375ea4 automatic checkIn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2580
diff changeset
   301
        (ParseNodeVisitor autoload)
2698
d91ab2f27d67 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
   302
        (MethodNode autoload)
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   303
    )
2023
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   304
2776
9f68ef2d5841 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
   305
    "Created: / 06-12-2011 / 21:14:23 / cg"
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   306
! !
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   307
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
!stx_libcomp class methodsFor:'description - project information'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
companyName
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
    "Return a companyname which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   312
4044
4575e6b46a65 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
   313
    ^ 'Claus Gittinger / eXept Software AG'
4575e6b46a65 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
   314
4575e6b46a65 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
   315
    "Modified: / 18-11-2016 / 11:48:29 / cg"
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   317
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
description
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   319
    "Return a description string which will appear in nt.def / bc.def"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
1859
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   321
    ^ 'Smalltalk/X Bytecode Compiler'
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   322
!
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   323
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   324
legalCopyright
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   325
    "Return copyright string which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   326
4046
ce10b34bf4a2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   327
    ^ 'Copyright Claus Gittinger 1988\nCopyright eXept Software AG 2012'
2045
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   328
4046
ce10b34bf4a2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   329
    "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
   330
!
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   331
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   332
productName
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   333
    "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
   334
47393e19b5d2 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3026
diff changeset
   335
    ^ 'Smalltalk/X'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   336
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   337
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   338
!stx_libcomp class methodsFor:'description - svn'!
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   339
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   340
svnRepositoryUrlString
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   341
    "Return a SVN repository URL of myself.
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   342
     (Generated since 2011-04-08)
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   343
    "        
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   344
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   345
    ^ '$URL$'
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   346
!
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   347
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   348
svnRevisionNr
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   349
    "Return a SVN revision number of myself.
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   350
     This number is updated after a commit"
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   351
3157
e30f7d5bf34a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3135
diff changeset
   352
    ^ "$SVN-Revision:"'exportiert'"$"
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   353
! !
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   354
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   355
!stx_libcomp class methodsFor:'documentation'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   356
2642
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   357
version
3655
c6a2d886cfe9 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   358
    ^ '$Header$'
2642
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   359
!
05c14e665d7c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2628
diff changeset
   360
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   361
version_CVS
3655
c6a2d886cfe9 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   362
    ^ '$Header$'
2254
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   363
!
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   364
2497
3bb70ad1325f Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2479
diff changeset
   365
version_SVN
3255
853b08e6c668 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
   366
    ^ '$ Id $'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   367
! !
3026
a07fa51525e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
   368