summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/AST.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/cplusplus/AST.cpp')
-rw-r--r--src/shared/cplusplus/AST.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/shared/cplusplus/AST.cpp b/src/shared/cplusplus/AST.cpp
index fe28c1d27d..6aaf352701 100644
--- a/src/shared/cplusplus/AST.cpp
+++ b/src/shared/cplusplus/AST.cpp
@@ -2047,25 +2047,6 @@ unsigned ObjCSelectorArgumentAST::lastToken() const
return name_token + 1;
}
-unsigned ObjCSelectorArgumentListAST::firstToken() const
-{
- if (argument)
- return argument->firstToken();
-
- // ### assert?
- return 0;
-}
-
-unsigned ObjCSelectorArgumentListAST::lastToken() const
-{
- for (const ObjCSelectorArgumentListAST *it = this; it; it = it->next)
- if (!it->next && it->argument)
- return it->argument->lastToken();
-
- // ### assert?
- return 0;
-}
-
unsigned ObjCSelectorWithArgumentsAST::firstToken() const
{
return selector_arguments->firstToken();