@@ -74,9 +74,9 @@ public TruffleFrame(Instance truffleFrame) {
74
74
List <Instance > locals = getObjectArray (truffleFrame , "locals" ); // NOI18N
75
75
List <String > primitiveLocals = getPrimitiveArray (truffleFrame , "primitiveLocals" ); // NOI18N
76
76
List <Instance > arguments = getObjectArray (truffleFrame , "arguments" ); // NOI18N
77
- Instance slotArr = getValueofFields (truffleFrame , "descriptor" , "slots" ); // NOI18N
77
+ Instance slotArr = getValueOfFields (truffleFrame , "descriptor" , "slots" ); // NOI18N
78
78
List <Instance > slots = getObjectArray (slotArr , "elementData" ); // NOI18N
79
- Instance defaultValue = getValueofFields (truffleFrame , "descriptor" , "defaultValue" ); // NOI18N
79
+ Instance defaultValue = getValueOfFields (truffleFrame , "descriptor" , "defaultValue" ); // NOI18N
80
80
81
81
if (locals != null && arguments != null && slots != null ) {
82
82
Instance [] frameSlots = createFrameSlots (slots , locals .size ());
@@ -132,7 +132,7 @@ public static boolean isTruffleFrame(Instance truffleFrame) {
132
132
return isTruffleFrameSubClass (truffleFrame );
133
133
}
134
134
135
- private static Instance getValueofFields (Instance instance , String ... fields ) {
135
+ private static Instance getValueOfFields (Instance instance , String ... fields ) {
136
136
if (instance != null ) {
137
137
for (String field : fields ) {
138
138
Object val = instance .getValueOfField (field );
0 commit comments