DoString loads and runs the given string.
(l *State, s string)
| 582 | |
| 583 | // DoString loads and runs the given string. |
| 584 | func DoString(l *State, s string) error { |
| 585 | if err := LoadString(l, s); err != nil { |
| 586 | return err |
| 587 | } |
| 588 | return l.ProtectedCall(0, MultipleReturns, 0) |
| 589 | } |
nothing calls this directly
no test coverage detected