Skip to content

Commit

Permalink
Add issues directory to track issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesZ-Chen committed Jun 26, 2017
1 parent 3414547 commit 2f6a695
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions issues/Issue2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* Currently multiDeclRefactor would failed to refactor below code,
* See issue: https://github.com/CharlesZ-Chen/multiDeclRefactor/issues/2
* output would like this:
* <code>
* class Issue2 {
* String Object c = new C() { a, b;
* Object d; String e,f;
* }
*
* interface C {}
* </code>
*/

class Issue2 {
Object c = new C() { String a, b; };
Object d; String e,f;
}

interface C {}
2 changes: 2 additions & 0 deletions issues/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This directory records some code cases that `multiDeclRefactor` currently cannot handle correctly.
Once the issue represented by the code case in this directory solved, that code case should be moved to `test` directory as a regression test case.

0 comments on commit 2f6a695

Please sign in to comment.