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