index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Parse
/
ParseObjc.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Ac...
Anders Carlsson
2009-12-16
1
-1
/
+1
*
reduce nesting.
Chris Lattner
2009-12-07
1
-3
/
+9
*
Code completion for Objective-C @ keywords that are statements or expressions
Douglas Gregor
2009-12-07
1
-1
/
+10
*
Code completion for Objective-C @ directives
Douglas Gregor
2009-12-07
1
-1
/
+15
*
remove some extraneous syntax: sourceloc implicitly converts to sourcerange.
Chris Lattner
2009-12-06
1
-2
/
+2
*
Lift the ObjCPropertyCallback out of local scope to unbreak VS2005 builds.
John McCall
2009-12-03
1
-55
/
+59
*
Added rudimentary C++0x attribute support.
Alexis Hunt
2009-11-21
1
-4
/
+4
*
Objective-C code completion within properties after "setter = " or
Douglas Gregor
2009-11-19
1
-2
/
+15
*
Improve code completion for Objective-C message sends, so that we
Douglas Gregor
2009-11-19
1
-2
/
+18
*
Rename CodeCompleteObjCProperty to something more specific. No functionality ...
Douglas Gregor
2009-11-18
1
-1
/
+1
*
Code completion after @dynamic
Douglas Gregor
2009-11-18
1
-6
/
+13
*
Code completion for Objective-C @synthesized.
Douglas Gregor
2009-11-18
1
-4
/
+12
*
Improve diagnostics and recovery when parsing @synthesized definitions
Douglas Gregor
2009-11-18
1
-2
/
+10
*
Implement code completion for Objective-C category names in @interface
Douglas Gregor
2009-11-18
1
-0
/
+10
*
Code completion for Objective-C class names after @interface,
Douglas Gregor
2009-11-18
1
-0
/
+19
*
Code completion after @property, providing the names of forward-declared prop...
Douglas Gregor
2009-11-18
1
-0
/
+5
*
Code completion for Objective-C properly lists
Douglas Gregor
2009-11-18
1
-0
/
+6
*
Rename Objective-C message send completion functions to indicate that we're r...
Douglas Gregor
2009-11-17
1
-2
/
+2
*
Pass source locations of identifiers referenced by @class through Action::Act...
Ted Kremenek
2009-11-17
1
-2
/
+6
*
Fixes a typo, reported by Doug.
Fariborz Jahanian
2009-11-17
1
-1
/
+1
*
Handle case of missing '@end' in implementation context
Fariborz Jahanian
2009-11-16
1
-1
/
+13
*
Add FIXIT hint for -Wsemicolon-before-method-body
Ted Kremenek
2009-11-10
1
-2
/
+4
*
Make -Wsemicolon-before-method-body opt-in (and part of -Wextra). Addresses ...
Ted Kremenek
2009-11-10
1
-1
/
+1
*
Add basic code completion support for ObjC messages.
Steve Naroff
2009-11-07
1
-0
/
+7
*
Fix a bogus objective-c warning with -pedantic.
Fariborz Jahanian
2009-11-06
1
-0
/
+2
*
add some fixit hints.
Chris Lattner
2009-11-06
1
-1
/
+2
*
Change our basic strategy for avoiding deprecation warnings when the decl use
John McCall
2009-11-04
1
-2
/
+10
*
Switch ParseStructDeclaration to a callback-based API. This will make
John McCall
2009-11-03
1
-54
/
+80
*
Issue warning if method body starts with a semicolon.
Fariborz Jahanian
2009-10-20
1
-1
/
+4
*
Move clients to use IdentifierInfo::getNameStart() instead of getName()
Daniel Dunbar
2009-10-18
1
-1
/
+1
*
Add code completion support for ObjC property declarations/attributes.
Steve Naroff
2009-10-08
1
-0
/
+4
*
Keep protocol source locations when parsing protocol references.
Argyrios Kyrtzidis
2009-09-29
1
-8
/
+17
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-136
/
+136
*
Fix a clang crash caused by incorrect user code.
Fariborz Jahanian
2009-06-24
1
-1
/
+3
*
Use of DeclContext for objc's ivars. No functionality
Fariborz Jahanian
2009-06-05
1
-0
/
+1
*
Merge the ASTVector and ASTOwningVector templates, since they offered
Douglas Gregor
2009-05-21
1
-1
/
+0
*
Use v.data() instead of &v[0] when SmallVector v might be empty.
Jay Foad
2009-05-21
1
-10
/
+14
*
Make ActOnExprStmt take a FullExprArg.
Anders Carlsson
2009-05-17
1
-1
/
+1
*
Remove support for ObjCMethodDecl attributes that appear between the
Ted Kremenek
2009-05-04
1
-10
/
+3
*
Hook up Sema support for attributes on Objective-C method declarations that
Ted Kremenek
2009-04-30
1
-2
/
+2
*
Add parsing support in an Objective-C method declaration for attributes between
Ted Kremenek
2009-04-30
1
-0
/
+6
*
Fix rdar://6771034: don't warn on use of forward declared protocol in protocol
Chris Lattner
2009-04-12
1
-1
/
+1
*
change the interface to ActOnMethodDeclaration to pass down argument
Chris Lattner
2009-04-11
1
-17
/
+16
*
rename Parser::ParseObjCSelector -> Parser::ParseObjCSelectorPiece,
Chris Lattner
2009-04-11
1
-7
/
+7
*
Fixed a problem using property syntax on a 'super'
Fariborz Jahanian
2009-04-08
1
-3
/
+5
*
Fix <rdar://problem/6764172> [sema] crash on invalid.
Steve Naroff
2009-04-07
1
-1
/
+7
*
Push DeclGroup much farther throughout the compiler. Now the various
Chris Lattner
2009-03-29
1
-10
/
+5
*
Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a
Chris Lattner
2009-03-28
1
-81
/
+78
*
objc: Implemented variables declared in class interface
Fariborz Jahanian
2009-03-18
1
-2
/
+7
*
Use paropery's setter attribute name as
Fariborz Jahanian
2009-03-12
1
-7
/
+7
[next]