Return-Path: X-Original-To: apmail-groovy-notifications-archive@minotaur.apache.org Delivered-To: apmail-groovy-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 59B2A188F9 for ; Fri, 31 Jul 2015 15:57:25 +0000 (UTC) Received: (qmail 80150 invoked by uid 500); 31 Jul 2015 15:57:07 -0000 Delivered-To: apmail-groovy-notifications-archive@groovy.apache.org Received: (qmail 80128 invoked by uid 500); 31 Jul 2015 15:57:07 -0000 Mailing-List: contact notifications-help@groovy.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.incubator.apache.org Delivered-To: mailing list notifications@groovy.incubator.apache.org Received: (qmail 80119 invoked by uid 99); 31 Jul 2015 15:57:07 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Jul 2015 15:57:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 2153E196427 for ; Fri, 31 Jul 2015 15:57:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id 6HGTHwxbVoT9 for ; Fri, 31 Jul 2015 15:57:06 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id D438A4C0EC for ; Fri, 31 Jul 2015 15:57:05 +0000 (UTC) Received: (qmail 79841 invoked by uid 99); 31 Jul 2015 15:57:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Jul 2015 15:57:05 +0000 Date: Fri, 31 Jul 2015 15:57:05 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: notifications@groovy.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (GROOVY-7509) Problem With Stub Generator And Static Import Aliases MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/GROOVY-7509?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14649396#comment-14649396 ] ASF GitHub Bot commented on GROOVY-7509: ---------------------------------------- Github user keeganwitt commented on a diff in the pull request: https://github.com/apache/incubator-groovy/pull/76#discussion_r35987069 --- Diff: src/main/org/codehaus/groovy/tools/javac/JavaStubGenerator.java --- @@ -925,7 +931,8 @@ private void printImports(PrintWriter out, ClassNode classNode) { imports.addAll(Arrays.asList(ResolveVisitor.DEFAULT_IMPORTS)); for (Map.Entry entry : moduleNode.getStaticImports().entrySet()) { - imports.add("static "+entry.getValue().getType().getName()+"."+entry.getKey()); + if (entry.getKey().equals(entry.getValue().getFieldName())) --- End diff -- I'm rethinking my comment now. I thought it'd be better to include the non-aliased name, but that could cause a problem if it was aliased to work around a name conflict. I'm thinking now what you did is the right thing. > Problem With Stub Generator And Static Import Aliases > ----------------------------------------------------- > > Key: GROOVY-7509 > URL: https://issues.apache.org/jira/browse/GROOVY-7509 > Project: Groovy > Issue Type: Bug > Components: Stub generator / Joint compiler > Affects Versions: 2.4.4 > Reporter: Jeff Scott Brown > Labels: regression > Attachments: staticimportalias.zip > > > The attached staticimportalias.zip contains the following: > {code:borderStyle=solid|title=src/main/groovy/demo/helper/SomeHelper.java} > package demo.helper; > public class SomeHelper { > public static final int ANSWER = 42; > } > {code} > {code:borderStyle=solid|title=src/main/groovy/demo/SomeClass.groovy} > package demo > import static demo.helper.SomeHelper.ANSWER as MAGIC_NUMBER > class SomeClass { > static int getMagicNumber() { > MAGIC_NUMBER > } > } > {code} > {code:borderStyle=solid|title=src/main/groovy/demo/SomeJavaClass.java} > package demo; > public class SomeJavaClass { > SomeClass sc; > } > {code} > The code will not compile with Groovy 2.4.4: > {noformat} > $ ./gradlew clean cG > :clean > :compileJava UP-TO-DATE > :compileGroovy > /Users/jeff/staticimportalias/build/tmp/groovy-java-stubs/demo/SomeClass.java:9: error: cannot find symbol > import static demo.helper.SomeHelper.MAGIC_NUMBER; > ^ > symbol: static MAGIC_NUMBER > location: class > 1 error > startup failed: > Compilation failed; see the compiler error output for details. > 1 error > :compileGroovy FAILED > FAILURE: Build failed with an exception. > * What went wrong: > Execution failed for task ':compileGroovy'. > > Compilation failed; see the compiler error output for details. > * Try: > Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. > BUILD FAILED > Total time: 4.467 secs > {noformat} > If I edit the top level build.gradle to use Groovy 2.4.3, the code compiles. -- This message was sent by Atlassian JIRA (v6.3.4#6332)