Example #1
0
void Variable::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #2
0
void Callback::accept(TreeVisitor& v)
{
	v.visit(this);
}
void BinaryExpression::accept(TreeVisitor& v)
{
	v.visit(*this);
}
Example #4
0
void Parameter::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #5
0
void ForStatement::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #6
0
void ScriptImport::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #7
0
void VectorExpression::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #8
0
void Module::accept(TreeVisitor& v)
{
	v.visit(*this);
}
Example #9
0
void Function::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #10
0
void ModuleImport::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #11
0
void CodeDoc::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #12
0
void RangeExpression::accept(TreeVisitor& v)
{
	v.visit(this);
}
Example #13
0
void IfElseStatement::accept(TreeVisitor& v)
{
	v.visit(this);
}