MCPcopy Index your code
hub / github.com/VSCodeVim/Vim / UndefinedVariable

Method UndefinedVariable

src/error.ts:178–180  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

176 return new VimError(ErrorCode.NotEnoughArgs, `Not enough arguments for function: ${func}`);
177 }
178 static UndefinedVariable(name: string): VimError {
179 return new VimError(ErrorCode.UndefinedVariable, `Undefined variable: ${name}`);
180 }
181 static ErrorWritingToFile(): VimError {
182 return new VimError(ErrorCode.ErrorWritingToFile, 'Error writing to file');
183 }

Callers 1

evaluateVariableMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected