switch (array[i]) {
case '{':
{
Character character = separators.pop();
if (character.charValue() != '}') {
throw new XWTException("Syntax error is binding expression " + value + " at " + i);
}
}
level --;
break;
case '[':
{
Character character = separators.pop();
if (character.charValue() != '}') {
throw new XWTException("Syntax error is binding expression " + value + " at " + i);
}
}
level --;
break;
case '(':
{
Character character = separators.pop();
if (character.charValue() != ')') {
throw new XWTException("Syntax error is binding expression " + value + " at " + i);
}
}
level --;
break;
case '}':