Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.5.2.Release
-
Fix Version/s: None
-
Component/s: Content Assist, Inferencing Engine, Search
-
Labels:
-
Number of attachments :
Description
In the following code, toUpperCase and the second value are underlined:
[x:1,y:2,z:3]*.key.toUpperCase() [x:1,y:2,z:3]*.value.value
In the case of :
it's normal that toUpperCase() gets underlined because [x:1,y:2,z:3]*.key returns a list, so .toUpperCase() doesn't exist on List. If the inference engine underlines this :
Then, it is an error, because the toUpperCase method should be tested against each element.