Teach code completion to adjust its completion priorities based on the
type that we expect to see at a given point in the grammar, e.g., when initializing a variable, returning a result, or calling a function. We don't prune the candidate set at all, just adjust priorities to favor things that should type-check, using an ultra-simplified type system. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105128 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Parse/Action.h 21 additions, 1 deletioninclude/clang/Parse/Action.h
- include/clang/Sema/CodeCompleteConsumer.h 12 additions, 0 deletionsinclude/clang/Sema/CodeCompleteConsumer.h
- lib/Parse/ParseDecl.cpp 7 additions, 0 deletionslib/Parse/ParseDecl.cpp
- lib/Parse/ParseExpr.cpp 8 additions, 0 deletionslib/Parse/ParseExpr.cpp
- lib/Parse/ParseStmt.cpp 7 additions, 0 deletionslib/Parse/ParseStmt.cpp
- lib/Sema/Sema.h 5 additions, 0 deletionslib/Sema/Sema.h
- lib/Sema/SemaCodeComplete.cpp 238 additions, 30 deletionslib/Sema/SemaCodeComplete.cpp
- test/Index/complete-exprs.c 11 additions, 5 deletionstest/Index/complete-exprs.c
- test/Index/complete-type-factors.m 117 additions, 0 deletionstest/Index/complete-type-factors.m
Loading
Please register or sign in to comment