-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add issues directory to track issues.
- Loading branch information
1 parent
3414547
commit 2f6a695
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |