本文整理汇总了Golang中github.com/rwcarlsen/goledger/lex.Lexer.Ignore方法的典型用法代码示例。如果您正苦于以下问题:Golang Lexer.Ignore方法的具体用法?Golang Lexer.Ignore怎么用?Golang Lexer.Ignore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/rwcarlsen/goledger/lex.Lexer
的用法示例。
在下文中一共展示了Lexer.Ignore方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: lexCommod
func lexCommod(l *lex.Lexer) lex.StateFn {
l.AcceptRun(indent)
l.Ignore()
if l.AcceptRunNot(whitespace+meta+at) > 0 {
l.Emit(tokCommod)
}
return nil
}
示例2: lexStatus
func lexStatus(l *lex.Lexer) lex.StateFn {
l.AcceptRun(indent)
l.Ignore()
if l.Accept(statuss) {
l.Emit(tokStatus)
}
return nil
}
示例3: lexMeta
func lexMeta(l *lex.Lexer) lex.StateFn {
l.AcceptRun(indent)
l.Ignore()
if l.Accept(";") {
l.Emit(tokMeta)
l.AcceptRun(indent)
l.Ignore()
return lexText
}
return lexNewline
}
示例4: lexBlankLine
func lexBlankLine(l *lex.Lexer) lex.StateFn {
l.AcceptRun(indent)
l.Ignore()
if l.AcceptRun(lineend) == 0 {
l.Errorf("unexpected non-blank line at line %v", l.LineNumber())
return lexSkipLine
}
l.Ignore()
return nil
}
示例5: lexAccount
func lexAccount(l *lex.Lexer) lex.StateFn {
for {
nr := l.Next()
nnr := l.Peek()
if isSpace(nr) && isSpace(nnr) || isNewline(nr) {
l.Backup()
l.Emit(tokAccount)
l.AcceptRun(indent)
l.Ignore()
return nil
}
}
}
示例6: lexItems
func lexItems(l *lex.Lexer) lex.StateFn {
if l.AcceptRun(indent) == 0 {
return nil
} else if string(l.Peek()) == meta {
l.Push(lexItems)
return lexMeta
}
l.Ignore()
l.Push(lexItems)
return lexItem
}
示例7: lexAmount
func lexAmount(l *lex.Lexer) lex.StateFn {
l.AcceptRun(indent)
l.Ignore()
if l.Accept("$") {
l.Emit(tokUnit)
}
l.AcceptRun(digit + ",")
l.Accept(".")
l.AcceptRun(digit)
if l.Pos > l.Start {
l.Emit(tokAmount)
}
return lexCommod
}
示例8: lexDate
func lexDate(l *lex.Lexer) lex.StateFn {
fail := false
if l.AcceptRun(digit) == 0 {
fail = true
} else if !l.Accept("/") {
fail = true
} else if l.AcceptRun(digit) == 0 {
fail = true
} else if !l.Accept("/") {
fail = true
} else if l.AcceptRun(digit) == 0 {
fail = true
}
if fail {
l.AcceptRunNot(whitespace + meta)
l.Errorf("invalid date on line %v", l.LineNumber())
l.Ignore()
} else {
l.Emit(tokDate)
}
return nil
}
示例9: lexSkipLine
func lexSkipLine(l *lex.Lexer) lex.StateFn {
l.AcceptRunNot(lineend)
l.AcceptRun(lineend)
l.Ignore()
return nil
}