-> kesim.org

This commit is contained in:
Özgür Kesim 2021-05-08 11:43:02 +02:00
parent 77cef04cda
commit c9424b173d
3 changed files with 11 additions and 4 deletions

2
go.mod
View File

@ -2,4 +2,4 @@ module kesim.org/tcl
go 1.12 go 1.12
require github.com/oec/goparsify v0.0.7 require kesim.org/goparsify v0.0.0-20210507195226-afd70fad39c8

11
go.sum
View File

@ -1,2 +1,9 @@
github.com/oec/goparsify v0.0.7 h1:nWHAYwgNm4BA1wrQt6w+3cExCM3TuooU8Hyr9HKsXQ4= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/oec/goparsify v0.0.7/go.mod h1:GLTAtNaFRQLtV/UCSMOb444tQy32MA4SlLrDgrP83/w= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prataprc/goparsec v0.0.0-20180806094145-2600a2a4a410/go.mod h1:YbpxZqbf10o5u96/iDpcfDQmbIOTX/iNCH/yBByTfaM=
github.com/stretchr/testify v1.1.4 h1:ToftOQTytwshuOSj6bDSolVUa3GINfJP/fg3OkkOzQQ=
github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
kesim.org/goparsify v0.0.0-20210507195226-afd70fad39c8 h1:TE3S2JaRHz7wOCPaF2eFC+E2ndc/w98v62lmCF1qPNc=
kesim.org/goparsify v0.0.0-20210507195226-afd70fad39c8/go.mod h1:RowiLHo6JhONp199fSrQhV4cgMYswaAGEaHMzrOE21o=

2
tcl.go
View File

@ -4,7 +4,7 @@ import (
"log" "log"
"os" "os"
. "github.com/oec/goparsify" . "kesim.org/goparsify"
) )
// Tcl tokenizer parser, using combinators // Tcl tokenizer parser, using combinators