Skip to content

Commit

Permalink
cmd/internal/ioutilx: Move ioutilx package to github.com/mewkiz/pkg/i…
Browse files Browse the repository at this point in the history
…outilx.
  • Loading branch information
mewmew committed Apr 17, 2016
1 parent 8e18399 commit de972c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 35 deletions.
27 changes: 0 additions & 27 deletions cmd/internal/ioutilx/ioutilx.go

This file was deleted.

2 changes: 1 addition & 1 deletion cmd/uparse/uparse.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"github.com/davecgh/go-spew/spew"
"github.com/kr/pretty"
"github.com/mewkiz/pkg/errutil"
"github.com/mewkiz/pkg/ioutilx"
"github.com/mewmew/uc/ast"
"github.com/mewmew/uc/cmd/internal/ioutilx"
"github.com/mewmew/uc/gocc/errors"
"github.com/mewmew/uc/gocc/parser"
goccscanner "github.com/mewmew/uc/gocc/scanner"
Expand Down
14 changes: 7 additions & 7 deletions gocc/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
gen:
gocc -a uc.bnf
gen: uc.bnf
gocc -a $<
find . -type f -name '*.go' | xargs goimports -w

debug_lexer:
gocc -debug_lexer -v -a uc.bnf
debug_lexer: uc.bnf
gocc -debug_lexer -v -a $<
find . -type f -name '*.go' | xargs goimports -w

debug_parser:
gocc -debug_parser -v -a uc.bnf
debug_parser: uc.bnf
gocc -debug_parser -v -a $<
find . -type f -name '*.go' | xargs goimports -w

clean:
Expand All @@ -30,4 +30,4 @@ clean:
-rmdir --ignore-fail-on-non-empty util
rm -f terminals.txt LR1_conflicts.txt LR1_sets.txt first.txt lexer_sets.txt

.PHONY: gen debug clean
.PHONY: gen debug_lexer debug_parser clean

0 comments on commit de972c5

Please sign in to comment.