@@ -37,7 +37,7 @@ private FunctionCall helper_functioncall(
3737 * Gets a function call in `TemplateClass` `t` where the target function name exists in a dependent
3838 * base type and the call is to a function that is not declared in the dependent base type.
3939 */
40- FunctionCall parentMemberFunctionCall ( TemplateClass t ) {
40+ FunctionCall getConfusingFunctionCall ( TemplateClass t ) {
4141 exists (
4242 string name , TemplateClass dependentBaseType , MemberFunction dependentTypeFunction ,
4343 Function target
@@ -70,7 +70,7 @@ private FunctionAccess helper_functionaccess(
7070 * Gets a function access in `TemplateClass` `t` where the target function name exists in a dependent
7171 * base type and the access is to a function declared outside the dependent base type.
7272 */
73- FunctionAccess parentMemberFunctionAccess ( TemplateClass t ) {
73+ FunctionAccess getConfusingFunctionAccess ( TemplateClass t ) {
7474 exists (
7575 string name , TemplateClass dependentBaseType , MemberFunction dependentTypeFunction ,
7676 Function target
@@ -101,7 +101,7 @@ private VariableAccess helper_memberaccess(
101101 * Gets a memmber access in `TemplateClass` `t` where the target member name exists in a dependent
102102 * base type and the access is to a variable declared outside the dependent base type.
103103 */
104- VariableAccess parentMemberAccess ( TemplateClass t ) {
104+ VariableAccess getConfusingMemberVariableAccess ( TemplateClass t ) {
105105 exists (
106106 string name , TemplateClass dependentBaseType , MemberVariable dependentTypeMemberVariable ,
107107 Variable target
0 commit comments