parse: Remove unused code.

This commit is contained in:
Qi Xiao 2016-02-17 01:13:07 +01:00
parent 587bac7317
commit 8affd31812

View File

@ -122,10 +122,6 @@ func (bn *Chunk) parseSeps(ps *parser) int {
return nseps
}
func startsChunk(r rune) bool {
return isPipelineSep(r) || startsPipeline(r)
}
// Pipeline = Form { '|' Form }
type Pipeline struct {
node
@ -250,9 +246,6 @@ func (fn *Form) tryAssignment(ps *parser) bool {
return true
}
func (fn *Form) parseIf(ps *parser) {
}
func startsForm(r rune) bool {
return isSpace(r) || startsCompound(r)
}