| Summary: | Can't concatenate a boolean variable to a string | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Kathy Carroll <carrollk> |
| Component: | EDT | Assignee: | Matt Heitz <mheitz> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | mheitz |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
I added the missing method, EBoolean.asString(). The generated code will compile now. Verified the fix. |
EGL code: myT boolean = true; writeStdOut( " myT " + myT); generated java: java.lang.System.out.println((" myT ") + EBoolean.asString(ezeProgram, myT)); Java compile error: The method asString(Executable, boolean) is undefined for the type EBoolean