jdaugherty opened a new issue, #334:
URL: https://github.com/apache/grails-intellij-plugin/issues/334

   Variable is specifically defined as enum `ProductEnum`, but IDEA considers 
it is `java.lang.CharSequence`
   ```
               <g:each in="${allProducts}">
                 <g:set var="product" value="${it as ProductEnum}"/>
                 <tr>
                   <td class="${products.contains(product) ? 'supportedProduct' 
: 'unsupportedProduct'}">
                     ${product.title}
                   </td>
                   <td>
                     <g:if test="${!products.contains(product)}">
                       <g:set var="wrongDep"
                              value="${(applicationContext.pluginService as 
PluginService).getWrongDependencies(u, product).sort()}"/>
   
                       <g:if test="${wrongDep}">
                         ${wrongDep.join(", ")}
                       </g:if>
                     </g:if>
                   </td>
                 </tr>
               </g:each>
   ```
   Both nightly and EAP are affected:
   ```
   IntelliJ IDEA 2018.2 EAP (Ultimate Edition)
   Build #IU-182.3588, built on July 4, 2018
   IntelliJ IDEA EAP User
   Expiration date: August 3, 2018
   JRE: 1.8.0_152-release-1136-b23 x86_64
   JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
   macOS 10.13.5
   ```
   ```
   IntelliJ IDEA 2018.2 EAP (Ultimate Edition)
   Build #IU-182.3569.1, built on July 3, 2018
   IntelliJ IDEA EAP User
   Expiration date: August 2, 2018
   JRE: 1.8.0_152-release-1136-b23 x86_64
   JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
   macOS 10.13.5
   ```
   
   ---
   
   *Imported from 
[IDEA-195041](https://youtrack.jetbrains.com/issue/IDEA-195041) · Type: Bug · 
Votes: 0*
   *Comments, attachments, dates and reporter are not part of the export — 
follow the link above for the full history.*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to