github.com/balzaczyy/golucene@v0.0.0-20151210033525-d0be9ee89713/queryparser/classic/tokenManagerError.go (about)

     1  package classic
     2  
     3  const (
     4  	LEXICAL_ERROR = iota
     5  	STATIC_LEXER_ERROR
     6  	INVALID_LEXICAL_STATE
     7  	LOOP_DETECTED
     8  )
     9  
    10  type TokenManagerError struct {
    11  }
    12  
    13  func newTokenMgrError(eofSeen bool, lexState, errorLine, errorColumn int,
    14  	errorAfter string, curChar rune, reason int) *TokenManagerError {
    15  	panic("not implemented yet")
    16  }
    17  
    18  func (err *TokenManagerError) Error() string {
    19  	panic("not implemented yet")
    20  }