JavaFieldRef2.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 19 Jan 2013 23:54:47 +0000
branchrefactoring-vmdata
changeset 1986 9e63ab553922
parent 1864 60a8dc26c8c6
child 2069 75d40b7b986f
permissions -rw-r--r--
JavaNativeMethod & their implementation transformed to pass a reveiver. Java still does not boot at this point, some overloaded natives in sun,misc.Unsafe has to be fixed manually.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
     1
"
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
     2
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 877
diff changeset
     3
1155
vranyj1
parents: 1152
diff changeset
     4
 New code and modifications done at SWING Research Group [1]:
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 877
diff changeset
     5
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
     6
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
     7
                            SWING Research Group, Czech Technical University in Prague
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
     8
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
     9
 This software is furnished under a license and may be used
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    10
 only in accordance with the terms of that license and with the
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    11
 inclusion of the above copyright notice.   This software may not
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    12
 be provided or otherwise made available to, or used by, any
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    13
 other person.  No title to or ownership of the software is
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    14
 hereby transferred.
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    15
1155
vranyj1
parents: 1152
diff changeset
    16
 [1] Code written at SWING Research Group contains a signature
vranyj1
parents: 1152
diff changeset
    17
     of one of the above copright owners. For exact set of such code,
vranyj1
parents: 1152
diff changeset
    18
     see the differences between this version and version stx:libjava
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 877
diff changeset
    19
     as of 1.9.2010
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    20
"
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    21
"{ Package: 'stx:libjava' }"
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    22
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    23
JavaClassContentRef2 subclass:#JavaFieldRef2
792
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    24
	instanceVariableNames:'offset type'
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    25
	classVariableNames:'T_LONG T_DOUBLE'
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    26
	poolDictionaries:''
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    27
	category:'Languages-Java-Reader-Support-new'
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    28
!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    29
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    30
!JavaFieldRef2 class methodsFor:'documentation'!
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    31
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    32
copyright
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    33
"
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    34
 COPYRIGHT (c) 1996-2011 by Claus Gittinger
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 877
diff changeset
    35
1155
vranyj1
parents: 1152
diff changeset
    36
 New code and modifications done at SWING Research Group [1]:
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 877
diff changeset
    37
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    38
 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    39
                            SWING Research Group, Czech Technical University in Prague
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    40
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    41
 This software is furnished under a license and may be used
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    42
 only in accordance with the terms of that license and with the
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    43
 inclusion of the above copyright notice.   This software may not
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    44
 be provided or otherwise made available to, or used by, any
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    45
 other person.  No title to or ownership of the software is
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    46
 hereby transferred.
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    47
1155
vranyj1
parents: 1152
diff changeset
    48
 [1] Code written at SWING Research Group contains a signature
vranyj1
parents: 1152
diff changeset
    49
     of one of the above copright owners. For exact set of such code,
vranyj1
parents: 1152
diff changeset
    50
     see the differences between this version and version stx:libjava
1152
040cba55a7d2 Copyright fixes
vranyj1
parents: 877
diff changeset
    51
     as of 1.9.2010
877
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    52
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    53
"
f5a5b93e1c78 Cleanup phase 1
vranyj1
parents: 819
diff changeset
    54
! !
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
    55
792
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    56
!JavaFieldRef2 class methodsFor:'initialization'!
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    57
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    58
initialize
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    59
    T_LONG := 1.
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    60
    T_DOUBLE := 2.
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    61
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    62
    "Created: / 15-05-2011 / 22:31:19 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    63
! !
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    64
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    65
!JavaFieldRef2 methodsFor:'accessing'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    66
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    67
isJavaFieldRef
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    68
^true.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    69
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    70
    "Created: / 11-04-2011 / 21:47:51 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
791
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
    71
!
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
    72
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
    73
offset
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
    74
    ^ offset.
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
    75
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
    76
    "Created: / 15-05-2011 / 22:26:08 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
