Project

General

Profile

Bug #2277

Updated by Greg Shah about 10 years ago

Next 4gl code produce uncompilable java code:
<pre>
def var hHandle as handle no-undo.
hHandle = session:first-child.
</pre>
Java code:
<pre>
handle hHandle = new handle();
public void body()
{
hHandle.assign();
}
</pre>

Back