Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B3182200D29 for ; Wed, 11 Oct 2017 16:55:34 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B1A1E1609E4; Wed, 11 Oct 2017 14:55:34 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 02D04160BE3 for ; Wed, 11 Oct 2017 16:55:33 +0200 (CEST) Received: (qmail 51966 invoked by uid 500); 11 Oct 2017 14:55:33 -0000 Mailing-List: contact notifications-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list notifications@groovy.apache.org Received: (qmail 51876 invoked by uid 99); 11 Oct 2017 14:55:33 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Oct 2017 14:55:33 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 766001A60A7 for ; Wed, 11 Oct 2017 14:45:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 3PJQjbfUjUW2 for ; Wed, 11 Oct 2017 14:45:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 27D525FD8E for ; Wed, 11 Oct 2017 14:45:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id A42C9E0E80 for ; Wed, 11 Oct 2017 14:45:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 5FEA025395 for ; Wed, 11 Oct 2017 14:45:00 +0000 (UTC) Date: Wed, 11 Oct 2017 14:45:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: notifications@groovy.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (GROOVY-8352) Add a @Generated annotation to mark generated members MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 11 Oct 2017 14:55:34 -0000 [ https://issues.apache.org/jira/browse/GROOVY-8352?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16200387#comment-16200387 ] ASF GitHub Bot commented on GROOVY-8352: ---------------------------------------- GitHub user aalmiray opened a pull request: https://github.com/apache/groovy/pull/617 GROOVY-8352 See https://issues.apache.org/jira/browse/GROOVY-8352 Retention policy is set to `RUNTIME`in order to allow frameworks and libraries to have access to the new metadata. There's a breaking change in `Verifier`, a protected method now returns `MethodNode` instead of `void`. This change was reviewed with @blackdrag and deemed the better solution among alternatives (such as duplicate method & deprecate old). The JaCoCo team has done their part to prepare their project for this new annotation. You can merge this pull request into a Git repository by running: $ git pull https://github.com/aalmiray/groovy at_generated_annotation Alternatively you can review and apply these changes as the patch at: https://github.com/apache/groovy/pull/617.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #617 ---- commit 2e36707b9446f8b48a85bee26f6ec746d56e8b95 Author: aalmiray Date: 2017-10-11T14:34:27Z GROOVY-8352: add a @Generated annotation ---- > Add a @Generated annotation to mark generated members > ----------------------------------------------------- > > Key: GROOVY-8352 > URL: https://issues.apache.org/jira/browse/GROOVY-8352 > Project: Groovy > Issue Type: New Feature > Components: class generator > Affects Versions: 2.6.0-alpha-1 > Reporter: Andres Almiray > > Rationale: > Tooling support for Groovy may benefit from having additional information on generated members. We already provide some information by marking certain generated methods as synthetic, however tools such as IDEs hide these methods. The goal of `@Generated` is to mark members that are still visible to IDEs and other tools. > Example: > The JaCoCo and Lombok projects have agreed on an annotation named `@lombok.Generated`. This annotation serves as a hint to JaCoCo in order to skip coverage on the annotated elements; this helps JaCoCo in reporting more accurate coverage numbers for source code. > What would be needed: > An annotation in the groovy space named `@Generated` that can be used by JaCoCo (or any other tool). We can't use `@javax.annotation.Generated` because its retention policy is `SOURCE` and we need `CLASS` at the very least. > Modify the Verifier to mark the 5 default GroovyObject methods with this annotation when the inspected class does not provide an implementation for any of these methods. > Additionally, any AST transformation that creates additional methods/types/fields that should be marked can make use of the new annotation. > The work required for JaCoCo has already been started and is tracked by https://github.com/jacoco/jacoco/pull/610 -- This message was sent by Atlassian JIRA (v6.4.14#64029)