]> granicus.if.org Git - clang/history - include/clang/Parse/Parser.h
add parsing, ast building and pretty printing support for C++ throw expressions.
[clang] / include / clang / Parse / Parser.h
2008-02-26 Chris Lattneradd parsing, ast building and pretty printing support...
2008-02-25 Chris Lattnerconvert tabs to spaces, patch by Mike Stump!
2008-02-11 Steve NaroffSeveral cleanups surrounding Parser::ParseAsmStatement...
2008-02-11 Steve NaroffMove Microsoft __declspec hack from the parser to the...
2008-02-09 Anders CarlssonBehave correctly if a constraint expression is invalid.
2008-02-08 Anders CarlssonPut back the top-level asm code; all tests pass now.
2008-02-08 Anders CarlssonBack out 46855 for now, it causes test failures on...
2008-02-07 Anders CarlssonHandle top-level asm declarations.
2008-02-07 Steve NaroffImplement -fms-extensions. This allows us to fuzzy...
2008-02-05 Steve NaroffFix Parser::ParseObjCTryStmt() to allow for trailing...
2008-01-29 Fariborz JahanianBunch of type defs, etc. for @synchronized.
2008-01-25 Chris LattnerFactor a complex predicate out to a helper method.
2008-01-25 Chris Lattnersplit the second half of ParseObjCMessageExpression...
2008-01-12 Chris LattnerAdd first pieces of support for parsing and representing
2008-01-07 Ted KremenekSubstituted all instances of the string "Objc" for...
2008-01-04 Fariborz JahanianMinor changes as suggested by Chris L.
2008-01-02 Fariborz JahanianNew declarations/defs for Objc2's foreach-statement...
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-29 Steve NaroffYesterday, I simplified how we stream top-level decls.
2007-11-28 Steve NaroffSeveral fixes/simplifications surrounding how we stream...
2007-11-22 Anders CarlssonStore output and input operands as well as clobber...
2007-11-20 Anders CarlssonStore inline asm code in the AST.
2007-11-13 Steve NaroffRewrite method definition bodies. Also renamed a method...
2007-11-11 Steve NaroffReplace 3 method definition functions (ObjcParseMethodD...
2007-11-11 Steve NaroffThis is the last 5% of the solution to teaching Sema...
2007-11-10 Fariborz JahanianRepresent method definitions as separate AST nodes...
2007-11-09 Fariborz JahanianSome code clean up in the form of name changes for...
2007-11-09 Fariborz JahanianAdded class context to method declarations. Provide...
2007-11-08 Fariborz JahanianFirst patch toward rewriting of method definitions...
2007-11-08 Fariborz JahanianRefactored parsing of main function body for reuse...
2007-11-07 Fariborz JahanianAST for objective-c's @throw statement and its pretty...
2007-11-06 Fariborz JahanianPatch for objc2's property ASTs, as well as pretty...
2007-11-03 Steve NaroffImplement rewrite rules for ObjC string constants.
2007-11-01 Fariborz JahanianBunch of class declarations for objective-c's @try...
2007-10-31 Fariborz Jahanian1) More additions for objective-c's qualifier type.
2007-10-31 Fariborz JahanianMore infrastructure to recognize objective-c's type...
2007-10-30 Steve NaroffMore support for rewriting ObjC intefaces. Still some...
2007-10-29 Steve NaroffThis commit contains lot's of small tweaks to how we...
2007-10-26 Steve NaroffStart rewriting ObjC interfaces. As a start, we comment...
2007-10-16 Fariborz JahanianFix location processing of @selector: the range should...
2007-10-16 Chris LattnerFix location processing of @encode: the range should...
2007-10-15 Fariborz JahanianPatch to parse @selector expressions.
2007-10-15 Steve NaroffFix a parser bug with message expressions - need to...
2007-10-11 Fariborz JahanianPatch to create protocol conforming class types.
2007-10-05 Steve NaroffLayering refinements for selectors (suggested by Chris...
2007-10-04 Fariborz Jahanianthis patch accomodates clattner's comments on expressio...
2007-09-28 Steve NaroffYesterday I discovered that 78% of all selectors in...
2007-09-27 Fariborz JahanianPatch for method implementation. It populates ObjcImple...
2007-09-19 Fariborz JahanianPatch to parse objective-c's @try-statement and @throw...
2007-09-18 Fariborz JahanianUses more description name for method implementation...
2007-09-17 Fariborz JahanianPatch to remove ObjcProtoMethodDecl and use ObjcMethodDecl
2007-09-17 Fariborz JahanianPatch to add objective-c's @protocl type declaration.
2007-09-10 Fariborz JahanianEarly patch to collect objective-c methods inserts...
2007-09-06 Steve NaroffThe goal of this commit is to get just enough Sema...
2007-09-05 Steve NaroffStart implementing Actions interface for ObjC classes...
2007-09-05 Fariborz Jahanian1. Fix parsing of method prototype involving c-style...
2007-09-04 Fariborz JahanianPatch to parse objective-c's @compatibility_alias direc...
2007-09-01 Fariborz JahanianPatch to parse @implementation prologue, method definit...
2007-08-31 Chris LattnerFix a bug/missing-feature Ted noticed: the 'unused...
2007-08-31 Fariborz JahanianAuthor: F. Jahanian
2007-08-29 Chris Lattnercleanup context-sensitive objc keyword recognition...
2007-08-28 Steve NaroffTweak declaration...
2007-08-25 Chris Lattnerrefactor enough of the top-level parsing logic to parse and
2007-08-23 Anders CarlssonParse ObjC @protocol expressions.
2007-08-22 Steve NaroffWith this commit, we now successfully parse "Cocoa.h"!
2007-08-22 Steve NaroffAdd support for parsing protocols.
2007-08-22 Steve NaroffAdd support for parsing method prototypes (and other...
2007-08-22 Anders CarlssonParse @encode expressions.
2007-08-21 Steve NaroffImplement parsing for objc instance variables.
2007-08-21 Anders CarlssonImplement parsing and code generation of Objective...
2007-08-20 Steve NaroffAdded Parser::ParseStructDeclaration() as a result...
2007-08-20 Steve NaroffStart parsing ObjC classes/categories!
2007-07-31 Steve NaroffAdd parsing and AST support for GNU "typeof".
2007-07-25 Steve Naroff- Fix commit in Parser.h (patch by Kevin Andre).
2007-07-20 Chris LattnerAt one point there were going to be lexer and parser...
2007-07-15 Chris LattnerMake parser scope cache be a member of the parser inste...
2007-07-11 Reid SpencerStage two of getting CFE top correct.