(state, {config, filename})
| 109 | }, |
| 110 | |
| 111 | SET_SCRIPT_CONFIG(state, {config, filename}) { |
| 112 | state.error = null; |
| 113 | state.scriptConfig = config; |
| 114 | state.scriptFilename = filename; |
| 115 | state.new = false; |
| 116 | }, |
| 117 | |
| 118 | SET_LOAD_ERROR(state, error) { |
| 119 | state.error = error; |
nothing calls this directly
no outgoing calls
no test coverage detected