Constructor is not a variable

This commit is contained in:
Jindra Petřík
2025-05-31 14:53:58 +02:00
parent 365aa35e6c
commit bebf24c2f1
3 changed files with 19 additions and 5 deletions

View File

@@ -23,6 +23,6 @@ package com.jpexs.decompiler.flash.simpleparser;
public class Type extends Variable {
public Type(boolean definition, String name, int position) {
super(definition, name, position);
super(definition, name, position, true);
}
}