792
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    77
!
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    78
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    79
type
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    80
    type == T_LONG ifTrue: [ ^ #long. ].
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    81
    type == T_DOUBLE ifTrue: [ ^ #double ].
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    82
    ^ type.
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    83
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
    84
    "Created: / 15-05-2011 / 22:29:05 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    85
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    86
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents: 752
diff changeset
    87
!JavaFieldRef2 methodsFor:'private - resolving'!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents: 752
diff changeset
    88
1234
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    89
findInstOffset
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    90
    "fieldRef must be resolved before calling me"
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    91
    self assert: classCache notNil.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    92
    self assert: valueCache notNil.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    93
    ^ classCache instVarOffsetOf: self name.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    94
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    95
    "Created: / 07-12-2011 / 13:44:59 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    96
!
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
    97
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
    98
findResolvedStaticValue
1243
c6fa3c2b0ce1 resolving finally unified.. fun begins :)
hlopkmar
parents: 1240
diff changeset
    99
c6fa3c2b0ce1 resolving finally unified.. fun begins :)
hlopkmar
parents: 1240
diff changeset
   100
self findResolvedValue.
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
   101
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
   102
    "Created: / 28-04-2011 / 22:05:10 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1205
vranyj1
parents: 1155
diff changeset
   103
    "Modified: / 03-12-2011 / 12:16:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1243
c6fa3c2b0ce1 resolving finally unified.. fun begins :)
hlopkmar
parents: 1240
diff changeset
   104
    "Modified: / 08-12-2011 / 13:37:05 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
   105
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 758
diff changeset
   106
1353
2968f8acb434 one step closer to eager method resolving
hlopkmar
parents: 1243
diff changeset
   107
findResolvedValue: doClassInit
791
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
   108
    valueCache := JavaResolver uniqueInstance 
1353
2968f8acb434 one step closer to eager method resolving
hlopkmar
parents: 1243
diff changeset
   109
                resolveFieldIndentifiedByRef: self.
1239
9e302ab52dc2 one step closer
hlopkmar
parents: 1234
diff changeset
   110
    valueCache isStatic ifTrue: [ classCache := valueCache javaClass ] ifFalse: [
1353
2968f8acb434 one step closer to eager method resolving
hlopkmar
parents: 1243
diff changeset
   111
        classCache := (constantPool at: classRefIndex) resolve: doClassInit.
1239
9e302ab52dc2 one step closer
hlopkmar
parents: 1234
diff changeset
   112
    ].
