home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / developer / ObjcGrammarTest.README < prev    next >
Encoding:
Text File  |  1992-02-16  |  1.4 KB  |  66 lines

  1. ==================================================
  2.  
  3. ObjcGrammarTest
  4.  
  5. by Gregor N. Purdy
  6.  
  7. 1992 Feb 15 11:34-    Genesis.
  8.  
  9. ==================================================
  10.  
  11.  
  12. This program is a simple demonstration of something
  13. I thought seemed a little strange that is allowed
  14. by NeXT's Objective-C grammar. The grammar info is
  15. in the reference manual "Technical Summaries",
  16. chapter 3.
  17.  
  18. I think there might be some applications where this
  19. form could actually make sense...
  20.  
  21. Now, of course, all we need is the ability to do
  22. things like this:
  23.  
  24.     [myObject putMail:theMail intoMailBox:theBox andBeep];
  25.                                                 ^^^^^^^^
  26.  
  27. Which are currently NOT allowed by the grammar, but could
  28. be added by adding one case on page 3-7 to the end of the
  29. definition of message-selector:
  30.  
  31.     keyword-argument-list selector
  32.  
  33. And a similarly-functioning line to method-selector on
  34. page 3-5:
  35.  
  36.     keyword-selector selector
  37.  
  38.  
  39. Other Ideas:
  40.  
  41. As far as the grammar goes, it would be VERY easy to
  42. add multiple inheritance to Objective-C:
  43.  
  44.  
  45. On page 3-4 inside the definitions of "class-interface"
  46. and "class-implementation", just replace "superclass-name"
  47. with "superclass-specifier" and then add the definitions:
  48.  
  49.     superclass-specifier:
  50.         superclass-name
  51.         { superclass-list }
  52.  
  53.     superclass-list:
  54.         superclass-name
  55.         superclass-list, superclass-name
  56.  
  57. Of course, the hard part is handling it in the runtime
  58. system...
  59.  
  60.  
  61. --Gregor
  62.  
  63.  
  64. ===============
  65. End of file.
  66. ===============