(state, scriptName)
| 101 | }, |
| 102 | mutations: { |
| 103 | RESET(state, scriptName) { |
| 104 | state.scriptName = scriptName; |
| 105 | state.scriptConfig = null; |
| 106 | state.scriptFilename = null; |
| 107 | state.error = null; |
| 108 | state.new = false; |
| 109 | }, |
| 110 | |
| 111 | SET_SCRIPT_CONFIG(state, {config, filename}) { |
| 112 | state.error = null; |
nothing calls this directly
no outgoing calls
no test coverage detected