12 lines
289 B
Java
Raw Normal View History

2024-02-02 13:06:37 +01:00
package de.dhbwstuttgart.target.tree;
import de.dhbwstuttgart.target.tree.type.TargetType;
import org.objectweb.asm.Opcodes;
public record TargetField(int access, TargetType type, String name) {
public boolean isStatic() {
return (access & Opcodes.ACC_STATIC) != 0;
}
}