openShortcodes map[string]bool // set of shortcodes in open state
// items delivered to client
- items chan item
+ items []item
}
// note: the input position here is normally 0 (start), but
currRightDelimItem: tRightDelimScNoMarkup,
pos: inputPosition,
openShortcodes: make(map[string]bool),
- items: make(chan item),
+ items: make([]item, 0, 5),
}
- go lexer.runShortcodeLexer()
+ lexer.runShortcodeLexer()
return lexer
}
for l.state = lexTextOutsideShortcodes; l.state != nil; {
l.state = l.state(l)
}
-
- close(l.items)
}
// state functions
// sends an item back to the client.
func (l *pagelexer) emit(t itemType) {
- l.items <- item{t, l.start, l.input[l.start:l.pos]}
+ l.items = append(l.items, item{t, l.start, l.input[l.start:l.pos]})
l.start = l.pos
}
}
return r
}, l.input[l.start:l.pos])
- l.items <- item{t, l.start, val}
+ l.items = append(l.items, item{t, l.start, val})
l.start = l.pos
}
// nil terminates the parser
func (l *pagelexer) errorf(format string, args ...interface{}) stateFunc {
- l.items <- item{tError, l.start, fmt.Sprintf(format, args...)}
+ l.items = append(l.items, item{tError, l.start, fmt.Sprintf(format, args...)})
return nil
}
// consumes and returns the next item
func (l *pagelexer) nextItem() item {
- item := <-l.items
+ item := l.items[0]
+ l.items = l.items[1:]
l.lastPos = item.pos
return item
}