1731
bba0ebc31d2b - JavaFieldRef2
vranyj1
parents: 1730
diff changeset
   113
    classCache isNil ifTrue: [ self breakPoint: #mh ].
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   114
    self resolveOffset.
794
9635f32d1723 implemented deeper caching in new resolving refs to help keeping C-code lean and clean
hlopkmar
parents: 793
diff changeset
   115
    nameAndTypeCache := (constantPool at: nameAndTypeIndex) resolve.
793
bf00d8585c8e forgot to resolve type in JavaFieldRef2
hlopkmar
parents: 792
diff changeset
   116
    self resolveType.
1731
bba0ebc31d2b - JavaFieldRef2
vranyj1
parents: 1730
diff changeset
   117
    nameAndTypeCache isNil ifTrue: [ self breakPoint: #mh ].
791
46666ff1f9b6 added offset to JavaFieldRef2
hlopkmar
parents: 772
diff changeset
   118
1240
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1239
diff changeset
   119
    "Modified: / 07-12-2011 / 21:52:23 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
1353
2968f8acb434 one step closer to eager method resolving
hlopkmar
parents: 1243
diff changeset
   120
    "Created: / 09-02-2012 / 23:09:18 / mh <hlopik@gmail.com>"
1731
bba0ebc31d2b - JavaFieldRef2
vranyj1
parents: 1730
diff changeset
   121
    "Modified: / 16-10-2012 / 10:46:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
792
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   122
!
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   123
1234
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   124
findStaticOffset
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   125
    "fieldRef must be resolved before calling me"
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   126
    self assert: classCache notNil.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   127
    self assert: valueCache notNil.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   128
    ^ classCache class instVarOffsetOf: self name.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   129
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   130
    "Created: / 07-12-2011 / 13:45:15 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   131
!
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   132
1730
2fad052d64b7 - JavaFieldRef2
vranyj1
parents: 1353
diff changeset
   133
preResolve
2fad052d64b7 - JavaFieldRef2
vranyj1
parents: 1353
diff changeset
   134
    self resolveType
2fad052d64b7 - JavaFieldRef2
vranyj1
parents: 1353
diff changeset
   135
2fad052d64b7 - JavaFieldRef2
vranyj1
parents: 1353
diff changeset
   136
    "Created: / 16-10-2012 / 10:45:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2fad052d64b7 - JavaFieldRef2
vranyj1
parents: 1353
diff changeset
   137
!
2fad052d64b7 - JavaFieldRef2
vranyj1
parents: 1353
diff changeset
   138
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   139
resolveOffset
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   140
    "fieldRef must be resolved before calling me"
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   141
    
1239
9e302ab52dc2 one step closer
hlopkmar
parents: 1234
diff changeset
   142
    self assert: valueCache notNil.
1234
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   143
    self assert: classCache isJavaClass.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   144
    valueCache isStatic ifTrue: [ offset := self findStaticOffset. ] ifFalse: [
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   145
        offset := self findInstOffset.
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   146
    ].
6ddf1122f94b another step closer to the unified resolving
hlopkmar
parents: 1233
diff changeset
   147
    self assert: offset notNil.
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   148
1240
aea022b94a34 temp commit probably breaks sth will fix soon
hlopkmar
parents: 1239
diff changeset
   149
    "Modified: / 07-12-2011 / 21:47:43 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   150
!
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   151
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   152
resolveStaticOffset
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   153
    "fieldRef must be resolved before calling me"
807
b9dde0678965 I should not be committing anything when I'm in hurry.. swapped resolveOffset and resolveStaticOffset
hlopkmar
parents: 806
diff changeset
   154
    
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   155
    | currentClass |
1233
6f0735496901 preparation for unified resolving
hlopkmar
parents: 1205
diff changeset
   156
    currentClass := classCache.
6f0735496901 preparation for unified resolving
hlopkmar
parents: 1205
diff changeset
   157
    self assert: (currentClass class instVarNames includes: self name).
6f0735496901 preparation for unified resolving
hlopkmar
parents: 1205
diff changeset
   158
    offset := currentClass class instVarOffsetOf: self name.
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   159
1233
6f0735496901 preparation for unified resolving
hlopkmar
parents: 1205
diff changeset
   160
    "Modified: / 07-12-2011 / 13:38:03 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
806
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   161
!
7d1f2ba6d2df fixed lookup of fields.. at least I hope so :)
hlopkmar
parents: 794
diff changeset
   162
792
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   163
resolveType
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   164
    type := JavaMethod typeFromSignature:((constantPool at: nameAndTypeIndex) descriptor) in:nil.
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   165
    type == #long ifTrue:[
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   166
        type := T_LONG.
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   167
    ] ifFalse:[
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   168
        type == #double ifTrue:[
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   169
            type := T_DOUBLE
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   170
        ]
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   171
    ].
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   172
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   173
    "Created: / 15-05-2011 / 22:29:02 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents: 752
diff changeset
   174
! !
be8e84381ce0 Merged with /branches/jk
vranyj1
parents: 752
diff changeset
   175
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   176
!JavaFieldRef2 class methodsFor:'documentation'!
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   177
1864
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   178
version_HG
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   179
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   180
    ^ '$Changeset: <not expanded> $'
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   181
!
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   182
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   183
version_SVN
1864
60a8dc26c8c6 Updated from HG
vranyj1
parents: 1818
diff changeset
   184
    ^ '§Id§'
752
ff7bc6428c9c branch jk_new_structure resurrected
vranyj1
parents:
diff changeset
   185
! !
792
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   186
14aa43c34268 fixes + added type to JavaFieldRef2
hlopkmar
parents: 791
diff changeset
   187
JavaFieldRef2 initialize!