dnscrypt-proxy/vendor/github.com/go-toolsmith/astcopy
Frank Denis 5a091c6da4 Update deps 2021-07-03 10:56:53 +02:00
..
.travis.yml Update deps 2021-07-03 10:56:53 +02:00
LICENSE Update deps 2021-07-03 10:56:53 +02:00
README.md Update deps 2021-07-03 10:56:53 +02:00
astcopy.go Update deps 2021-07-03 10:56:53 +02:00
go.mod Update deps 2021-07-03 10:56:53 +02:00
go.sum Update deps 2021-07-03 10:56:53 +02:00

README.md

Go Report Card GoDoc Build Status

astcopy

Package astcopy implements Go AST reflection-free deep copy operations.

Installation:

go get github.com/go-toolsmith/astcopy

Example

package main

import (
	"fmt"
	"go/ast"
	"go/token"

	"github.com/go-toolsmith/astcopy"
	"github.com/go-toolsmith/astequal"
	"github.com/go-toolsmith/strparse"
)

func main() {
	x := strparse.Expr(`1 + 2`).(*ast.BinaryExpr)
	y := astcopy.BinaryExpr(x)
	fmt.Println(astequal.Expr(x, y)) // => true

	// Now modify x and make sure y is not modified.
	z := astcopy.BinaryExpr(y)
	x.Op = token.SUB
	fmt.Println(astequal.Expr(y, z)) // => true
	fmt.Println(astequal.Expr(x, y)) // => false
}