stx_libcomp.st
author Claus Gittinger <cg@exept.de>
Wed, 28 May 2008 11:42:30 +0200
changeset 2098 a03891b6fc30
parent 2045 0284bd38a5d7
child 2099 6e201a8aa19e
permissions -rw-r--r--
more intelligent genertion of missing method
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
1968
b6b05dcbafff Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1927
diff changeset
    65
additionalDefinitions_bc_dot_mak
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
    66
    ^ '
1968
b6b05dcbafff Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1927
diff changeset
    67
# see stdHeader_bc for LIBCOMP_BASE
1894
e6ba9cf20854 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
    68
# LIBCOMP_BASE   =0x61000000
1889
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
    69
LIB_BASE_LD_ARG=-b:$(LIBCOMP_BASE)
54f097401748 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1884
diff changeset
    70
'
1878
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
    71
!
18de23561a19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
    72
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    73
stcOptimizationOptions
1870
c35e9f596789 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1868
diff changeset
    74
    ^ '+optinline'
1868
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    75
5645b4d4ab53 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
    76
    "Created: / 23-08-2006 / 11:27:31 / cg"
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
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    79
!stx_libcomp class methodsFor:'description - contents'!
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    80
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    81
classNamesAndAttributes
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
    82
    ^ #(
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    83
        "<className> or (<className> attributes...) in load order"
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    84
        AssignmentNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    85
        BinaryNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    86
        BlockNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    87
        ByteCodeCompiler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    88
        CascadeNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    89
        (CodeStream auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    90
        CompilationErrorHandler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    91
        ConstantNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    92
        Decompiler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    93
        Explainer
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    94
        ImmutableArray
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    95
        ImmutableString
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    96
        LazyMethod
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    97
        MessageNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    98
        (MethodNode auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
    99
        (NullScope auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   100
        ObjectFileHandle
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   101
        ObjectFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   102
        (OldParserTest auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   103
        (ParameterNode auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   104
        ParseErrorNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   105
        ParseNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   106
        Parser
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   107
        ParserFlags
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   108
        PrimaryNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   109
        PrimitiveNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   110
        ProgramNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   111
        ProgramNodeBuilder
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   112
        ProgramNodeEnumerator
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   113
        (Reference auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   114
        ReturnNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   115
        STCCompilerInterface
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   116
        Scanner
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   117
        SelfNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   118
        SourceFileLoader
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   119
        StatementNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   120
        Structure
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   121
        SuperNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   122
        Switch
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   123
        (SyntaxError auto)
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   124
        SyntaxHighlighter
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   125
        UnaryNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   126
        UndefinedVariable
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   127
        Variable
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   128
        VariableNode
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   129
        WarningCompilationErrorHandler
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   130
        #'stx_libcomp'
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   131
    )
2023
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   132
!
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   133
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   134
extensionMethodNames
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   135
    ^ #(
2034
7a87ad60275e fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2024
diff changeset
   136
        Object notifyTodo:position:className:selector:severity:priority:equalityParameter:checkAction:
2023
b657520e61db automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   137
    )
1927
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   138
! !
f9573866b4f3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1916
diff changeset
   139
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
!stx_libcomp class methodsFor:'description - project information'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
companyName
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
    "Return a companyname which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
    ^ 'eXept Software AG'
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
description
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    "Return a description string which will appear in nt.def / bc.def"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
1859
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   151
    ^ 'Smalltalk/X Bytecode Compiler'
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   152
!
ba3e091791ed comments
Claus Gittinger <cg@exept.de>
parents: 1858
diff changeset
   153
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
legalCopyright
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
    "Return copyright string which will appear in <lib>.rc"
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
2045
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   157
    ^ 'Copyright Claus Gittinger 1988-2007\nCopyright eXept Software AG 1998-2007'
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   158
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   159
    "Modified: / 08-11-2007 / 16:58:27 / cg"
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
! !
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
!stx_libcomp class methodsFor:'documentation'!
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
version
2045
0284bd38a5d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
   165
    ^ '$Header: /cvs/stx/stx/libcomp/stx_libcomp.st,v 1.22 2007-11-08 16:00:54 cg Exp $'
1827
ce454ad8ff64 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
! !