Revert removed method

This commit is contained in:
Mateusz Gajewski 2017-02-20 13:43:42 +01:00
parent 1262ae92e9
commit ff8c430ff0
No known key found for this signature in database
GPG Key ID: D88924404B34188C

View File

@ -120,6 +120,12 @@ func (d *Dispenser) NextBlock() bool {
return true
}
// IncrNest adds a level of nesting to the dispenser.
func (d *Dispenser) IncrNest() {
d.nesting++
return
}
// Val gets the text of the current token. If there is no token
// loaded, it returns empty string.
func (d *Dispenser) Val() string {