soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
319 Bytes
utilities
hasNoCCode
"Answer true if the receiver does not use inlined C or C declarations, which are not currently renamed properly by the the inliner."
declarations isEmpty ifFalse: [ ^ false ].
parseTree nodesDo: [ :node |
node isSend ifTrue: [
node selector = #cCode: ifTrue: [ ^ false ].
].
].
^ true