File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ FamixEsopeResolver class >> esopeIntrinsicRoutines [
23
23
desstr
24
24
"
25
25
26
- ^ #( ooostp ooossg oooeta actstr desstr inistr supstr ajpnt mypnt dupstr copstr )
26
+ ^ #( ooostp ooossg oooeta actstr desstr inistr supstr ajpnt mypnt dupstr copstr typpnt )
27
27
]
28
28
29
29
{ #category : ' private-helper' }
@@ -374,10 +374,10 @@ FamixEsopeResolver >> resolveExternalDeclaration: external [
374
374
external externalProcedure: procedure.
375
375
]
376
376
ifNone: [
377
- (self class esopeIntrinsicRoutines includes: external name)
377
+ (self class esopeIntrinsicRoutines includes: external name asLowercase )
378
378
ifTrue: [
379
379
self flag: ' #FIXME: At this point, we will create a FamixEsopeIntrinsicRoutine ???' .
380
- external externalProcedure: (self model newIntrinsicProcedure name: external name)
380
+ external externalProcedure: (self model newIntrinsicProcedure name: external name asLowercase )
381
381
]
382
382
ifFalse: [ self flag: ' #FIXME: What to do in this case ? :( ' . ]
383
383
]
You can’t perform that action at this time.
0 commit comments