Method
BoundScript
(String query, ScriptPigContext scriptContext, String name)
Source from the content-addressed store, hash-verified
| 56 | private ScriptPigContext scriptContext = null; |
| 57 | |
| 58 | BoundScript(String query, ScriptPigContext scriptContext, String name) { |
| 59 | this.queries.add(query); |
| 60 | this.scriptContext = scriptContext; |
| 61 | this.name = name; |
| 62 | } |
| 63 | |
| 64 | BoundScript(List<String> queries, ScriptPigContext scriptContext, |
| 65 | String name) { |
Callers
nothing calls this directly
Tested by
no test coverage detected