Method.st
changeset 22527 bc45db485b0d
parent 22446 f3eddd51bba2
child 22669 308cc7b248e5
equal deleted inserted replaced
22526:9b0aeeccd6f4 22527:bc45db485b0d
  3449 !
  3449 !
  3450 
  3450 
  3451 resourceType
  3451 resourceType
  3452     "ST-80 compatibility:
  3452     "ST-80 compatibility:
  3453      return the method's first resource specs key.
  3453      return the method's first resource specs key.
  3454      Returns either nil, or a single symbol."
  3454      Returns either nil, or a single symbol.
       
  3455      For example, for an image-spec method, the resourceType
       
  3456      would be #image"
  3455 
  3457 
  3456     |resources|
  3458     |resources|
  3457 
  3459 
  3458     (resources := self resources) notNil ifTrue:[
  3460     (resources := self resources) notNil ifTrue:[
  3459         resources keysAndValuesDo:[:key :val|
  3461         resources keysAndValuesDo:[:key :val|