You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2019/01/16 12:08:01 UTC

[jira] [Closed] (GROOVY-8882) CS: Loop over elements of String has different element type

     [ https://issues.apache.org/jira/browse/GROOVY-8882?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul King closed GROOVY-8882.
-----------------------------

> CS: Loop over elements of String has different element type
> -----------------------------------------------------------
>
>                 Key: GROOVY-8882
>                 URL: https://issues.apache.org/jira/browse/GROOVY-8882
>             Project: Groovy
>          Issue Type: Bug
>          Components: Static compilation
>    Affects Versions: 2.4.15
>            Reporter: Eric Milles
>            Assignee: Paul King
>            Priority: Minor
>              Labels: breaking
>             Fix For: 3.0.0-alpha-4, 2.5.5
>
>
> When the method below is executed as-is, the output is "java.lang.String" x3.  When {{@CompileStatic}} is uncommented, the output is "java.lang.Character" x3.  Is it possible to have dynamic groovy match the static compilation result?
> {code:groovy}
> //@groovy.transform.CompileStatic
> void meth() {
>   for (c in 'abc')
>     println c.class.name
> }
> {code}
> Similarly, {{'abc'*.anything}} applies to Strings of length one instead of Characters.  Although, spread-dot is not supported against strings under static compilation.  Is it possible to add that support?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)