| Summary: | NoSuchFunctionError when generating a case statement for SignKind | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Brian Svihovec <svihovec> |
| Component: | EDT | Assignee: | Project Inbox <edt.mofmodel-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | pharmon |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
I have fixed this by making Enumerations have a supertype of EGLAny. This required changes to Enumeration and EnumerationImpl. This defect was fixed at least 2 months ago, so I am closing. |
Create a program named P3 and add the source below. The following exception is thrown when the part is being generated: Caused by: org.eclipse.edt.mof.egl.NoSuchFunctionError at org.eclipse.edt.mof.egl.impl.BinaryExpressionImpl.resolveOperation(BinaryExpressionImpl.java:61) at org.eclipse.edt.mof.egl.impl.MultiOperandExpressionImpl.getOperation(MultiOperandExpressionImpl.java:43) ... 91 more Source: program P3 type BasicProgram {} function main() sign SignKind; case (sign) when(SignKind.leading) end end end