Damir Murat created GROOVY-9577:
-----------------------------------

             Summary: ModuleNode should use LinkedHashMap for imports Map
                 Key: GROOVY-9577
                 URL: https://issues.apache.org/jira/browse/GROOVY-9577
             Project: Groovy
          Issue Type: Bug
          Components: ast builder
    Affects Versions: 3.0.4
            Reporter: Damir Murat


One of last statements in AstBuilder.visitImportDeclaration() are
{code:java}
moduleNode.addImport(alias, classNode, annotationNodeList);

importNode = last(moduleNode.getImports());
{code}
Since ModuleNode.imports is a HashMap, last() method return unpredictable 
result.

I guess this can be fixed by changing the implementation of ModuleNode.imports 
into LinkedHashMap instead of HashMap as is currently.

I stumbled on this while trying to use CodeNarc with the latest Groovy.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to