Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void continueDebug(Set<Integer> breakpoints) {
if (!isRunning || interpreter == null || executor == null) return;
executor.submit(() -> {
try {
boolean hasMore = true;
boolean hasMore;
boolean hitBreakpoint = false;

// Step at least once to move past current instruction/breakpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ private boolean handlePause(int line, AstNode node, Stacks stacks) {
}
case "v", "vars", "symbols" -> {
// Print current symbol table
System.out.println("\n SYMBOL TABLE:");
System.out.println("\n SYMBOL TABLE:");
stacks.printSymbolTable();
}
case "b", "breakpoints" -> // List all breakpoints
logger.debug("\n BREAKPOINTS: " + breakPoints);
logger.debug("\n BREAKPOINTS: {}", breakPoints);
case "q", "quit", "exit" -> {
// Quit debugging session
stop();
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[![Coverage](https://disc.univ-fcomte.fr/cr700-sonarqube/api/project_badges/measure?project=avm-2025-groupe-7&metric=coverage&token=sqb_2b2e9e6502855e5ad0c68935e4ad671cb02372d5)](https://disc.univ-fcomte.fr/cr700-sonarqube/dashboard?id=avm-2025-groupe-7)
[![Duplicated Lines (%)](https://disc.univ-fcomte.fr/cr700-sonarqube/api/project_badges/measure?project=avm-2025-groupe-7&metric=duplicated_lines_density&token=sqb_2b2e9e6502855e5ad0c68935e4ad671cb02372d5)](https://disc.univ-fcomte.fr/cr700-sonarqube/dashboard?id=avm-2025-groupe-7)
[![Lines of Code](https://disc.univ-fcomte.fr/cr700-sonarqube/api/project_badges/measure?project=avm-2025-groupe-7&metric=ncloc&token=sqb_2b2e9e6502855e5ad0c68935e4ad671cb02372d5)](https://disc.univ-fcomte.fr/cr700-sonarqube/dashboard?id=avm-2025-groupe-7)
[![CI/CD Pipeline](https://github.com/R-Gld/Agile_Virtual_Machine/actions/workflows/ci.yml/badge.svg)](https://github.com/R-Gld/Agile_Virtual_Machine/actions/workflows/ci.yml)

# Projet AVM 2025 - Groupe 7

Expand Down
4 changes: 2 additions & 2 deletions qodana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ profile:
name: qodana.starter

#Enable inspections
#include:
# - name: <SomeEnabledInspectionId>
include:
- name: JvmCoverageInspection

#Disable inspections
#exclude:
Expand Down
Loading