mirror of
https://github.com/robertkrimen/otto
synced 2025-10-12 20:27:30 +08:00

Leverage github actions for tests and linting. This includes fixing a bunch of issues highlighted by golangci including: * Dead code. * Ineffectual assigns. * Goto warnings. * Nil return err. * Reused literal strings. * Test parameter order. Also: * Setup clog.
29 lines
473 B
Go
29 lines
473 B
Go
package otto
|
|
|
|
type _resultKind int
|
|
|
|
const (
|
|
_ _resultKind = iota
|
|
resultReturn
|
|
resultBreak
|
|
resultContinue
|
|
)
|
|
|
|
type _result struct {
|
|
kind _resultKind
|
|
value Value
|
|
target string
|
|
}
|
|
|
|
func newReturnResult(value Value) _result {
|
|
return _result{resultReturn, value, ""}
|
|
}
|
|
|
|
func newContinueResult(target string) _result {
|
|
return _result{resultContinue, emptyValue, target}
|
|
}
|
|
|
|
func newBreakResult(target string) _result {
|
|
return _result{resultBreak, emptyValue, target}
|
|
}
|