Yes you are absolutely right.
If we also look in the file template_curly_defs.php we can see that they all return a php code.
If you look after vB_Template and vB_Template_Runtime in file class_core.php it becomes really exciting and I found the solution with the template comment is to send the value true with the render.
PHP Code:
$output .= 'vB_Template::create("'.$template.'")->render(True)';
--------------- Added [DATE]1309619386[/DATE] at [TIME]1309619386[/TIME] ---------------
Or just use fetch_template_raw.
PHP Code:
$output .= '(($GLOBALS[\'vbulletin\']->options[\'addtemplatename\']) ? "/* TEMPLATE: '.$template.' */\n" : "").vB_Template::fetch_template_raw(\''.$template.'\')';