stonecutter-versioning / stonecutter

Modern Gradle plugin for multi-version management
http://stonecutter.kikugie.dev/
GNU Lesser General Public License v3.0
36 stars 4 forks source link

End of line after `//` comments is removed by the comment transformer #4

Closed kikugie closed 2 months ago

kikugie commented 2 months ago

Uncommenting

//? if 1.20
//func1();
func2();

would result in

//? if 1.20
func1();func2();

Caused by the comment scanner treating the newline symbol as part of the commend end. Saving this to fix later.