wg-quicker/vendor/github.com/go-toolsmith/astp
2022-01-07 20:20:48 +01:00
..
.gitignore build: managing tools in go modules 2022-01-07 20:20:48 +01:00
.travis.yml build: managing tools in go modules 2022-01-07 20:20:48 +01:00
decl.go build: managing tools in go modules 2022-01-07 20:20:48 +01:00
expr.go build: managing tools in go modules 2022-01-07 20:20:48 +01:00
go.mod build: managing tools in go modules 2022-01-07 20:20:48 +01:00
go.sum build: managing tools in go modules 2022-01-07 20:20:48 +01:00
LICENSE build: managing tools in go modules 2022-01-07 20:20:48 +01:00
README.md build: managing tools in go modules 2022-01-07 20:20:48 +01:00
stmt.go build: managing tools in go modules 2022-01-07 20:20:48 +01:00

Go Report Card GoDoc Build Status

astp

Package astp provides AST predicates.

Installation:

go get github.com/go-toolsmith/astp

Example

package main

import (
	"fmt"

	"github.com/go-toolsmith/astp"
	"github.com/go-toolsmith/strparse"
)

func main() {
	if astp.IsIdent(strparse.Expr(`x`)) {
		fmt.Println("ident")
	}
	if astp.IsBlockStmt(strparse.Stmt(`{f()}`)) {
		fmt.Println("block stmt")
	}
	if astp.IsGenDecl(strparse.Decl(`var x int = 10`)) {
		fmt.Println("gen decl")
	}
}