| Summary: | String concat causes JavaGen & JavaScriptGen errors | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Kathy Carroll <carrollk> |
| Component: | EDT | Assignee: | Project Inbox <edt.compiler-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | jeffdouglas |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
This would be a compiler error, so Paul needs to fix it. this has been resolved verified Closing this defect. |
Multiple markers at this line - IWN.JavaGen.9999.e 0/0 Stack Trace: java.lang.RuntimeException: org.eclipse.edt.mof.egl.NoSuchFunctionError - IWN.JavaGen.9998.e 0/0 Exception occurred: java.lang.RuntimeException: org.eclipse.edt.mof.egl.NoSuchFunctionError Java has the error marker on the package statement. JavaScript has the error marker on the line of code that is causing the error. I think JavaGen should report the error like JavaScript. Here's the EDT code: program appendTest type BasicProgram {} function main() source, pattern String; source = "ab*def"; pattern = "ab\\*def"; fullString string = "Found " + pattern + " in " + source; sysLib.writeStdout(fullString); end end