1. 68d331a by Steve Naroff · 17 years ago
  2. 095ffca Removed a few TODOs on things which are done. by Fariborz Jahanian · 17 years ago
  3. ccb4f31 This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  4. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
  5. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
  6. 563477d by Steve Naroff · 17 years ago
  7. fd225cc Patch for object creation and handling of category declarations. by Fariborz Jahanian · 17 years ago
  8. 0093359 Uses more description name for method implementation kind argument. by Fariborz Jahanian · 17 years ago
  9. 146fbb0 Patch to remove ObjcProtoMethodDecl and use ObjcMethodDecl by Fariborz Jahanian · 17 years ago
  10. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 17 years ago
  11. 708391a by Steve Naroff · 17 years ago
  12. 37387c9 by Steve Naroff · 17 years ago
  13. d16245b Fix a few 80 column violations. by Steve Naroff · 17 years ago
  14. 8c9f13e Fixes/tweaks that prevent "defaults-i.m" from compiling. by Steve Naroff · 17 years ago
  15. 1b273c4 Rename statement actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  16. f69936d Rename expression actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  17. 08d92e4 by Steve Naroff · 17 years ago
  18. f13271f by Steve Naroff · 17 years ago
  19. b04a021 Patch to store ivars into interface class object. by Fariborz Jahanian · 17 years ago
  20. e267ab6 Semantic analysis for objective-c ivars. by Fariborz Jahanian · 17 years ago
  21. 7d6402f Patch for collecting ivars before running action on them. by Fariborz Jahanian · 17 years ago
  22. e55cd00 Patch for building method declaration nodes. Also fixed a segfault in cocoa.m due by Fariborz Jahanian · 17 years ago
  23. bb20469 by Steve Naroff · 17 years ago
  24. 2bd42fa Some small tweaks to the recent Objc support... by Steve Naroff · 17 years ago
  25. e3a2ca7 Early patch to collect objective-c methods inserts them in class object. by Fariborz Jahanian · 17 years ago
  26. 3536b44 by Steve Naroff · 17 years ago
  27. f28b264 by Steve Naroff · 17 years ago
  28. a65ff6c Patch for parsing objective-c style method calls. by Fariborz Jahanian · 17 years ago
  29. 0ccb27d 1. Fix parsing of method prototype involving c-style argument declarations. by Fariborz Jahanian · 17 years ago
  30. 8cd8c66 Fixed a typo pointed out by Anders Calrsson. by Fariborz Jahanian · 17 years ago
  31. e992af0 Patch to parse objective-c's @compatibility_alias directive. by Fariborz Jahanian · 17 years ago
  32. ac00b7f Patch to parse @implementation prologue, method definitions, by Fariborz Jahanian · 17 years ago
  33. 98414c1 Fix a bug/missing-feature Ted noticed: the 'unused' warning should not by Chris Lattner · 17 years ago
  34. d0f97d1 Author: F. Jahanian by Fariborz Jahanian · 17 years ago
  35. d56d6b6 don't turn semantic errors into parse errors. by Chris Lattner · 17 years ago
  36. dbd583c fix some memory leaks when recovering. by Chris Lattner · 17 years ago
  37. 9fddf0a Pass the location of the type. by Chris Lattner · 17 years ago
  38. 6eb2109 make sure to parse postfix expression suffixes after builtin by Chris Lattner · 17 years ago
  39. f9aa3cb add an action callback for __builtin_offsetof by Chris Lattner · 17 years ago
  40. 34870da cleanup context-sensitive objc keyword recognition. Patch by Fariborz Jahanian. by Chris Lattner · 17 years ago
  41. 4e6526b Tweak declaration... by Steve Naroff · 17 years ago
  42. e1223f7 by Steve Naroff · 17 years ago
  43. 7946dd3 C++ allows empty enum list. by Chris Lattner · 17 years ago
  44. c30ebfb extwarn about decls intermixed with code in c89 mode. by Chris Lattner · 17 years ago
  45. 45a566c implement a fixme: __extension__ marker on decls in compound stmts. by Chris Lattner · 17 years ago
  46. 2215325 Fix test/Parser/if-scope-*.c. Patch by Neil Booth! by Chris Lattner · 17 years ago
  47. 31e0572 Break the assumption that any sort of scope (e.g. a loop scope) can by Chris Lattner · 17 years ago
  48. bae3511 read and ignore the body of a namespace. by Chris Lattner · 17 years ago
  49. 8f08cb7 refactor enough of the top-level parsing logic to parse and by Chris Lattner · 17 years ago
  50. f726175 C++ explicitly allows an empty source file. by Chris Lattner · 17 years ago
  51. 527fe23 by Steve Naroff · 17 years ago
  52. 861cf3e by Steve Naroff · 17 years ago
  53. 4988ae3 As suggested by Chris, use MatchRHSPunctuation instead of manually looking for a right parenthesis when parsing @encode() and @protocol(). by Anders Carlsson · 17 years ago
  54. 29b2cb1 Parse ObjC @protocol expressions. by Anders Carlsson · 17 years ago
  55. 4fa7afd by Steve Naroff · 17 years ago
  56. 7ef58fd by Steve Naroff · 17 years ago
  57. 4985ace by Steve Naroff · 17 years ago
  58. 294494e by Steve Naroff · 17 years ago
  59. f9bcf01 Parse @encode expressions. by Anders Carlsson · 17 years ago
  60. 697e15f update todo markers by Chris Lattner · 17 years ago
  61. 3848440 optimize scope push/pop to avoid work in the common case. by Chris Lattner · 17 years ago
  62. 0ecea03 Fix the scoping issue Neil pointed out for the rest of by Chris Lattner · 17 years ago
  63. a36ce71 Fix a nasty C99 scope issue that Neil pointed out (for ifs) by Chris Lattner · 17 years ago
  64. ddbff78 Implement parsing for objc instance variables. by Steve Naroff · 17 years ago
  65. 5dac7f6 Don't remove the grammar construct, just the TODO. by Anders Carlsson · 17 years ago
  66. ed44238 Tweak error recovery for missing semicolon after decl. For this: by Chris Lattner · 17 years ago
  67. c52056a Remove objc-string-literal since it's been implemented now. by Anders Carlsson · 17 years ago
  68. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  69. 28a7ca8 by Steve Naroff · 17 years ago
  70. dac269b by Steve Naroff · 17 years ago
  71. c301815 add support for a top-level __extension__ marker, implementing a todo. by Chris Lattner · 17 years ago
  72. 1ef0876 minor cleanups by Chris Lattner · 17 years ago
  73. d6c7c18 __attribute__ starts a declspec. by Chris Lattner · 17 years ago
  74. d04fdd5 by Steve Naroff · 17 years ago
  75. 9dfa7b4 by Steve Naroff · 17 years ago
  76. 363bcff by Steve Naroff · 17 years ago
  77. d34e915 by Steve Naroff · 17 years ago
  78. 2cb64ec by Steve Naroff · 17 years ago
  79. d1861fd by Steve Naroff · 17 years ago
  80. e80a59c Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago
  81. 012cf46 Fix a comment, patch by Kevin Andre! by Chris Lattner · 17 years ago
  82. ab18c4c implement ast building and trivial semantic analysis of stmt exprs. by Chris Lattner · 17 years ago
  83. c1fcb77 Refactor switch analysis to make it possible to detect duplicate case values by Anders Carlsson · 17 years ago
  84. 95cfb85 Catch goto's with a missing identifier, patch by Neil Booth. by Chris Lattner · 17 years ago
  85. 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
  86. 2ff5426 improve and simplify error recovery for calls, fix a crash when diagnosing by Chris Lattner · 17 years ago
  87. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  88. 4aa88f8 by Steve Naroff · 17 years ago
  89. 6c36be5 Add initial switch stmt support, patch by Anders Carlsson! by Chris Lattner · 17 years ago
  90. 9e344c6 Make parser scope cache be a member of the parser instead of a global, by Chris Lattner · 17 years ago
  91. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago