this.builder = builder;
this.state = state;
this.min = min;
this.max = max;
defaultLabel = new Label();
endSwitchLabel = new Label();
caseLabels = new Label[max - min + 1];
for (int i = min; i <= max; i++)
{
caseLabels[i - min] = new Label();
}
state.visitor.visitTableSwitchInsn(min, max, defaultLabel, caseLabels);
}