MCPcopy Create free account
hub / github.com/GilesBathgate/RapCAD / isExpression

Method isExpression

src/interactive.cpp:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42bool Interactive::isExpression(const QString& s)
43{
44 TokenReader t(s);
45 while(int i=t.nextToken()) {
46 if(i==';'||i=='}') {
47 return false;
48 }
49 }
50 return true;
51}
52
53void Interactive::execCommand(const QString& str)
54{

Callers

nothing calls this directly

Calls 1

nextTokenMethod · 0.45

Tested by

no test coverage detected