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

feat(#313): Remove Outdated Puzzle #882

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions src/test/java/it/JavaSourceCompilationIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,10 @@
* - Transform XMIR back into bytecode
* - Compare the original bytecode with the transformed one.
* In this class we compare bytecode as strings because the order of values in
* the bytecode constant pool might differ, however the bytecode is still the same.
* the bytecode constant pool might differ, however, the bytecode is still the same.
* Moreover, we don't care about line numbers and other supplementary information.
* We ignore it by using `-g:vars` compiler option.
* @since 0.1
* @todo #218:90min Add debug information to bytecode.
* Currently we do not add any debug information to the bytecode.
* We added -g:none flag to the compiler in order to avoid adding
* any debug information.
* See {@link #transformsRandomJavaSourceCodeIntoEoAndBack(java.nio.file.Path)} for more info.
* We have to add debug information to the bytecode.
* When it is done, we have to remove -g:none flag from the test.
*/
final class JavaSourceCompilationIT {

Expand Down