Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for failEarlier (0.11 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) fail(err string) {
    	panic(demangleErr{err: err, off: st.off})
    }
    
    // failEarlier is like fail, but decrements the offset to indicate
    // that the point of failure occurred earlier in the string.
    func (st *state) failEarlier(err string, dec int) {
    	if st.off < dec {
    		panic("internal error")
    	}
    	panic(demangleErr{err: err, off: st.off - dec})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top