public function yy_syntax_error($yymajor, $TOKEN)
 {
     #line 248 "../smarty/lexer/smarty_internal_configfileparser.y"
     $this->internalError = true;
     $this->yymajor = $yymajor;
     $this->compiler->trigger_config_file_error();
 }
 function yy_r6_2()
 {
     $to = strlen($this->data);
     preg_match("/\"\"\"[ \t\r]*[\n#;]/", $this->data, $match, PREG_OFFSET_CAPTURE, $this->counter);
     if (isset($match[0][1])) {
         $to = $match[0][1];
     } else {
         $this->compiler->trigger_template_error("missing or misspelled literal closing tag");
     }
     $this->value = substr($this->data, $this->counter, $to - $this->counter);
     $this->token = Smarty_Internal_Configfileparser::TPC_TRIPPLE_TEXT;
 }