Script is either the cache key of the script to be compiled/executed or the actual script source code for inline scripts. For indexed scripts this is the id used in the request. For file scripts this is the file name.
(script string)
| 48 | // scripts this is the id used in the request. For file scripts this is |
| 49 | // the file name. |
| 50 | func (s *Script) Script(script string) *Script { |
| 51 | s.script = script |
| 52 | return s |
| 53 | } |
| 54 | |
| 55 | // Type sets the type of script: "inline" or "id". |
| 56 | func (s *Script) Type(typ string) *Script { |
no outgoing calls