| Summary: | Functions on a string are not showing in content assist | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | broy2 | ||||||
| Component: | EDT | Assignee: | Xiao Bin Chen <xiaobinc> | ||||||
| Status: | CLOSED FIXED | QA Contact: | |||||||
| Severity: | normal | ||||||||
| Priority: | P3 | CC: | chenzhh, jqian | ||||||
| Version: | unspecified | ||||||||
| Target Milestone: | --- | ||||||||
| Hardware: | PC | ||||||||
| OS: | Windows XP | ||||||||
| Whiteboard: | |||||||||
| Attachments: |
|
||||||||
not just String, also Date, timestamps, all the primitive types has certain functions defined in them. none of them are showing up either Created attachment 205080 [details]
Patch enable content assist support Date/String/Timestamp type function
Date, timestamps and string type functions are new in edt. Add support for content assist in edt. Dictionary functions are still not available in content assist. resolved. So far content assist support: string date timestamp dictionary array Verified in 20111018 build. |
Created attachment 204116 [details] Functions on a string There are functions on a string that do not show in content assist. myInt = myString.CA should show the list of functions. Screen shot attached. program FunctionsOnString type BasicProgram {} myInt int; myString string = "Carolina, State, Duke"; pattern string = ", "; function main() myInt = myString.indexOf(pattern); myInt = myString. end end