Support increment and '+=' on local delegated properties in JS backend

This commit is contained in:
Mikhael Bogdanov
2016-05-06 16:16:44 +03:00
parent ec632c37ab
commit e207b56009
6 changed files with 61 additions and 8 deletions
@@ -35,6 +35,14 @@ public class DelegatePropertyTest extends SingleFileTranslationTest {
checkFooBoxIsOk();
}
public void testLocalVarInc() throws Exception {
checkFooBoxIsOk();
}
public void testLocalVarPlusAssign() throws Exception {
checkFooBoxIsOk();
}
public void testCapturedLocalVal() throws Exception {
checkFooBoxIsOk();
}