Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create tests for identifiers named through derived classes #36

Open
1 of 7 tasks
LegalizeAdulthood opened this issue Apr 29, 2016 · 0 comments
Open
1 of 7 tasks

Comments

@LegalizeAdulthood
Copy link
Owner

LegalizeAdulthood commented Apr 29, 2016

Example:

struct Foo {
  static int f;
};

struct Bar : public Foo {
};

int &p = Foo::f;
int &q = Bar::f;

Both p and q refer to the same member, but are qualified by different class names. Adjust test cases to handle such differences in naming.

Refactorings possibly affected:

  • Create Multi-Variable Declaration
  • Extract Function
  • Extract Method
  • Extract Parameter
  • Extract Variable
  • Rename
  • Split Multi-Variable Declaration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant