public String toCode() throws SocketNullException, SubroutineNotDeclaredException
{
String subroutineName = label.trim();
if (!translator.containFunctionName(subroutineName))
{
throw new SubroutineNotDeclaredException(blockId);
}
return "\t"+subroutineName + "();\n";
}