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

Method RefUser

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

Source from the content-addressed store, hash-verified

79struct RefUser {
80 int value;
81 RefUser(int x = 77) : value(x) {}
82 int getValue(RefUser b) { return b.value; }
83 RefUser &getMe() { return *this; }
84 RefUser getCopy() { return RefUser(value*2); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected