MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / virtualFunc3

Method virtualFunc3

test/webidl/test.h:43–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41 virtual void virtualFunc2() { printf("*virtualf2*\n"); }
42 static void runVirtualFunc(Child2 *self) { self->virtualFunc(); };
43 virtual void virtualFunc3(int x) { printf("*virtualf3: %d*\n", x); }
44 virtual void virtualFunc4(int x) { printf("*virtualf4: %d*\n", x); }
45 static void runVirtualFunc3(Child2 *self, int x) { self->virtualFunc3(x); }
46

Callers 2

runVirtualFunc3Method · 0.95
post.jsFile · 0.80

Calls 1

printfFunction · 0.85

Tested by

no test coverage detected