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();" ); }