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 E4681200B9E for ; Sat, 8 Oct 2016 15:31:50 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E2DC2160ADF; Sat, 8 Oct 2016 13:31:50 +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 35ACA160AD1 for ; Sat, 8 Oct 2016 15:31:50 +0200 (CEST) Received: (qmail 42964 invoked by uid 500); 8 Oct 2016 13:31:49 -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 42955 invoked by uid 99); 8 Oct 2016 13:31:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Oct 2016 13:31:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1E1B0E0209; Sat, 8 Oct 2016 13:31:49 +0000 (UTC) From: mariogarcia To: notifications@groovy.apache.org Reply-To: notifications@groovy.apache.org References: In-Reply-To: Subject: [GitHub] groovy pull request #439: WIP Add groovy-macro docs Content-Type: text/plain Message-Id: <20161008133149.1E1B0E0209@git1-us-west.apache.org> Date: Sat, 8 Oct 2016 13:31:49 +0000 (UTC) archived-at: Sat, 08 Oct 2016 13:31:51 -0000 Github user mariogarcia commented on a diff in the pull request: https://github.com/apache/groovy/pull/439#discussion_r82502595 --- Diff: src/spec/test/metaprogramming/ASTMatcherTestingTest.groovy --- @@ -0,0 +1,123 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package metaprogramming + +import groovy.transform.CompileDynamic +import groovy.transform.CompileStatic +import org.codehaus.groovy.ast.ASTNode +import org.codehaus.groovy.ast.ClassNode +import org.codehaus.groovy.ast.MethodNode +import org.codehaus.groovy.ast.Parameter +import org.codehaus.groovy.ast.expr.BinaryExpression +import org.codehaus.groovy.ast.expr.Expression +import org.codehaus.groovy.ast.stmt.BlockStatement +import org.codehaus.groovy.control.CompilePhase +import org.codehaus.groovy.control.SourceUnit +import org.codehaus.groovy.macro.matcher.ASTMatcher +import org.codehaus.groovy.macro.transform.MacroClass +import org.codehaus.groovy.transform.AbstractASTTransformation +import org.codehaus.groovy.transform.GroovyASTTransformation +import org.codehaus.groovy.transform.GroovyASTTransformationClass + +import java.lang.annotation.ElementType +import java.lang.annotation.Retention +import java.lang.annotation.RetentionPolicy +import java.lang.annotation.Target + +import static org.codehaus.groovy.ast.ClassHelper.Integer_TYPE +import static org.codehaus.groovy.ast.tools.GeneralUtils.* + +/** + * Created by dev on 6/30/16. + */ +class ASTMatcherTestingTest extends GroovyTestCase { + + // tag::testexpression[] + void testTestingSumExpression() { + use(ASTMatcher) { // <1> + TwiceASTTransformation sample = new TwiceASTTransformation() + Expression referenceNode = macro { + a + a // <2> + }.withConstraints { // <3> + placeholder 'a' // <4> + } + + assert sample + .sumExpression + .matches(referenceNode) // <5> + } + } + // end::testexpression[] + + // tag::executiontesting[] + void testASTBehavior() { + assertScript ''' + package metaprogramming + + @Twice + class AAA { + + } + + assert new AAA().giveMeTwo(1) == 2 + ''' + } + // end::executiontesting[] +} + +@Retention(RetentionPolicy.SOURCE) +@Target([ElementType.TYPE]) +@GroovyASTTransformationClass(["metaprogramming.TwiceASTTransformation"]) +@interface Twice { } + +// tag::twiceasttransformation[] +@GroovyASTTransformation(phase = CompilePhase.INSTRUCTION_SELECTION) +class TwiceASTTransformation extends AbstractASTTransformation { + + static final String VAR_X = 'x' + + @Override + void visit(ASTNode[] nodes, SourceUnit source) { + ClassNode classNode = (ClassNode) nodes[1] + MethodNode giveMeTwo = getTemplateClass(sumExpression) + .methods + .find { it.name == 'giveMeTwo' } --- End diff -- :+1: --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---