package org.simantics.scl.compiler.internal.codegen.utils; import org.cojen.classfile.TypeDesc; public class LocalVariable { final int index; final TypeDesc type; public LocalVariable(int index, TypeDesc type) { this.index = index; this.type = type; } public TypeDesc getType() { return type; } }