コード例 #1
0
ファイル: tracer.hpp プロジェクト: the-kenny/flusspferd
 void operator()(std::string const &name, value val) {
   trace_gcptr(name.c_str(), val.get_gcptr());
 }
コード例 #2
0
ファイル: tracer.hpp プロジェクト: the-kenny/flusspferd
 void trace_gctr(std::string const &name, void *gcptr) {
   trace_gcptr(name.c_str(), gcptr);
 }
コード例 #3
0
ファイル: tracer.hpp プロジェクト: the-kenny/flusspferd
 void operator()(char const *name, value val) {
   trace_gcptr(name, val.get_gcptr());
 }
コード例 #4
0
ファイル: tracer.hpp プロジェクト: Flusspferd/flusspferd
 void operator()(char const *name, value val) {
   trace_gcptr(name, get_jsvalp(val));
 }