block.addChild(new Comment(" This method could not be decompiled.", CommentType.SingleLine), Roles.COMMENT);
block.addChild(new Comment(" ", CommentType.SingleLine), Roles.COMMENT);
try {
final PlainTextOutput bytecodeOutput = new PlainTextOutput();
final DecompilationOptions bytecodeOptions = new DecompilationOptions();
bytecodeOptions.getSettings().setIncludeLineNumbersInBytecode(false);
Languages.bytecode().decompileMethod(method, bytecodeOutput, bytecodeOptions);
final List<String> bytecodeLines = StringUtilities.split(
bytecodeOutput.toString(),