From b51ebdd1a9004e93beaba89af6017c8134b570b7 Mon Sep 17 00:00:00 2001 From: Roberto Raggi <roberto.raggi@nokia.com> Date: Fri, 13 Aug 2010 14:12:02 +0200 Subject: [PATCH] Process the template type parameters. --- src/shared/cplusplus/Bind.cpp | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/shared/cplusplus/Bind.cpp b/src/shared/cplusplus/Bind.cpp index a303cbad3bb..84bc3b37861 100644 --- a/src/shared/cplusplus/Bind.cpp +++ b/src/shared/cplusplus/Bind.cpp @@ -1956,13 +1956,11 @@ bool Bind::visit(TemplateDeclarationAST *ast) bool Bind::visit(TypenameTypeParameterAST *ast) { + unsigned sourceLocation = ast->name ? ast->name->firstToken() : ast->firstToken(); // unsigned classkey_token = ast->classkey_token; // unsigned dot_dot_dot_token = ast->dot_dot_dot_token; const Name *name = this->name(ast->name); ExpressionTy type_id = this->expression(ast->type_id); - unsigned sourceLocation = ast->firstToken(); - if (ast->name) - sourceLocation = ast->name->firstToken(); TypenameArgument *arg = control()->newTypenameArgument(sourceLocation, name); arg->setType(type_id); @@ -1973,18 +1971,29 @@ bool Bind::visit(TypenameTypeParameterAST *ast) bool Bind::visit(TemplateTypeParameterAST *ast) { + unsigned sourceLocation = ast->name ? ast->name->firstToken() : ast->firstToken(); + // unsigned template_token = ast->template_token; // unsigned less_token = ast->less_token; + // ### process the template prototype +#if 0 for (DeclarationListAST *it = ast->template_parameter_list; it; it = it->next) { this->declaration(it->value); } +#endif // unsigned greater_token = ast->greater_token; // unsigned class_token = ast->class_token; // unsigned dot_dot_dot_token = ast->dot_dot_dot_token; - /*const Name *name =*/ this->name(ast->name); - // unsigned equal_token = ast->equal_token; + + const Name *name = this->name(ast->name); ExpressionTy type_id = this->expression(ast->type_id); - // TypenameArgument *symbol = ast->symbol; + + // ### introduce TemplateTypeArgument + TypenameArgument *arg = control()->newTypenameArgument(sourceLocation, name); + arg->setType(type_id); + ast->symbol = arg; + _scope->addMember(arg); + return false; } -- GitLab