refactor: make Value interface (again?)

This commit is contained in:
2025-01-24 23:04:05 +02:00
parent 1670b64aaf
commit e601749866
12 changed files with 138 additions and 140 deletions

View File

@@ -20,7 +20,7 @@ import me.topchetoeu.j2s.runtime.values.primitives.StringValue;
import me.topchetoeu.j2s.runtime.values.primitives.SymbolValue;
import me.topchetoeu.j2s.runtime.values.primitives.numbers.NumberValue;
public class ScopeObject extends Value {
public class ScopeObject implements Value {
public static final class ScopeMember extends FieldMember {
public final Frame frame;
public final int i;