stx_libcomp.st
author Claus Gittinger <cg@exept.de>
Tue, 01 Feb 2011 11:59:09 +0100
changeset 2479 3464c2addc60
parent 2442 6564bc42988d
child 2497 3bb70ad1325f
permissions -rw-r--r--
changed: #legalCopyright
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     1
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
2024
dc3668306bd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2023
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
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libcomp
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
2024
dc3668306bd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2023
diff changeset
    18
	category:'* Projects & Packages *'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    21
!stx_libcomp class methodsFor:'documentation'!
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    22
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    23
copyright
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 (c) 2006 by eXept Software AG
2024
dc3668306bd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2023
diff changeset
    26
	      All Rights Reserved
1858
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    27
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    28
 This software is furnished under a license and may be used
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    29
 only in accordance with the terms of that license and with the
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    31
 be provided or otherwise made available to, or used by, any
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    32
 other person.  No title to or ownership of the software is
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    33
 hereby transferred.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    34
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    35
!
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    36
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    37
documentation
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    38
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    39
    Build-Information for creation of the st/x standard library: stx_libcomp.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    40
    This library contains the smalltalk parser and bytecode compiler.
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    41
"
afd6ac3238b0 comments
Claus Gittinger <cg@exept.de>
parents: 1836
diff changeset
    42
! !
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libcomp class methodsFor:'description'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    46
excludedFromPreRequisites
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    47
    ^ #(
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    48
        #'stx:libbasic2'    "Text - referenced by Parser>>selectorCheck:for:positions: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    49
        #'stx:libtool'    "Tools::ToDoListBrowser - referenced by Parser>>selectorCheck:for:positions: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    50
        #'stx:libview'    "Color - referenced by SyntaxHighlighter>>markParenthesisAt: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    51
        #'stx:libview2'    "ValueHolder - referenced by Parser>>addDoItTemporary: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    52
        #'stx:libwidg'    "Workspace - referenced by Parser>>primary_identifier "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    53
        #'stx:libwidg2'    "TextBox - referenced by WarningCompilationErrorHandler>>error:position:to:from: "
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    54
    )
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    55
!
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    56
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    57
preRequisites
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    ^ #(
2035
be31cbb463ca Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2034
diff changeset
    59
        #'stx:libbasic'    "CharacterArray - superclass of ImmutableString "
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    )
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    63
!stx_libcomp class methodsFor:'description - compilation'!
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    64
2203
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
    65
additionalBaseAddressDefinition_bc_dot_mak
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
    66
    "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
    67
     on win32 systems."
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
    68
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
    69
    ^ '
1968
b6b05dcbafff Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1927
diff changeset
    70
# see stdHeader_bc for LIBCOMP_BASE
2203
1e64b1732c32 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2165
diff changeset
    71
LIB_BASE=$(LIBCOMP_BASE)
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
    72
'
1878
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
    73
!
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
    74
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    75
stcOptimizationOptions
1870
c35e9f596789 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1868
diff changeset
    76
    ^ '+optinline'
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    77
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    78
    "Created: / 23-08-2006 / 11:27:31 / cg"
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    79
! !
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    80
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    81
!stx_libcomp class methodsFor:'description - contents'!
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    82
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    83
classNamesAndAttributes
2254
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
    84
    "lists the classes which are to be included in the project.
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
    85
     Each entry in the list may be: a single class-name (symbol),
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
    86
     or an array-literal consisting of class name and attributes.
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
    87
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
    88
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    89
    ^ #(
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    90
        "<className> or (<className> attributes...) in load order"
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    91
        AssignmentNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    92
        BinaryNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    93
        BlockNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    94
        ByteCodeCompiler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    95
        CascadeNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    96
        (CodeStream auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    97
        CompilationErrorHandler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    98
        ConstantNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    99
        Decompiler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   100
        Explainer
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   101
        LazyMethod
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   102
        MessageNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   103
        (MethodNode auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   104
        (NullScope auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   105
        ObjectFileHandle
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   106
        ObjectFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   107
        (OldParserTest auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   108
        (ParameterNode auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   109
        ParseErrorNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   110
        ParseNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   111
        Parser
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   112
        ParserFlags
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   113
        PrimaryNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   114
        PrimitiveNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   115
        ProgramNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   116
        ProgramNodeBuilder
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   117
        ProgramNodeEnumerator
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   118
        (Reference auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   119
        ReturnNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   120
        STCCompilerInterface
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   121
        Scanner
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   122
        SelfNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   123
        SourceFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   124
        StatementNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   125
        Structure
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   126
        SuperNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   127
        Switch
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   128
        (SyntaxError auto)
2380
fed7e38c572a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2366
diff changeset
   129
        AbstractSyntaxHighlighter
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   130
        SyntaxHighlighter
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   131
        UnaryNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   132
        UndefinedVariable
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   133
        Variable
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   134
        VariableNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   135
        WarningCompilationErrorHandler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   136
        #'stx_libcomp'
2301
069e0faaf0ff automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2282
diff changeset
   137
        DoNotShowCompilerWarningAgainActionQuery
2366
1576aadcc566 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   138
        InstrumentedMethod
1576aadcc566 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2301
diff changeset
   139
        InstrumentingCompiler
2380
fed7e38c572a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2366
diff changeset
   140
        CodeCoverageHighlighter
2442
6564bc42988d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2380
diff changeset
   141
        TextCollectingCompilationErrorHandler
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   142
    )
2023
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   143
!
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   144
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   145
extensionMethodNames
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   146
    ^ #(
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   147
        Object notifyTodo:position:className:selector:severity:priority:equalityParameter:checkAction:
2023
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   148
    )
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   149
! !
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   150
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
!stx_libcomp class methodsFor:'description - project information'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
companyName
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
    "Return a companyname which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    ^ 'eXept Software AG'
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
description
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
    "Return a description string which will appear in nt.def / bc.def"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
1859
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   162
    ^ 'Smalltalk/X Bytecode Compiler'
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   163
!
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   164
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
legalCopyright
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
    "Return copyright string which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
2479
3464c2addc60 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   168
    ^ 'Copyright Claus Gittinger 1988-2011\nCopyright eXept Software AG 1998-2011'
2045
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   169
2479
3464c2addc60 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   170
    "Modified: / 01-02-2011 / 11:55:54 / cg"
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!stx_libcomp class methodsFor:'documentation'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
version
2479
3464c2addc60 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   176
    ^ '$Header: /cvs/stx/stx/libcomp/stx_libcomp.st,v 1.33 2011-02-01 10:59:09 cg Exp $'
2254
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   177
!
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   178
2ed78ef6e3a9 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2203
diff changeset
   179
version_CVS
2479
3464c2addc60 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   180
    ^ '$Header: /cvs/stx/stx/libcomp/stx_libcomp.st,v 1.33 2011-02-01 10:59:09 cg Exp $'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
! !