Warning: session_start(): open(/var/lib/php/sessions/sess_enheqf2g17eot61ajaer2k6mk9, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
svoid test_tok_questionDot() {
testTranspilationFunction tok_questionDot(
"ret a?.b;",
"ret a == null ? null : a.b;",
"ret a?.b();",
"ret a == null ? null : a.b();",
"a?.bla();",
"{ if (a != null) a.bla(); }",
"deb()?.printVars();",
"{ var __0 = deb(); if (__0 != null) __0.printVars(); }",
"ret f()?.bla();",
"ret rCallF(f(), __0 -> __0 == null ?: __0.bla());",
/*"ret a?.b?.c;",
"ret __qdot c(__qdot b(a));",*/
);
}