var test_0;

function simple_0() {
/* label 0 */
	test_0 = 1;
}

function simple_1() {
/* label 1 */
	test_0 = 1;
	test_0++;
	test_0 = test_0 + " test string";
	return test_0;
}

function simple_2() {
	var test_1 = 1;
/* label 2 */
	test_0 = test_1++;
	var test_2 = 2;
	test_2++;
	test_0 = test_1 + test_2;
	return test_1;
}

function call_0() {
	test_0 = 0;
/* label 3 */
	var test_1 = simple_1();
}

function call_1(depth) {
	if(depth === 0) {
/* label 4 */
		test_0 = 0;
	} else {
		/* label 5 */
		call_1(--depth);
	}
}

function scope_0(x) {
	var scope0 = 0;
	var scope_2 = function(y) {
/* label 6 */
		return scope0++ + y;
	}
	return x + scope_2(x);
}
