Skip to content

Package strparse provides convenience wrappers around `go/parser` for simple expr/stmt/decl parsing from string.

License

Notifications You must be signed in to change notification settings

go-toolsmith/strparse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Report Card GoDoc Build Status

strparse

Package strparse provides convenience wrappers around go/parser for simple expression, statement and declaretion parsing from string.

Installation

go get github.com/go-toolsmith/strparse

Example

package main

import (
	"go-toolsmith/astequal"
	"go-toolsmith/strparse"
)

func main() {
	// Comparing AST strings for equallity (note different spacing):
	x := strparse.Expr(`1 + f(v[0].X)`)
	y := strparse.Expr(` 1+f( v[0].X ) `)
	fmt.Println(astequal.Expr(x, y)) // => true
}

About

Package strparse provides convenience wrappers around `go/parser` for simple expr/stmt/decl parsing from string.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages