(vm *goja.Runtime)
| 106 | } |
| 107 | |
| 108 | func setAllScriptingFunctions(vm *goja.Runtime) { |
| 109 | setMessagingFunctions(vm) |
| 110 | setRoomFunctions(vm) |
| 111 | setActorFunctions(vm) |
| 112 | setSpellFunctions(vm) |
| 113 | setItemFunctions(vm) |
| 114 | setPetFunctions(vm) |
| 115 | setUtilFunctions(vm) |
| 116 | setModuleFunctions(vm) |
| 117 | setPanelFunctions(vm) |
| 118 | } |
| 119 | |
| 120 | type ValidationResult struct { |
| 121 | Valid bool `json:"valid"` |
no test coverage detected