Fixed: #2355 AS1/2 Simplify expressions feature colliding with some other features like hex values

- introducing GraphTarget dialect
This commit is contained in:
Jindra Petřík
2025-05-01 20:14:36 +02:00
parent 598294de9c
commit 33bc40be14
117 changed files with 626 additions and 304 deletions

View File

@@ -95,7 +95,7 @@ public class TranslateStack extends Stack<GraphTargetItem> {
*/
private PopItem getPop() {
if (pop == null) {
pop = new PopItem(null, null); //TODO: linestart?
pop = new PopItem(null, null, null); //TODO: linestart?
}
return pop;