Переглянути джерело

Test ignored inline constructor expression not cancelling.

Mario 1 рік тому
батько
коміт
257a55e71f
1 змінених файлів з 2 додано та 0 видалено
  1. 2 0
      tests/optimization/src/TestInlineConstructors.hx

+ 2 - 0
tests/optimization/src/TestInlineConstructors.hx

@@ -138,7 +138,9 @@ class TestInlineConstructors extends TestBase {
 	}
 
 	static var condition = false;
+	@:js('while(TestInlineConstructors.condition) {}try {} catch( _g ) {}return 1;')
 	static function testIgnoredValuesNotCancelling() {
+		new ExternInlineClass();
 		var a = new ExternInlineClass();
 		if ( condition ) a else a;
 		while ( condition ) a;