package ini
skipper is used to skip certain blocks of an ini file. Currently skipper is used to skip nested blocks of ini files. See example below [ foo ] nested = ; this section will be skipped a=b c=d bar=baz ; this will be included
should skip state will be modified only if previous token was new line (NL); and the current token is not WhiteSpace (WS).
	if .shouldSkip &&
		.prevTok.Type() == TokenNL &&
		.Type() != TokenWS {
		.Continue()
		return false
	}
	.prevTok = 
	return .shouldSkip
}

func ( *skipper) () {
	.shouldSkip = true
}

func ( *skipper) () {
empty token is assigned as we return to default state, when should skip is false