MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / runStringArg

Method runStringArg

src/Base/Interpreter.cpp:694–707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

692}
693
694void InterpreterSingleton::runStringArg(const char* psCom, ...)
695{
696 // va stuff
697 va_list namelessVars;
698 va_start(namelessVars, psCom); // Get the "..." vars
699 int len = vsnprintf(format2, format2_len, psCom, namelessVars);
700 va_end(namelessVars);
701 if (len == -1) {
702 // argument too long
703 assert(false);
704 }
705
706 runString(format2);
707}
708
709
710// Singleton:

Callers 12

processFilesMethod · 0.80
processCmdLineFilesMethod · 0.80
FreeCAD_testFunction · 0.80
makeExtentDimMethod · 0.80
makeExtentDim3dMethod · 0.80
makeDistDimMethod · 0.80
executeMethod · 0.80
unsetupObjectMethod · 0.80
unsetupObjectMethod · 0.80
makeLeaderMethod · 0.80
executeMethod · 0.80
unsetupObjectMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected