#include "v8.h"
#include "ast.h"
#include "scopes.h"
ソースコードを見る。
void type::Accept(Visitor* v) { \ if (v->CheckStackOverflow()) return; \ v->Visit##type(this); \ }
ast.cc の 45 行で定義されています。