2010-09-15 15:17:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Smarty Internal Plugin Templateparser
|
|
|
|
*
|
|
|
|
* This is the template parser.
|
|
|
|
* It is generated from the internal.templateparser.y file
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage Compiler
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
class TP_yyToken implements ArrayAccess
|
|
|
|
{
|
|
|
|
public $string = '';
|
|
|
|
public $metadata = array();
|
|
|
|
|
|
|
|
function __construct($s, $m = array())
|
|
|
|
{
|
|
|
|
if ($s instanceof TP_yyToken) {
|
|
|
|
$this->string = $s->string;
|
|
|
|
$this->metadata = $s->metadata;
|
|
|
|
} else {
|
|
|
|
$this->string = (string) $s;
|
|
|
|
if ($m instanceof TP_yyToken) {
|
|
|
|
$this->metadata = $m->metadata;
|
|
|
|
} elseif (is_array($m)) {
|
|
|
|
$this->metadata = $m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function __toString()
|
|
|
|
{
|
|
|
|
return $this->_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
function offsetExists($offset)
|
|
|
|
{
|
|
|
|
return isset($this->metadata[$offset]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function offsetGet($offset)
|
|
|
|
{
|
|
|
|
return $this->metadata[$offset];
|
|
|
|
}
|
|
|
|
|
|
|
|
function offsetSet($offset, $value)
|
|
|
|
{
|
|
|
|
if ($offset === null) {
|
|
|
|
if (isset($value[0])) {
|
|
|
|
$x = ($value instanceof TP_yyToken) ?
|
|
|
|
$value->metadata : $value;
|
|
|
|
$this->metadata = array_merge($this->metadata, $x);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$offset = count($this->metadata);
|
|
|
|
}
|
|
|
|
if ($value === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($value instanceof TP_yyToken) {
|
|
|
|
if ($value->metadata) {
|
|
|
|
$this->metadata[$offset] = $value->metadata;
|
|
|
|
}
|
|
|
|
} elseif ($value) {
|
|
|
|
$this->metadata[$offset] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function offsetUnset($offset)
|
|
|
|
{
|
|
|
|
unset($this->metadata[$offset]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class TP_yyStackEntry
|
|
|
|
{
|
|
|
|
public $stateno; /* The state-number */
|
|
|
|
public $major; /* The major token value. This is the code
|
|
|
|
** number for the token at this stack level */
|
|
|
|
public $minor; /* The user-supplied minor token value. This
|
|
|
|
** is the value of the token */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#line 12 "smarty_internal_templateparser.y"
|
|
|
|
class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php"
|
|
|
|
{
|
|
|
|
#line 14 "smarty_internal_templateparser.y"
|
|
|
|
|
|
|
|
// states whether the parse was successful or not
|
|
|
|
public $successful = true;
|
|
|
|
public $retvalue = 0;
|
|
|
|
private $lex;
|
|
|
|
private $internalError = false;
|
|
|
|
|
|
|
|
function __construct($lex, $compiler) {
|
|
|
|
// set instance object
|
|
|
|
self::instance($this);
|
|
|
|
$this->lex = $lex;
|
|
|
|
$this->compiler = $compiler;
|
|
|
|
$this->smarty = $this->compiler->smarty;
|
|
|
|
$this->template = $this->compiler->template;
|
|
|
|
if ($this->template->security && isset($this->smarty->security_handler)) {
|
|
|
|
$this->sec_obj = $this->smarty->security_policy;
|
|
|
|
} else {
|
|
|
|
$this->sec_obj = $this->smarty;
|
|
|
|
}
|
|
|
|
$this->compiler->has_variable_string = false;
|
|
|
|
$this->compiler->prefix_code = array();
|
|
|
|
$this->prefix_number = 0;
|
|
|
|
$this->block_nesting_level = 0;
|
|
|
|
$this->is_xml = false;
|
|
|
|
$this->asp_tags = (ini_get('asp_tags') != '0');
|
|
|
|
$this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this);
|
|
|
|
}
|
|
|
|
public static function &instance($new_instance = null)
|
|
|
|
{
|
|
|
|
static $instance = null;
|
|
|
|
if (isset($new_instance) && is_object($new_instance))
|
|
|
|
$instance = $new_instance;
|
|
|
|
return $instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function escape_start_tag($tag_text) {
|
|
|
|
$tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag
|
|
|
|
assert($tag !== false && $count === 1);
|
|
|
|
return $tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function escape_end_tag($tag_text) {
|
|
|
|
assert($tag_text === '?>');
|
|
|
|
return '?<?php ?>>';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#line 130 "smarty_internal_templateparser.php"
|
|
|
|
|
|
|
|
const TP_VERT = 1;
|
|
|
|
const TP_COLON = 2;
|
|
|
|
const TP_COMMENT = 3;
|
|
|
|
const TP_PHPSTARTTAG = 4;
|
|
|
|
const TP_PHPENDTAG = 5;
|
|
|
|
const TP_ASPSTARTTAG = 6;
|
|
|
|
const TP_ASPENDTAG = 7;
|
|
|
|
const TP_FAKEPHPSTARTTAG = 8;
|
|
|
|
const TP_XMLTAG = 9;
|
|
|
|
const TP_OTHER = 10;
|
|
|
|
const TP_LINEBREAK = 11;
|
|
|
|
const TP_LITERALSTART = 12;
|
|
|
|
const TP_LITERALEND = 13;
|
|
|
|
const TP_LITERAL = 14;
|
|
|
|
const TP_LDEL = 15;
|
|
|
|
const TP_RDEL = 16;
|
|
|
|
const TP_DOLLAR = 17;
|
|
|
|
const TP_ID = 18;
|
|
|
|
const TP_EQUAL = 19;
|
|
|
|
const TP_PTR = 20;
|
|
|
|
const TP_LDELIF = 21;
|
|
|
|
const TP_SPACE = 22;
|
|
|
|
const TP_LDELFOR = 23;
|
|
|
|
const TP_SEMICOLON = 24;
|
|
|
|
const TP_INCDEC = 25;
|
|
|
|
const TP_TO = 26;
|
|
|
|
const TP_STEP = 27;
|
|
|
|
const TP_LDELFOREACH = 28;
|
|
|
|
const TP_AS = 29;
|
|
|
|
const TP_APTR = 30;
|
|
|
|
const TP_LDELSLASH = 31;
|
|
|
|
const TP_INTEGER = 32;
|
|
|
|
const TP_COMMA = 33;
|
|
|
|
const TP_MATH = 34;
|
|
|
|
const TP_UNIMATH = 35;
|
|
|
|
const TP_ANDSYM = 36;
|
|
|
|
const TP_ISIN = 37;
|
|
|
|
const TP_ISDIVBY = 38;
|
|
|
|
const TP_ISNOTDIVBY = 39;
|
|
|
|
const TP_ISEVEN = 40;
|
|
|
|
const TP_ISNOTEVEN = 41;
|
|
|
|
const TP_ISEVENBY = 42;
|
|
|
|
const TP_ISNOTEVENBY = 43;
|
|
|
|
const TP_ISODD = 44;
|
|
|
|
const TP_ISNOTODD = 45;
|
|
|
|
const TP_ISODDBY = 46;
|
|
|
|
const TP_ISNOTODDBY = 47;
|
|
|
|
const TP_INSTANCEOF = 48;
|
|
|
|
const TP_OPENP = 49;
|
|
|
|
const TP_CLOSEP = 50;
|
|
|
|
const TP_QMARK = 51;
|
|
|
|
const TP_NOT = 52;
|
|
|
|
const TP_TYPECAST = 53;
|
|
|
|
const TP_HEX = 54;
|
|
|
|
const TP_DOT = 55;
|
|
|
|
const TP_SINGLEQUOTESTRING = 56;
|
|
|
|
const TP_DOUBLECOLON = 57;
|
|
|
|
const TP_AT = 58;
|
|
|
|
const TP_HATCH = 59;
|
|
|
|
const TP_OPENB = 60;
|
|
|
|
const TP_CLOSEB = 61;
|
|
|
|
const TP_EQUALS = 62;
|
|
|
|
const TP_NOTEQUALS = 63;
|
|
|
|
const TP_GREATERTHAN = 64;
|
|
|
|
const TP_LESSTHAN = 65;
|
|
|
|
const TP_GREATEREQUAL = 66;
|
|
|
|
const TP_LESSEQUAL = 67;
|
|
|
|
const TP_IDENTITY = 68;
|
|
|
|
const TP_NONEIDENTITY = 69;
|
|
|
|
const TP_MOD = 70;
|
|
|
|
const TP_LAND = 71;
|
|
|
|
const TP_LOR = 72;
|
|
|
|
const TP_LXOR = 73;
|
|
|
|
const TP_QUOTE = 74;
|
|
|
|
const TP_BACKTICK = 75;
|
|
|
|
const TP_DOLLARID = 76;
|
2010-10-13 15:44:03 +00:00
|
|
|
const YY_NO_ACTION = 570;
|
|
|
|
const YY_ACCEPT_ACTION = 569;
|
|
|
|
const YY_ERROR_ACTION = 568;
|
2010-09-15 15:17:28 +00:00
|
|
|
|
2010-10-25 18:53:43 +00:00
|
|
|
const YY_SZ_ACTTAB = 2411;
|
2010-09-15 15:17:28 +00:00
|
|
|
static public $yy_action = array(
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 0 */ 187, 274, 279, 264, 265, 270, 269, 281, 292, 290,
|
|
|
|
/* 10 */ 289, 233, 373, 170, 435, 26, 6, 367, 346, 10,
|
|
|
|
/* 20 */ 188, 188, 215, 245, 214, 211, 32, 118, 344, 126,
|
|
|
|
/* 30 */ 337, 248, 218, 48, 46, 45, 41, 27, 16, 342,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 40 */ 370, 14, 19, 360, 362, 24, 17, 354, 365, 336,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 50 */ 312, 371, 249, 96, 355, 170, 353, 343, 221, 165,
|
|
|
|
/* 60 */ 313, 335, 309, 314, 308, 301, 300, 302, 303, 304,
|
|
|
|
/* 70 */ 316, 317, 330, 187, 328, 168, 220, 8, 219, 26,
|
|
|
|
/* 80 */ 217, 58, 346, 18, 109, 201, 39, 36, 319, 296,
|
|
|
|
/* 90 */ 329, 480, 227, 7, 188, 262, 285, 480, 331, 174,
|
|
|
|
/* 100 */ 569, 88, 275, 279, 264, 340, 48, 46, 45, 41,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 110 */ 27, 16, 342, 370, 14, 19, 360, 362, 24, 17,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 120 */ 2, 21, 26, 480, 10, 346, 30, 438, 26, 283,
|
|
|
|
/* 130 */ 480, 346, 118, 438, 335, 309, 314, 308, 301, 300,
|
|
|
|
/* 140 */ 302, 303, 304, 316, 317, 330, 187, 328, 28, 138,
|
|
|
|
/* 150 */ 10, 180, 128, 217, 76, 11, 276, 109, 118, 44,
|
|
|
|
/* 160 */ 35, 347, 250, 329, 322, 221, 44, 188, 262, 285,
|
|
|
|
/* 170 */ 188, 331, 34, 245, 108, 137, 174, 241, 187, 48,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 180 */ 46, 45, 41, 27, 16, 342, 370, 14, 19, 360,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 190 */ 362, 24, 17, 352, 150, 26, 207, 196, 346, 188,
|
|
|
|
/* 200 */ 26, 202, 186, 346, 30, 5, 133, 335, 309, 314,
|
|
|
|
/* 210 */ 308, 301, 300, 302, 303, 304, 316, 317, 330, 187,
|
|
|
|
/* 220 */ 328, 38, 107, 163, 219, 328, 217, 66, 166, 236,
|
|
|
|
/* 230 */ 109, 217, 164, 436, 171, 109, 329, 159, 225, 436,
|
|
|
|
/* 240 */ 10, 262, 285, 110, 331, 4, 262, 285, 118, 331,
|
|
|
|
/* 250 */ 250, 203, 48, 46, 45, 41, 27, 16, 342, 370,
|
|
|
|
/* 260 */ 14, 19, 360, 362, 24, 17, 10, 26, 341, 299,
|
|
|
|
/* 270 */ 346, 112, 213, 245, 118, 188, 282, 235, 169, 313,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 280 */ 335, 309, 314, 308, 301, 300, 302, 303, 304, 316,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 290 */ 317, 330, 187, 328, 212, 187, 198, 103, 125, 100,
|
|
|
|
/* 300 */ 50, 44, 129, 104, 95, 26, 359, 173, 346, 329,
|
|
|
|
/* 310 */ 435, 155, 331, 92, 262, 285, 188, 331, 318, 172,
|
|
|
|
/* 320 */ 222, 230, 229, 369, 250, 48, 46, 45, 41, 27,
|
|
|
|
/* 330 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 259,
|
|
|
|
/* 340 */ 179, 323, 334, 26, 115, 13, 346, 188, 188, 33,
|
|
|
|
/* 350 */ 44, 106, 287, 335, 309, 314, 308, 301, 300, 302,
|
|
|
|
/* 360 */ 303, 304, 316, 317, 330, 187, 297, 157, 328, 205,
|
|
|
|
/* 370 */ 168, 195, 219, 26, 217, 54, 193, 124, 109, 133,
|
|
|
|
/* 380 */ 250, 39, 36, 200, 329, 10, 161, 313, 162, 262,
|
|
|
|
/* 390 */ 285, 363, 331, 118, 174, 113, 114, 188, 48, 46,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 400 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 410 */ 24, 17, 187, 105, 179, 361, 320, 325, 321, 13,
|
|
|
|
/* 420 */ 40, 188, 188, 188, 188, 149, 335, 309, 314, 308,
|
|
|
|
/* 430 */ 301, 300, 302, 303, 304, 316, 317, 330, 250, 187,
|
|
|
|
/* 440 */ 188, 152, 223, 345, 3, 48, 46, 45, 41, 27,
|
|
|
|
/* 450 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 187,
|
|
|
|
/* 460 */ 188, 324, 267, 310, 306, 333, 351, 188, 188, 188,
|
|
|
|
/* 470 */ 188, 188, 188, 335, 309, 314, 308, 301, 300, 302,
|
|
|
|
/* 480 */ 303, 304, 316, 317, 330, 356, 26, 26, 284, 216,
|
|
|
|
/* 490 */ 189, 188, 48, 46, 45, 41, 27, 16, 342, 370,
|
|
|
|
/* 500 */ 14, 19, 360, 362, 24, 17, 142, 253, 257, 307,
|
|
|
|
/* 510 */ 315, 349, 44, 188, 367, 188, 188, 293, 123, 250,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 520 */ 335, 309, 314, 308, 301, 300, 302, 303, 304, 316,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 530 */ 317, 330, 187, 328, 278, 86, 263, 219, 328, 217,
|
|
|
|
/* 540 */ 66, 123, 239, 109, 217, 144, 133, 266, 109, 329,
|
|
|
|
/* 550 */ 102, 364, 207, 26, 262, 285, 206, 331, 250, 262,
|
|
|
|
/* 560 */ 285, 326, 331, 288, 197, 48, 46, 45, 41, 27,
|
|
|
|
/* 570 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 134,
|
|
|
|
/* 580 */ 140, 167, 345, 110, 277, 160, 254, 245, 11, 220,
|
|
|
|
/* 590 */ 2, 20, 288, 335, 309, 314, 308, 301, 300, 302,
|
|
|
|
/* 600 */ 303, 304, 316, 317, 330, 187, 328, 232, 273, 255,
|
|
|
|
/* 610 */ 219, 328, 217, 66, 244, 261, 109, 217, 130, 345,
|
|
|
|
/* 620 */ 237, 109, 329, 135, 272, 31, 22, 262, 285, 87,
|
|
|
|
/* 630 */ 331, 288, 262, 285, 127, 331, 288, 298, 48, 46,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 640 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 650 */ 24, 17, 187, 9, 258, 252, 348, 204, 305, 35,
|
|
|
|
/* 660 */ 282, 91, 187, 116, 133, 111, 335, 309, 314, 308,
|
|
|
|
/* 670 */ 301, 300, 302, 303, 304, 316, 317, 330, 288, 188,
|
|
|
|
/* 680 */ 42, 345, 40, 158, 23, 48, 46, 45, 41, 27,
|
|
|
|
/* 690 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 242,
|
|
|
|
/* 700 */ 148, 294, 97, 327, 350, 291, 259, 315, 228, 315,
|
|
|
|
/* 710 */ 172, 315, 251, 335, 309, 314, 308, 301, 300, 302,
|
|
|
|
/* 720 */ 303, 304, 316, 317, 330, 187, 328, 315, 146, 315,
|
|
|
|
/* 730 */ 103, 93, 101, 53, 315, 129, 104, 26, 286, 315,
|
|
|
|
/* 740 */ 346, 250, 329, 99, 98, 315, 188, 262, 285, 315,
|
|
|
|
/* 750 */ 331, 315, 199, 315, 315, 174, 288, 288, 48, 46,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 760 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 770 */ 24, 17, 154, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 780 */ 315, 315, 315, 315, 315, 250, 335, 309, 314, 308,
|
|
|
|
/* 790 */ 301, 300, 302, 303, 304, 316, 317, 330, 187, 328,
|
|
|
|
/* 800 */ 315, 315, 315, 219, 328, 217, 66, 315, 280, 109,
|
|
|
|
/* 810 */ 217, 139, 315, 247, 109, 329, 132, 315, 315, 315,
|
|
|
|
/* 820 */ 262, 285, 315, 331, 250, 262, 285, 315, 331, 288,
|
|
|
|
/* 830 */ 210, 48, 46, 45, 41, 27, 16, 342, 370, 14,
|
|
|
|
/* 840 */ 19, 360, 362, 24, 17, 187, 15, 315, 315, 315,
|
|
|
|
/* 850 */ 315, 315, 315, 315, 315, 315, 315, 315, 136, 335,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 860 */ 309, 314, 308, 301, 300, 302, 303, 304, 316, 317,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 870 */ 330, 288, 315, 315, 315, 315, 315, 315, 48, 46,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 880 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 890 */ 24, 17, 187, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 900 */ 315, 315, 315, 315, 315, 131, 335, 309, 314, 308,
|
|
|
|
/* 910 */ 301, 300, 302, 303, 304, 316, 317, 330, 288, 315,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 920 */ 315, 315, 315, 315, 315, 48, 46, 45, 41, 27,
|
|
|
|
/* 930 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 315,
|
|
|
|
/* 940 */ 315, 208, 315, 315, 315, 315, 315, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 950 */ 315, 315, 315, 335, 309, 314, 308, 301, 300, 302,
|
|
|
|
/* 960 */ 303, 304, 316, 317, 330, 187, 328, 315, 145, 315,
|
|
|
|
/* 970 */ 184, 94, 217, 51, 315, 122, 109, 315, 315, 315,
|
|
|
|
/* 980 */ 332, 250, 329, 315, 315, 315, 315, 262, 285, 315,
|
|
|
|
/* 990 */ 331, 315, 315, 315, 315, 174, 315, 315, 48, 46,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1000 */ 45, 41, 27, 16, 342, 370, 14, 19, 360, 362,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1010 */ 24, 17, 187, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1020 */ 315, 315, 315, 315, 315, 315, 335, 309, 314, 308,
|
|
|
|
/* 1030 */ 301, 300, 302, 303, 304, 316, 317, 330, 315, 315,
|
|
|
|
/* 1040 */ 315, 315, 315, 315, 315, 48, 46, 45, 41, 27,
|
|
|
|
/* 1050 */ 16, 342, 370, 14, 19, 360, 362, 24, 17, 187,
|
|
|
|
/* 1060 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1070 */ 315, 315, 315, 335, 309, 314, 308, 301, 300, 302,
|
|
|
|
/* 1080 */ 303, 304, 316, 317, 330, 315, 372, 315, 315, 315,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1090 */ 315, 315, 48, 46, 45, 41, 27, 16, 342, 370,
|
|
|
|
/* 1100 */ 14, 19, 360, 362, 24, 17, 315, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1110 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 153,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1120 */ 335, 309, 314, 308, 301, 300, 302, 303, 304, 316,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1130 */ 317, 330, 250, 315, 315, 315, 6, 147, 120, 177,
|
|
|
|
/* 1140 */ 315, 328, 215, 315, 214, 219, 172, 217, 83, 126,
|
|
|
|
/* 1150 */ 250, 109, 218, 226, 315, 315, 49, 329, 315, 315,
|
|
|
|
/* 1160 */ 315, 315, 262, 285, 172, 331, 141, 315, 315, 315,
|
|
|
|
/* 1170 */ 29, 315, 315, 47, 43, 268, 231, 246, 315, 250,
|
|
|
|
/* 1180 */ 92, 1, 260, 315, 315, 315, 6, 315, 120, 183,
|
|
|
|
/* 1190 */ 315, 315, 215, 172, 214, 89, 315, 315, 315, 126,
|
|
|
|
/* 1200 */ 368, 315, 218, 226, 315, 12, 49, 315, 315, 315,
|
|
|
|
/* 1210 */ 315, 215, 315, 214, 315, 315, 315, 315, 126, 315,
|
|
|
|
/* 1220 */ 29, 218, 315, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1230 */ 92, 1, 315, 315, 315, 315, 6, 315, 112, 178,
|
|
|
|
/* 1240 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
|
|
|
/* 1250 */ 368, 315, 218, 190, 315, 12, 49, 315, 315, 315,
|
|
|
|
/* 1260 */ 315, 215, 315, 214, 357, 37, 366, 315, 126, 156,
|
|
|
|
/* 1270 */ 29, 218, 90, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1280 */ 92, 1, 250, 39, 36, 315, 6, 328, 112, 183,
|
|
|
|
/* 1290 */ 315, 295, 215, 217, 214, 89, 174, 109, 315, 126,
|
|
|
|
/* 1300 */ 315, 315, 218, 226, 315, 315, 49, 315, 262, 285,
|
|
|
|
/* 1310 */ 315, 331, 315, 315, 358, 37, 366, 315, 315, 315,
|
|
|
|
/* 1320 */ 29, 315, 315, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1330 */ 92, 1, 315, 315, 315, 315, 6, 328, 121, 85,
|
|
|
|
/* 1340 */ 315, 271, 215, 217, 214, 89, 315, 109, 315, 126,
|
|
|
|
/* 1350 */ 315, 315, 218, 226, 315, 315, 49, 315, 262, 285,
|
|
|
|
/* 1360 */ 315, 331, 315, 187, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1370 */ 25, 315, 315, 47, 43, 268, 231, 246, 311, 315,
|
|
|
|
/* 1380 */ 92, 1, 209, 315, 188, 315, 6, 315, 120, 175,
|
|
|
|
/* 1390 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
|
|
|
/* 1400 */ 315, 151, 218, 226, 168, 315, 49, 315, 315, 315,
|
|
|
|
/* 1410 */ 315, 10, 315, 315, 250, 39, 36, 315, 315, 118,
|
|
|
|
/* 1420 */ 29, 315, 315, 47, 43, 268, 231, 246, 174, 315,
|
|
|
|
/* 1430 */ 92, 1, 315, 315, 315, 315, 6, 315, 119, 183,
|
|
|
|
/* 1440 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1450 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1460 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 143,
|
|
|
|
/* 1470 */ 29, 315, 168, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1480 */ 92, 1, 250, 39, 36, 315, 6, 315, 120, 176,
|
|
|
|
/* 1490 */ 315, 315, 215, 315, 214, 89, 174, 315, 315, 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1500 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1510 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1520 */ 25, 315, 315, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1530 */ 92, 1, 315, 315, 315, 315, 6, 315, 120, 181,
|
|
|
|
/* 1540 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1550 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1560 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1570 */ 29, 315, 315, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1580 */ 92, 1, 315, 315, 315, 315, 6, 315, 120, 183,
|
|
|
|
/* 1590 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1600 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1610 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1620 */ 25, 315, 315, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1630 */ 92, 1, 315, 315, 315, 315, 6, 315, 117, 183,
|
|
|
|
/* 1640 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1650 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1660 */ 315, 315, 315, 315, 315, 315, 315, 315, 315, 315,
|
|
|
|
/* 1670 */ 29, 315, 315, 47, 43, 268, 231, 246, 315, 315,
|
|
|
|
/* 1680 */ 92, 1, 315, 315, 315, 315, 6, 315, 112, 192,
|
|
|
|
/* 1690 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
|
|
|
/* 1700 */ 315, 315, 218, 226, 315, 315, 49, 328, 315, 315,
|
|
|
|
/* 1710 */ 315, 243, 315, 217, 315, 315, 315, 109, 315, 315,
|
|
|
|
/* 1720 */ 29, 315, 315, 47, 43, 268, 231, 246, 262, 285,
|
|
|
|
/* 1730 */ 92, 331, 315, 315, 315, 315, 6, 315, 112, 183,
|
|
|
|
/* 1740 */ 315, 315, 215, 315, 214, 89, 315, 315, 315, 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1750 */ 315, 315, 218, 226, 315, 315, 49, 315, 315, 315,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1760 */ 315, 315, 328, 315, 315, 315, 182, 315, 217, 71,
|
|
|
|
/* 1770 */ 29, 315, 109, 47, 43, 268, 231, 246, 329, 315,
|
|
|
|
/* 1780 */ 92, 315, 315, 262, 285, 315, 331, 315, 315, 315,
|
|
|
|
/* 1790 */ 315, 315, 315, 315, 315, 89, 185, 339, 315, 315,
|
|
|
|
/* 1800 */ 315, 315, 315, 315, 315, 328, 315, 315, 315, 182,
|
|
|
|
/* 1810 */ 315, 217, 71, 315, 315, 109, 315, 315, 315, 315,
|
|
|
|
/* 1820 */ 315, 329, 315, 315, 315, 315, 262, 285, 315, 331,
|
|
|
|
/* 1830 */ 315, 328, 315, 315, 315, 219, 315, 217, 74, 315,
|
|
|
|
/* 1840 */ 338, 109, 315, 315, 328, 315, 315, 329, 219, 315,
|
|
|
|
/* 1850 */ 217, 65, 262, 285, 109, 331, 315, 328, 315, 315,
|
|
|
|
/* 1860 */ 329, 219, 315, 217, 56, 262, 285, 109, 331, 315,
|
|
|
|
/* 1870 */ 315, 315, 315, 329, 315, 315, 315, 315, 262, 285,
|
|
|
|
/* 1880 */ 315, 331, 315, 315, 315, 315, 315, 328, 315, 315,
|
|
|
|
/* 1890 */ 315, 219, 315, 217, 72, 315, 315, 109, 315, 315,
|
|
|
|
/* 1900 */ 315, 315, 315, 329, 315, 315, 315, 315, 262, 285,
|
|
|
|
/* 1910 */ 315, 331, 315, 328, 315, 315, 315, 219, 315, 217,
|
|
|
|
/* 1920 */ 67, 315, 315, 109, 315, 315, 328, 315, 315, 329,
|
|
|
|
/* 1930 */ 219, 315, 217, 60, 262, 285, 109, 331, 315, 328,
|
|
|
|
/* 1940 */ 315, 315, 329, 219, 315, 217, 63, 262, 285, 109,
|
|
|
|
/* 1950 */ 331, 315, 315, 315, 315, 329, 315, 315, 315, 315,
|
|
|
|
/* 1960 */ 262, 285, 315, 331, 315, 315, 315, 315, 315, 328,
|
|
|
|
/* 1970 */ 315, 315, 315, 219, 315, 217, 84, 315, 315, 109,
|
|
|
|
/* 1980 */ 315, 315, 315, 315, 315, 329, 315, 315, 315, 315,
|
|
|
|
/* 1990 */ 262, 285, 315, 331, 315, 328, 315, 315, 315, 219,
|
|
|
|
/* 2000 */ 315, 217, 68, 315, 315, 109, 315, 315, 328, 315,
|
|
|
|
/* 2010 */ 315, 329, 219, 315, 217, 52, 262, 285, 109, 331,
|
|
|
|
/* 2020 */ 315, 328, 315, 315, 329, 219, 315, 217, 80, 262,
|
|
|
|
/* 2030 */ 285, 109, 331, 315, 315, 315, 315, 329, 315, 315,
|
|
|
|
/* 2040 */ 315, 315, 262, 285, 315, 331, 315, 315, 315, 315,
|
|
|
|
/* 2050 */ 315, 328, 315, 315, 315, 219, 315, 217, 57, 315,
|
|
|
|
/* 2060 */ 315, 109, 315, 315, 315, 315, 315, 329, 315, 315,
|
|
|
|
/* 2070 */ 315, 315, 262, 285, 315, 331, 315, 328, 315, 315,
|
|
|
|
/* 2080 */ 315, 219, 315, 217, 64, 315, 315, 109, 315, 315,
|
|
|
|
/* 2090 */ 328, 315, 315, 329, 219, 315, 217, 70, 262, 285,
|
|
|
|
/* 2100 */ 109, 331, 315, 328, 315, 315, 329, 219, 315, 217,
|
|
|
|
/* 2110 */ 77, 262, 285, 109, 331, 315, 315, 315, 315, 329,
|
|
|
|
/* 2120 */ 315, 315, 315, 315, 262, 285, 315, 331, 315, 315,
|
|
|
|
/* 2130 */ 315, 315, 315, 328, 315, 315, 315, 219, 315, 217,
|
|
|
|
/* 2140 */ 73, 315, 315, 109, 315, 315, 315, 315, 315, 329,
|
|
|
|
/* 2150 */ 315, 315, 315, 315, 262, 285, 315, 331, 315, 328,
|
|
|
|
/* 2160 */ 315, 315, 315, 219, 315, 217, 75, 315, 315, 109,
|
|
|
|
/* 2170 */ 315, 315, 328, 315, 315, 329, 219, 315, 217, 61,
|
|
|
|
/* 2180 */ 262, 285, 109, 331, 315, 328, 315, 315, 329, 219,
|
|
|
|
/* 2190 */ 315, 217, 81, 262, 285, 109, 331, 315, 315, 315,
|
|
|
|
/* 2200 */ 315, 329, 315, 315, 315, 315, 262, 285, 315, 331,
|
|
|
|
/* 2210 */ 315, 315, 315, 315, 315, 328, 315, 315, 315, 219,
|
|
|
|
/* 2220 */ 315, 217, 62, 315, 315, 109, 315, 315, 315, 315,
|
|
|
|
/* 2230 */ 315, 329, 315, 315, 315, 315, 262, 285, 315, 331,
|
|
|
|
/* 2240 */ 315, 328, 315, 315, 315, 219, 315, 217, 82, 315,
|
|
|
|
/* 2250 */ 315, 109, 315, 315, 328, 315, 315, 329, 219, 315,
|
|
|
|
/* 2260 */ 217, 55, 262, 285, 109, 331, 315, 328, 315, 315,
|
|
|
|
/* 2270 */ 329, 219, 315, 191, 59, 262, 285, 109, 331, 315,
|
|
|
|
/* 2280 */ 315, 315, 315, 329, 315, 315, 315, 315, 262, 285,
|
|
|
|
/* 2290 */ 315, 331, 315, 315, 315, 315, 315, 328, 315, 315,
|
|
|
|
/* 2300 */ 315, 219, 315, 217, 79, 315, 315, 109, 315, 315,
|
|
|
|
/* 2310 */ 315, 315, 315, 329, 315, 315, 315, 315, 262, 285,
|
|
|
|
/* 2320 */ 315, 331, 315, 328, 315, 315, 315, 219, 315, 217,
|
|
|
|
/* 2330 */ 69, 315, 315, 109, 315, 315, 328, 315, 315, 329,
|
|
|
|
/* 2340 */ 219, 315, 217, 78, 262, 285, 109, 331, 315, 328,
|
|
|
|
/* 2350 */ 315, 315, 329, 224, 315, 217, 315, 262, 285, 109,
|
|
|
|
/* 2360 */ 331, 315, 315, 315, 315, 194, 315, 315, 315, 315,
|
|
|
|
/* 2370 */ 262, 285, 315, 331, 315, 315, 315, 315, 315, 328,
|
|
|
|
/* 2380 */ 315, 315, 315, 234, 315, 217, 328, 315, 315, 109,
|
|
|
|
/* 2390 */ 238, 315, 217, 315, 315, 256, 109, 315, 315, 315,
|
|
|
|
/* 2400 */ 262, 285, 240, 331, 315, 315, 315, 262, 285, 315,
|
|
|
|
/* 2410 */ 331,
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
|
|
|
static public $yy_lookahead = array(
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 0 */ 1, 80, 81, 82, 3, 4, 5, 6, 7, 8,
|
|
|
|
/* 10 */ 9, 10, 11, 12, 16, 15, 15, 81, 18, 49,
|
|
|
|
/* 20 */ 22, 22, 21, 25, 23, 55, 27, 57, 82, 28,
|
|
|
|
/* 30 */ 84, 61, 31, 34, 35, 36, 37, 38, 39, 40,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 40 */ 41, 42, 43, 44, 45, 46, 47, 4, 5, 6,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 50 */ 7, 8, 18, 117, 118, 12, 13, 14, 58, 109,
|
|
|
|
/* 60 */ 110, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
/* 70 */ 71, 72, 73, 1, 81, 89, 2, 33, 85, 15,
|
|
|
|
/* 80 */ 87, 88, 18, 19, 91, 92, 100, 101, 16, 25,
|
|
|
|
/* 90 */ 97, 16, 58, 19, 22, 102, 103, 22, 105, 113,
|
|
|
|
/* 100 */ 78, 79, 80, 81, 82, 61, 34, 35, 36, 37,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 110 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 120 */ 19, 15, 15, 48, 49, 18, 19, 16, 15, 16,
|
|
|
|
/* 130 */ 29, 18, 57, 22, 62, 63, 64, 65, 66, 67,
|
|
|
|
/* 140 */ 68, 69, 70, 71, 72, 73, 1, 81, 30, 86,
|
|
|
|
/* 150 */ 49, 85, 89, 87, 88, 49, 90, 91, 57, 48,
|
|
|
|
/* 160 */ 19, 16, 99, 97, 16, 58, 48, 22, 102, 103,
|
|
|
|
/* 170 */ 22, 105, 15, 25, 17, 18, 113, 16, 1, 34,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 180 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 190 */ 45, 46, 47, 16, 106, 15, 55, 20, 18, 22,
|
|
|
|
/* 200 */ 15, 92, 93, 18, 19, 19, 20, 62, 63, 64,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 210 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 1,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 220 */ 81, 30, 17, 24, 85, 81, 87, 88, 98, 85,
|
|
|
|
/* 230 */ 91, 87, 33, 16, 16, 91, 97, 86, 58, 22,
|
|
|
|
/* 240 */ 49, 102, 103, 57, 105, 49, 102, 103, 57, 105,
|
|
|
|
/* 250 */ 99, 112, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
|
|
/* 260 */ 42, 43, 44, 45, 46, 47, 49, 15, 16, 16,
|
|
|
|
/* 270 */ 18, 17, 18, 25, 57, 22, 107, 50, 109, 110,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 280 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 290 */ 72, 73, 1, 81, 87, 1, 29, 85, 91, 87,
|
|
|
|
/* 300 */ 88, 48, 90, 91, 98, 15, 16, 16, 18, 97,
|
|
|
|
/* 310 */ 16, 86, 105, 59, 102, 103, 22, 105, 16, 113,
|
|
|
|
/* 320 */ 30, 17, 18, 75, 99, 34, 35, 36, 37, 38,
|
|
|
|
/* 330 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 114,
|
|
|
|
/* 340 */ 55, 16, 16, 15, 17, 60, 18, 22, 22, 15,
|
|
|
|
/* 350 */ 48, 17, 18, 62, 63, 64, 65, 66, 67, 68,
|
|
|
|
/* 360 */ 69, 70, 71, 72, 73, 1, 32, 86, 81, 18,
|
|
|
|
/* 370 */ 89, 18, 85, 15, 87, 88, 18, 90, 91, 20,
|
|
|
|
/* 380 */ 99, 100, 101, 32, 97, 49, 109, 110, 24, 102,
|
|
|
|
/* 390 */ 103, 16, 105, 57, 113, 17, 17, 22, 34, 35,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 400 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 410 */ 46, 47, 1, 17, 55, 16, 16, 16, 16, 60,
|
|
|
|
/* 420 */ 2, 22, 22, 22, 22, 86, 62, 63, 64, 65,
|
|
|
|
/* 430 */ 66, 67, 68, 69, 70, 71, 72, 73, 99, 1,
|
|
|
|
/* 440 */ 22, 106, 29, 108, 33, 34, 35, 36, 37, 38,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 450 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 460 */ 22, 16, 16, 16, 16, 16, 16, 22, 22, 22,
|
|
|
|
/* 470 */ 22, 22, 22, 62, 63, 64, 65, 66, 67, 68,
|
|
|
|
/* 480 */ 69, 70, 71, 72, 73, 16, 15, 15, 18, 18,
|
|
|
|
/* 490 */ 18, 22, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
|
|
/* 500 */ 42, 43, 44, 45, 46, 47, 86, 16, 50, 16,
|
|
|
|
/* 510 */ 16, 104, 48, 22, 81, 22, 22, 18, 111, 99,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 520 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 530 */ 72, 73, 1, 81, 104, 18, 18, 85, 81, 87,
|
|
|
|
/* 540 */ 88, 111, 85, 91, 87, 86, 20, 16, 91, 97,
|
|
|
|
/* 550 */ 95, 118, 55, 15, 102, 103, 18, 105, 99, 102,
|
|
|
|
/* 560 */ 103, 16, 105, 108, 112, 34, 35, 36, 37, 38,
|
|
|
|
/* 570 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 95,
|
|
|
|
/* 580 */ 106, 98, 108, 57, 32, 18, 18, 25, 49, 2,
|
|
|
|
/* 590 */ 19, 2, 108, 62, 63, 64, 65, 66, 67, 68,
|
|
|
|
/* 600 */ 69, 70, 71, 72, 73, 1, 81, 96, 32, 61,
|
|
|
|
/* 610 */ 85, 81, 87, 88, 50, 85, 91, 87, 95, 108,
|
|
|
|
/* 620 */ 16, 91, 97, 95, 16, 26, 51, 102, 103, 18,
|
|
|
|
/* 630 */ 105, 108, 102, 103, 22, 105, 108, 112, 34, 35,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 640 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 650 */ 46, 47, 1, 22, 59, 59, 50, 18, 99, 19,
|
|
|
|
/* 660 */ 107, 106, 1, 17, 20, 95, 62, 63, 64, 65,
|
|
|
|
/* 670 */ 66, 67, 68, 69, 70, 71, 72, 73, 108, 22,
|
|
|
|
/* 680 */ 22, 108, 2, 106, 94, 34, 35, 36, 37, 38,
|
|
|
|
/* 690 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 111,
|
|
|
|
/* 700 */ 106, 22, 83, 110, 13, 92, 114, 119, 94, 119,
|
|
|
|
/* 710 */ 113, 119, 61, 62, 63, 64, 65, 66, 67, 68,
|
|
|
|
/* 720 */ 69, 70, 71, 72, 73, 1, 81, 119, 86, 119,
|
|
|
|
/* 730 */ 85, 89, 87, 88, 119, 90, 91, 15, 16, 119,
|
|
|
|
/* 740 */ 18, 99, 97, 95, 95, 119, 22, 102, 103, 119,
|
|
|
|
/* 750 */ 105, 119, 30, 119, 119, 113, 108, 108, 34, 35,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 760 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 770 */ 46, 47, 86, 119, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 780 */ 119, 119, 119, 119, 119, 99, 62, 63, 64, 65,
|
|
|
|
/* 790 */ 66, 67, 68, 69, 70, 71, 72, 73, 1, 81,
|
|
|
|
/* 800 */ 119, 119, 119, 85, 81, 87, 88, 119, 85, 91,
|
|
|
|
/* 810 */ 87, 86, 119, 16, 91, 97, 95, 119, 119, 119,
|
|
|
|
/* 820 */ 102, 103, 119, 105, 99, 102, 103, 119, 105, 108,
|
|
|
|
/* 830 */ 112, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 840 */ 43, 44, 45, 46, 47, 1, 2, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 850 */ 119, 119, 119, 119, 119, 119, 119, 119, 95, 62,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 860 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 870 */ 73, 108, 119, 119, 119, 119, 119, 119, 34, 35,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 880 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
|
|
|
/* 890 */ 46, 47, 1, 119, 119, 119, 119, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 900 */ 119, 119, 119, 119, 119, 95, 62, 63, 64, 65,
|
|
|
|
/* 910 */ 66, 67, 68, 69, 70, 71, 72, 73, 108, 119,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 920 */ 119, 119, 119, 119, 119, 34, 35, 36, 37, 38,
|
|
|
|
/* 930 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 119,
|
|
|
|
/* 940 */ 119, 50, 119, 119, 119, 119, 119, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 950 */ 119, 119, 119, 62, 63, 64, 65, 66, 67, 68,
|
|
|
|
/* 960 */ 69, 70, 71, 72, 73, 1, 81, 119, 86, 119,
|
|
|
|
/* 970 */ 85, 89, 87, 88, 119, 90, 91, 119, 119, 119,
|
|
|
|
/* 980 */ 16, 99, 97, 119, 119, 119, 119, 102, 103, 119,
|
|
|
|
/* 990 */ 105, 119, 119, 119, 119, 113, 119, 119, 34, 35,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1000 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
|
|
|
/* 1010 */ 46, 47, 1, 119, 119, 119, 119, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1020 */ 119, 119, 119, 119, 119, 119, 62, 63, 64, 65,
|
|
|
|
/* 1030 */ 66, 67, 68, 69, 70, 71, 72, 73, 119, 119,
|
|
|
|
/* 1040 */ 119, 119, 119, 119, 119, 34, 35, 36, 37, 38,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1050 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 1,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1060 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 1070 */ 119, 119, 119, 62, 63, 64, 65, 66, 67, 68,
|
|
|
|
/* 1080 */ 69, 70, 71, 72, 73, 119, 75, 119, 119, 119,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1090 */ 119, 119, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
|
|
/* 1100 */ 42, 43, 44, 45, 46, 47, 119, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1110 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 86,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1120 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1130 */ 72, 73, 99, 119, 119, 119, 15, 86, 17, 18,
|
|
|
|
/* 1140 */ 119, 81, 21, 119, 23, 85, 113, 87, 88, 28,
|
|
|
|
/* 1150 */ 99, 91, 31, 32, 119, 119, 35, 97, 119, 119,
|
|
|
|
/* 1160 */ 119, 119, 102, 103, 113, 105, 86, 119, 119, 119,
|
|
|
|
/* 1170 */ 49, 119, 119, 52, 53, 54, 55, 56, 119, 99,
|
|
|
|
/* 1180 */ 59, 60, 61, 119, 119, 119, 15, 119, 17, 18,
|
|
|
|
/* 1190 */ 119, 119, 21, 113, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1200 */ 10, 119, 31, 32, 119, 15, 35, 119, 119, 119,
|
|
|
|
/* 1210 */ 119, 21, 119, 23, 119, 119, 119, 119, 28, 119,
|
|
|
|
/* 1220 */ 49, 31, 119, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1230 */ 59, 60, 119, 119, 119, 119, 15, 119, 17, 18,
|
|
|
|
/* 1240 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1250 */ 10, 119, 31, 32, 119, 15, 35, 119, 119, 119,
|
|
|
|
/* 1260 */ 119, 21, 119, 23, 74, 75, 76, 119, 28, 86,
|
|
|
|
/* 1270 */ 49, 31, 89, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1280 */ 59, 60, 99, 100, 101, 119, 15, 81, 17, 18,
|
|
|
|
/* 1290 */ 119, 85, 21, 87, 23, 74, 113, 91, 119, 28,
|
|
|
|
/* 1300 */ 119, 119, 31, 32, 119, 119, 35, 119, 102, 103,
|
|
|
|
/* 1310 */ 119, 105, 119, 119, 74, 75, 76, 119, 119, 119,
|
|
|
|
/* 1320 */ 49, 119, 119, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1330 */ 59, 60, 119, 119, 119, 119, 15, 81, 17, 18,
|
|
|
|
/* 1340 */ 119, 85, 21, 87, 23, 74, 119, 91, 119, 28,
|
|
|
|
/* 1350 */ 119, 119, 31, 32, 119, 119, 35, 119, 102, 103,
|
|
|
|
/* 1360 */ 119, 105, 119, 1, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 1370 */ 49, 119, 119, 52, 53, 54, 55, 56, 16, 119,
|
|
|
|
/* 1380 */ 59, 60, 20, 119, 22, 119, 15, 119, 17, 18,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1390 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1400 */ 119, 86, 31, 32, 89, 119, 35, 119, 119, 119,
|
|
|
|
/* 1410 */ 119, 49, 119, 119, 99, 100, 101, 119, 119, 57,
|
|
|
|
/* 1420 */ 49, 119, 119, 52, 53, 54, 55, 56, 113, 119,
|
|
|
|
/* 1430 */ 59, 60, 119, 119, 119, 119, 15, 119, 17, 18,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1440 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1450 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1460 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 86,
|
|
|
|
/* 1470 */ 49, 119, 89, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1480 */ 59, 60, 99, 100, 101, 119, 15, 119, 17, 18,
|
|
|
|
/* 1490 */ 119, 119, 21, 119, 23, 74, 113, 119, 119, 28,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1500 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1510 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 1520 */ 49, 119, 119, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1530 */ 59, 60, 119, 119, 119, 119, 15, 119, 17, 18,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1540 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1550 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1560 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 1570 */ 49, 119, 119, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1580 */ 59, 60, 119, 119, 119, 119, 15, 119, 17, 18,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1590 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1600 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1610 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 1620 */ 49, 119, 119, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1630 */ 59, 60, 119, 119, 119, 119, 15, 119, 17, 18,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 1640 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1650 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1660 */ 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
|
|
|
|
/* 1670 */ 49, 119, 119, 52, 53, 54, 55, 56, 119, 119,
|
|
|
|
/* 1680 */ 59, 60, 119, 119, 119, 119, 15, 119, 17, 18,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1690 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1700 */ 119, 119, 31, 32, 119, 119, 35, 81, 119, 119,
|
|
|
|
/* 1710 */ 119, 85, 119, 87, 119, 119, 119, 91, 119, 119,
|
|
|
|
/* 1720 */ 49, 119, 119, 52, 53, 54, 55, 56, 102, 103,
|
|
|
|
/* 1730 */ 59, 105, 119, 119, 119, 119, 15, 119, 17, 18,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 1740 */ 119, 119, 21, 119, 23, 74, 119, 119, 119, 28,
|
|
|
|
/* 1750 */ 119, 119, 31, 32, 119, 119, 35, 119, 119, 119,
|
|
|
|
/* 1760 */ 119, 119, 81, 119, 119, 119, 85, 119, 87, 88,
|
|
|
|
/* 1770 */ 49, 119, 91, 52, 53, 54, 55, 56, 97, 119,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 1780 */ 59, 119, 119, 102, 103, 119, 105, 119, 119, 119,
|
|
|
|
/* 1790 */ 119, 119, 119, 119, 119, 74, 115, 116, 119, 119,
|
|
|
|
/* 1800 */ 119, 119, 119, 119, 119, 81, 119, 119, 119, 85,
|
|
|
|
/* 1810 */ 119, 87, 88, 119, 119, 91, 119, 119, 119, 119,
|
|
|
|
/* 1820 */ 119, 97, 119, 119, 119, 119, 102, 103, 119, 105,
|
|
|
|
/* 1830 */ 119, 81, 119, 119, 119, 85, 119, 87, 88, 119,
|
|
|
|
/* 1840 */ 116, 91, 119, 119, 81, 119, 119, 97, 85, 119,
|
|
|
|
/* 1850 */ 87, 88, 102, 103, 91, 105, 119, 81, 119, 119,
|
|
|
|
/* 1860 */ 97, 85, 119, 87, 88, 102, 103, 91, 105, 119,
|
|
|
|
/* 1870 */ 119, 119, 119, 97, 119, 119, 119, 119, 102, 103,
|
|
|
|
/* 1880 */ 119, 105, 119, 119, 119, 119, 119, 81, 119, 119,
|
|
|
|
/* 1890 */ 119, 85, 119, 87, 88, 119, 119, 91, 119, 119,
|
|
|
|
/* 1900 */ 119, 119, 119, 97, 119, 119, 119, 119, 102, 103,
|
|
|
|
/* 1910 */ 119, 105, 119, 81, 119, 119, 119, 85, 119, 87,
|
|
|
|
/* 1920 */ 88, 119, 119, 91, 119, 119, 81, 119, 119, 97,
|
|
|
|
/* 1930 */ 85, 119, 87, 88, 102, 103, 91, 105, 119, 81,
|
|
|
|
/* 1940 */ 119, 119, 97, 85, 119, 87, 88, 102, 103, 91,
|
|
|
|
/* 1950 */ 105, 119, 119, 119, 119, 97, 119, 119, 119, 119,
|
|
|
|
/* 1960 */ 102, 103, 119, 105, 119, 119, 119, 119, 119, 81,
|
|
|
|
/* 1970 */ 119, 119, 119, 85, 119, 87, 88, 119, 119, 91,
|
|
|
|
/* 1980 */ 119, 119, 119, 119, 119, 97, 119, 119, 119, 119,
|
|
|
|
/* 1990 */ 102, 103, 119, 105, 119, 81, 119, 119, 119, 85,
|
|
|
|
/* 2000 */ 119, 87, 88, 119, 119, 91, 119, 119, 81, 119,
|
|
|
|
/* 2010 */ 119, 97, 85, 119, 87, 88, 102, 103, 91, 105,
|
|
|
|
/* 2020 */ 119, 81, 119, 119, 97, 85, 119, 87, 88, 102,
|
|
|
|
/* 2030 */ 103, 91, 105, 119, 119, 119, 119, 97, 119, 119,
|
|
|
|
/* 2040 */ 119, 119, 102, 103, 119, 105, 119, 119, 119, 119,
|
|
|
|
/* 2050 */ 119, 81, 119, 119, 119, 85, 119, 87, 88, 119,
|
|
|
|
/* 2060 */ 119, 91, 119, 119, 119, 119, 119, 97, 119, 119,
|
|
|
|
/* 2070 */ 119, 119, 102, 103, 119, 105, 119, 81, 119, 119,
|
|
|
|
/* 2080 */ 119, 85, 119, 87, 88, 119, 119, 91, 119, 119,
|
|
|
|
/* 2090 */ 81, 119, 119, 97, 85, 119, 87, 88, 102, 103,
|
|
|
|
/* 2100 */ 91, 105, 119, 81, 119, 119, 97, 85, 119, 87,
|
|
|
|
/* 2110 */ 88, 102, 103, 91, 105, 119, 119, 119, 119, 97,
|
|
|
|
/* 2120 */ 119, 119, 119, 119, 102, 103, 119, 105, 119, 119,
|
|
|
|
/* 2130 */ 119, 119, 119, 81, 119, 119, 119, 85, 119, 87,
|
|
|
|
/* 2140 */ 88, 119, 119, 91, 119, 119, 119, 119, 119, 97,
|
|
|
|
/* 2150 */ 119, 119, 119, 119, 102, 103, 119, 105, 119, 81,
|
|
|
|
/* 2160 */ 119, 119, 119, 85, 119, 87, 88, 119, 119, 91,
|
|
|
|
/* 2170 */ 119, 119, 81, 119, 119, 97, 85, 119, 87, 88,
|
|
|
|
/* 2180 */ 102, 103, 91, 105, 119, 81, 119, 119, 97, 85,
|
|
|
|
/* 2190 */ 119, 87, 88, 102, 103, 91, 105, 119, 119, 119,
|
|
|
|
/* 2200 */ 119, 97, 119, 119, 119, 119, 102, 103, 119, 105,
|
|
|
|
/* 2210 */ 119, 119, 119, 119, 119, 81, 119, 119, 119, 85,
|
|
|
|
/* 2220 */ 119, 87, 88, 119, 119, 91, 119, 119, 119, 119,
|
|
|
|
/* 2230 */ 119, 97, 119, 119, 119, 119, 102, 103, 119, 105,
|
|
|
|
/* 2240 */ 119, 81, 119, 119, 119, 85, 119, 87, 88, 119,
|
|
|
|
/* 2250 */ 119, 91, 119, 119, 81, 119, 119, 97, 85, 119,
|
|
|
|
/* 2260 */ 87, 88, 102, 103, 91, 105, 119, 81, 119, 119,
|
|
|
|
/* 2270 */ 97, 85, 119, 87, 88, 102, 103, 91, 105, 119,
|
|
|
|
/* 2280 */ 119, 119, 119, 97, 119, 119, 119, 119, 102, 103,
|
|
|
|
/* 2290 */ 119, 105, 119, 119, 119, 119, 119, 81, 119, 119,
|
|
|
|
/* 2300 */ 119, 85, 119, 87, 88, 119, 119, 91, 119, 119,
|
|
|
|
/* 2310 */ 119, 119, 119, 97, 119, 119, 119, 119, 102, 103,
|
|
|
|
/* 2320 */ 119, 105, 119, 81, 119, 119, 119, 85, 119, 87,
|
|
|
|
/* 2330 */ 88, 119, 119, 91, 119, 119, 81, 119, 119, 97,
|
|
|
|
/* 2340 */ 85, 119, 87, 88, 102, 103, 91, 105, 119, 81,
|
|
|
|
/* 2350 */ 119, 119, 97, 85, 119, 87, 119, 102, 103, 91,
|
|
|
|
/* 2360 */ 105, 119, 119, 119, 119, 97, 119, 119, 119, 119,
|
|
|
|
/* 2370 */ 102, 103, 119, 105, 119, 119, 119, 119, 119, 81,
|
|
|
|
/* 2380 */ 119, 119, 119, 85, 119, 87, 81, 119, 119, 91,
|
|
|
|
/* 2390 */ 85, 119, 87, 119, 119, 97, 91, 119, 119, 119,
|
|
|
|
/* 2400 */ 102, 103, 97, 105, 119, 119, 119, 102, 103, 119,
|
|
|
|
/* 2410 */ 105,
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
2010-10-25 18:53:43 +00:00
|
|
|
const YY_SHIFT_USE_DFLT = -31;
|
2010-10-13 15:44:03 +00:00
|
|
|
const YY_SHIFT_MAX = 232;
|
2010-09-15 15:17:28 +00:00
|
|
|
static public $yy_shift_ofst = array(
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 0 */ 1, 1521, 1471, 1171, 1171, 1571, 1321, 1571, 1521, 1421,
|
|
|
|
/* 10 */ 1171, 1171, 1321, 1121, 1171, 1171, 1171, 1171, 1171, 1171,
|
|
|
|
/* 20 */ 1371, 1171, 1621, 1171, 1171, 1171, 1171, 1171, 1171, 1171,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 30 */ 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 40 */ 1271, 1271, 1221, 1721, 1671, 1721, 1721, 1721, 1721, 1721,
|
|
|
|
/* 50 */ 145, 72, -1, 724, 724, 797, 844, 651, 964, 1011,
|
|
|
|
/* 60 */ 458, 291, 218, 364, 604, 531, 411, 891, 1058, 1058,
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 70 */ 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 80 */ 1058, 1058, 1058, 1058, 1058, 1362, 177, 438, 1, 1190,
|
|
|
|
/* 90 */ 294, 359, 254, 438, 438, 418, 1240, 43, 64, 107,
|
|
|
|
/* 100 */ 148, -2, 0, 253, 186, 328, 328, 328, 358, 526,
|
|
|
|
/* 110 */ 304, 328, 328, 328, 328, 328, 328, 538, 304, 471,
|
|
|
|
/* 120 */ 471, 472, 657, 644, 657, 644, 658, 646, 661, 657,
|
|
|
|
/* 130 */ 290, 722, 252, 157, 180, 113, 185, 106, 450, 449,
|
|
|
|
/* 140 */ 285, 469, 494, 493, 448, 447, 399, 375, 285, 326,
|
|
|
|
/* 150 */ 285, 446, 285, 401, 402, 491, 445, 400, 285, 325,
|
|
|
|
/* 160 */ 196, 644, 679, 679, 646, 644, 680, 680, 661, 644,
|
|
|
|
/* 170 */ 691, -31, -31, -31, -31, 75, 217, -30, 101, 334,
|
|
|
|
/* 180 */ 111, 191, 118, 336, 302, 44, 199, 34, 351, 74,
|
|
|
|
/* 190 */ 141, 248, 336, 196, 267, 161, 353, 227, 327, 205,
|
|
|
|
/* 200 */ 640, 608, 599, 564, 548, 571, 589, 576, 575, 611,
|
|
|
|
/* 210 */ 606, 639, 596, 595, 612, 631, 587, 562, 517, 464,
|
|
|
|
/* 220 */ 499, 470, 379, 396, 413, 518, 497, 568, 378, 539,
|
|
|
|
/* 230 */ 567, 552, 545,
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
2010-10-25 18:53:43 +00:00
|
|
|
const YY_REDUCE_USE_DFLT = -80;
|
2010-10-13 15:44:03 +00:00
|
|
|
const YY_REDUCE_MAX = 174;
|
2010-09-15 15:17:28 +00:00
|
|
|
static public $yy_reduce_ofst = array(
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 0 */ 22, 1681, 66, 525, 718, 287, 645, 885, 1724, -7,
|
|
|
|
/* 10 */ 139, 452, 212, 1970, 1060, 2104, 2052, 2078, 2022, 2255,
|
|
|
|
/* 20 */ 2216, 2134, 1776, 1858, 1750, 1832, 1996, 1940, 1888, 1845,
|
|
|
|
/* 30 */ 1914, 1927, 1763, 2173, 2091, 2160, 1806, 2186, 2242, 2009,
|
|
|
|
/* 40 */ 2305, 2298, 2268, 723, 457, 144, 1206, 530, 1256, 1626,
|
|
|
|
/* 50 */ 1183, 281, 1315, 1183, 1383, -14, -14, -14, -14, -14,
|
|
|
|
/* 60 */ -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
|
|
|
|
/* 70 */ -14, -14, -14, -14, -14, -14, -14, -14, -14, -14,
|
|
|
|
/* 80 */ -14, -14, -14, -14, -14, 882, 63, 642, -79, -64,
|
|
|
|
/* 90 */ 1033, 169, 207, 1051, 1080, 225, 433, -54, 511, 335,
|
|
|
|
/* 100 */ 686, 686, 335, 459, -50, 523, 484, 528, 570, -50,
|
|
|
|
/* 110 */ 407, 474, 455, 649, 721, 810, 763, 455, 430, 648,
|
|
|
|
/* 120 */ 455, 455, 725, 277, 420, -50, 339, 109, 206, 151,
|
|
|
|
/* 130 */ 573, 573, 573, 588, 573, 573, 573, 577, 559, 559,
|
|
|
|
/* 140 */ 553, 559, 559, 559, 559, 559, 559, 559, 553, 559,
|
|
|
|
/* 150 */ 553, 559, 553, 559, 559, 559, 559, 559, 553, 559,
|
|
|
|
/* 160 */ 555, 593, 614, 590, 613, 593, 592, 592, 597, 593,
|
|
|
|
/* 170 */ 619, 594, 483, 88, 130,
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
|
|
|
static public $yyExpectedTokens = array(
|
|
|
|
/* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ),
|
|
|
|
/* 1 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 2 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 3 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 4 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 5 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 6 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 7 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 8 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 9 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 10 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 11 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 12 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 13 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 61, 74, ),
|
|
|
|
/* 14 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 15 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 16 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 17 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 18 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 19 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 20 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 21 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 22 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 23 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 24 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 25 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 26 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 27 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 28 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 29 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 30 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 31 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 32 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 33 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 34 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 35 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 36 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 37 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 38 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 39 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 40 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
|
|
|
/* 41 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 42 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 60, 74, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 43 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
|
|
|
/* 44 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
|
|
|
/* 45 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
|
|
|
/* 46 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
|
|
|
/* 47 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
|
|
|
/* 48 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 49 */ array(15, 17, 18, 21, 23, 28, 31, 32, 35, 49, 52, 53, 54, 55, 56, 59, 74, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 50 */ array(1, 16, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 51 */ array(1, 16, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 52 */ array(1, 22, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 53 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 54 */ array(1, 22, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 55 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 56 */ array(1, 2, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 57 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 58 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 59 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, ),
|
|
|
|
/* 60 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 61 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 62 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 63 */ array(1, 24, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 64 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 65 */ array(1, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 66 */ array(1, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 67 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 68 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 69 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 70 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 71 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 72 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 73 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 74 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 75 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 76 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 77 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 78 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 79 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 80 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 81 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 82 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 83 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 84 */ array(1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, ),
|
|
|
|
/* 85 */ array(1, 16, 20, 22, 49, 57, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 86 */ array(1, 16, 20, 22, ),
|
|
|
|
/* 87 */ array(1, 22, ),
|
|
|
|
/* 88 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, ),
|
|
|
|
/* 89 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ),
|
|
|
|
/* 90 */ array(1, 16, 22, ),
|
|
|
|
/* 91 */ array(20, 55, 60, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 92 */ array(17, 18, 59, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 93 */ array(1, 22, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 94 */ array(1, 22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 95 */ array(2, 22, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 96 */ array(10, 15, 21, 23, 28, 31, 74, 75, 76, ),
|
|
|
|
/* 97 */ array(4, 5, 6, 7, 8, 12, 13, 14, ),
|
|
|
|
/* 98 */ array(15, 18, 19, 25, ),
|
|
|
|
/* 99 */ array(15, 18, 19, 58, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 100 */ array(16, 22, 25, ),
|
|
|
|
/* 101 */ array(16, 22, 25, ),
|
|
|
|
/* 102 */ array(15, 18, 58, ),
|
|
|
|
/* 103 */ array(16, 22, 48, ),
|
|
|
|
/* 104 */ array(19, 20, 57, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 105 */ array(15, 18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 106 */ array(15, 18, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 107 */ array(15, 18, ),
|
|
|
|
/* 108 */ array(15, 18, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 109 */ array(20, 57, ),
|
|
|
|
/* 110 */ array(17, 18, ),
|
|
|
|
/* 111 */ array(15, 18, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 112 */ array(15, 18, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 113 */ array(15, 18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 114 */ array(15, 18, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 115 */ array(15, 18, ),
|
|
|
|
/* 116 */ array(15, 18, ),
|
|
|
|
/* 117 */ array(15, 18, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 118 */ array(17, 18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 119 */ array(15, 18, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 120 */ array(15, 18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 121 */ array(15, 18, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 122 */ array(22, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 123 */ array(20, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 124 */ array(22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 125 */ array(20, ),
|
|
|
|
/* 126 */ array(22, ),
|
|
|
|
/* 127 */ array(17, ),
|
|
|
|
/* 128 */ array(1, ),
|
|
|
|
/* 129 */ array(22, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 130 */ array(15, 16, 18, 30, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 131 */ array(15, 16, 18, 30, ),
|
|
|
|
/* 132 */ array(15, 16, 18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 133 */ array(15, 17, 18, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 134 */ array(15, 18, 58, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 135 */ array(15, 16, 18, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 136 */ array(15, 18, 19, ),
|
|
|
|
/* 137 */ array(15, 49, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 138 */ array(16, 22, ),
|
|
|
|
/* 139 */ array(16, 22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 140 */ array(55, 60, ),
|
|
|
|
/* 141 */ array(16, 22, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 142 */ array(16, 22, ),
|
|
|
|
/* 143 */ array(16, 22, ),
|
|
|
|
/* 144 */ array(16, 22, ),
|
|
|
|
/* 145 */ array(16, 22, ),
|
|
|
|
/* 146 */ array(16, 22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 147 */ array(16, 22, ),
|
|
|
|
/* 148 */ array(55, 60, ),
|
|
|
|
/* 149 */ array(16, 22, ),
|
|
|
|
/* 150 */ array(55, 60, ),
|
|
|
|
/* 151 */ array(16, 22, ),
|
|
|
|
/* 152 */ array(55, 60, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 153 */ array(16, 22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 154 */ array(16, 22, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 155 */ array(16, 22, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 156 */ array(16, 22, ),
|
|
|
|
/* 157 */ array(16, 22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 158 */ array(55, 60, ),
|
|
|
|
/* 159 */ array(16, 22, ),
|
|
|
|
/* 160 */ array(49, ),
|
|
|
|
/* 161 */ array(20, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 162 */ array(22, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 163 */ array(22, ),
|
|
|
|
/* 164 */ array(17, ),
|
|
|
|
/* 165 */ array(20, ),
|
|
|
|
/* 166 */ array(2, ),
|
|
|
|
/* 167 */ array(2, ),
|
|
|
|
/* 168 */ array(1, ),
|
|
|
|
/* 169 */ array(20, ),
|
|
|
|
/* 170 */ array(13, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 171 */ array(),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 172 */ array(),
|
|
|
|
/* 173 */ array(),
|
|
|
|
/* 174 */ array(),
|
|
|
|
/* 175 */ array(16, 22, 48, 49, 57, ),
|
|
|
|
/* 176 */ array(16, 22, 49, 57, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 177 */ array(49, 55, 57, 61, ),
|
|
|
|
/* 178 */ array(19, 29, 49, 57, ),
|
|
|
|
/* 179 */ array(15, 17, 18, 32, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 180 */ array(16, 22, 48, ),
|
|
|
|
/* 181 */ array(30, 49, 57, ),
|
|
|
|
/* 182 */ array(30, 48, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 183 */ array(49, 57, ),
|
|
|
|
/* 184 */ array(16, 48, ),
|
|
|
|
/* 185 */ array(33, 61, ),
|
|
|
|
/* 186 */ array(24, 33, ),
|
|
|
|
/* 187 */ array(18, 58, ),
|
|
|
|
/* 188 */ array(18, 32, ),
|
|
|
|
/* 189 */ array(2, 19, ),
|
|
|
|
/* 190 */ array(19, 55, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 191 */ array(25, 75, ),
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 192 */ array(49, 57, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 193 */ array(49, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 194 */ array(29, ),
|
|
|
|
/* 195 */ array(16, ),
|
|
|
|
/* 196 */ array(18, ),
|
|
|
|
/* 197 */ array(50, ),
|
|
|
|
/* 198 */ array(17, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 199 */ array(17, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 200 */ array(19, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 201 */ array(16, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 202 */ array(26, ),
|
|
|
|
/* 203 */ array(50, ),
|
|
|
|
/* 204 */ array(61, ),
|
|
|
|
/* 205 */ array(19, ),
|
|
|
|
/* 206 */ array(2, ),
|
|
|
|
/* 207 */ array(32, ),
|
|
|
|
/* 208 */ array(51, ),
|
|
|
|
/* 209 */ array(18, ),
|
|
|
|
/* 210 */ array(50, ),
|
|
|
|
/* 211 */ array(18, ),
|
|
|
|
/* 212 */ array(59, ),
|
|
|
|
/* 213 */ array(59, ),
|
|
|
|
/* 214 */ array(22, ),
|
|
|
|
/* 215 */ array(22, ),
|
|
|
|
/* 216 */ array(2, ),
|
|
|
|
/* 217 */ array(25, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 218 */ array(18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 219 */ array(48, ),
|
|
|
|
/* 220 */ array(18, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 221 */ array(18, ),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 222 */ array(17, ),
|
|
|
|
/* 223 */ array(17, ),
|
|
|
|
/* 224 */ array(29, ),
|
|
|
|
/* 225 */ array(18, ),
|
|
|
|
/* 226 */ array(55, ),
|
|
|
|
/* 227 */ array(18, ),
|
|
|
|
/* 228 */ array(17, ),
|
|
|
|
/* 229 */ array(49, ),
|
|
|
|
/* 230 */ array(18, ),
|
|
|
|
/* 231 */ array(32, ),
|
|
|
|
/* 232 */ array(16, ),
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 233 */ array(),
|
|
|
|
/* 234 */ array(),
|
|
|
|
/* 235 */ array(),
|
|
|
|
/* 236 */ array(),
|
|
|
|
/* 237 */ array(),
|
|
|
|
/* 238 */ array(),
|
|
|
|
/* 239 */ array(),
|
|
|
|
/* 240 */ array(),
|
|
|
|
/* 241 */ array(),
|
|
|
|
/* 242 */ array(),
|
|
|
|
/* 243 */ array(),
|
|
|
|
/* 244 */ array(),
|
|
|
|
/* 245 */ array(),
|
|
|
|
/* 246 */ array(),
|
|
|
|
/* 247 */ array(),
|
|
|
|
/* 248 */ array(),
|
|
|
|
/* 249 */ array(),
|
|
|
|
/* 250 */ array(),
|
|
|
|
/* 251 */ array(),
|
|
|
|
/* 252 */ array(),
|
|
|
|
/* 253 */ array(),
|
|
|
|
/* 254 */ array(),
|
|
|
|
/* 255 */ array(),
|
|
|
|
/* 256 */ array(),
|
|
|
|
/* 257 */ array(),
|
|
|
|
/* 258 */ array(),
|
|
|
|
/* 259 */ array(),
|
|
|
|
/* 260 */ array(),
|
|
|
|
/* 261 */ array(),
|
|
|
|
/* 262 */ array(),
|
|
|
|
/* 263 */ array(),
|
|
|
|
/* 264 */ array(),
|
|
|
|
/* 265 */ array(),
|
|
|
|
/* 266 */ array(),
|
|
|
|
/* 267 */ array(),
|
|
|
|
/* 268 */ array(),
|
|
|
|
/* 269 */ array(),
|
|
|
|
/* 270 */ array(),
|
|
|
|
/* 271 */ array(),
|
|
|
|
/* 272 */ array(),
|
|
|
|
/* 273 */ array(),
|
|
|
|
/* 274 */ array(),
|
|
|
|
/* 275 */ array(),
|
|
|
|
/* 276 */ array(),
|
|
|
|
/* 277 */ array(),
|
|
|
|
/* 278 */ array(),
|
|
|
|
/* 279 */ array(),
|
|
|
|
/* 280 */ array(),
|
|
|
|
/* 281 */ array(),
|
|
|
|
/* 282 */ array(),
|
|
|
|
/* 283 */ array(),
|
|
|
|
/* 284 */ array(),
|
|
|
|
/* 285 */ array(),
|
|
|
|
/* 286 */ array(),
|
|
|
|
/* 287 */ array(),
|
|
|
|
/* 288 */ array(),
|
|
|
|
/* 289 */ array(),
|
|
|
|
/* 290 */ array(),
|
|
|
|
/* 291 */ array(),
|
|
|
|
/* 292 */ array(),
|
|
|
|
/* 293 */ array(),
|
|
|
|
/* 294 */ array(),
|
|
|
|
/* 295 */ array(),
|
|
|
|
/* 296 */ array(),
|
|
|
|
/* 297 */ array(),
|
|
|
|
/* 298 */ array(),
|
|
|
|
/* 299 */ array(),
|
|
|
|
/* 300 */ array(),
|
|
|
|
/* 301 */ array(),
|
|
|
|
/* 302 */ array(),
|
|
|
|
/* 303 */ array(),
|
|
|
|
/* 304 */ array(),
|
|
|
|
/* 305 */ array(),
|
|
|
|
/* 306 */ array(),
|
|
|
|
/* 307 */ array(),
|
|
|
|
/* 308 */ array(),
|
|
|
|
/* 309 */ array(),
|
|
|
|
/* 310 */ array(),
|
|
|
|
/* 311 */ array(),
|
|
|
|
/* 312 */ array(),
|
|
|
|
/* 313 */ array(),
|
|
|
|
/* 314 */ array(),
|
|
|
|
/* 315 */ array(),
|
|
|
|
/* 316 */ array(),
|
|
|
|
/* 317 */ array(),
|
|
|
|
/* 318 */ array(),
|
|
|
|
/* 319 */ array(),
|
|
|
|
/* 320 */ array(),
|
|
|
|
/* 321 */ array(),
|
|
|
|
/* 322 */ array(),
|
|
|
|
/* 323 */ array(),
|
|
|
|
/* 324 */ array(),
|
|
|
|
/* 325 */ array(),
|
|
|
|
/* 326 */ array(),
|
|
|
|
/* 327 */ array(),
|
|
|
|
/* 328 */ array(),
|
|
|
|
/* 329 */ array(),
|
|
|
|
/* 330 */ array(),
|
|
|
|
/* 331 */ array(),
|
|
|
|
/* 332 */ array(),
|
|
|
|
/* 333 */ array(),
|
|
|
|
/* 334 */ array(),
|
|
|
|
/* 335 */ array(),
|
|
|
|
/* 336 */ array(),
|
|
|
|
/* 337 */ array(),
|
|
|
|
/* 338 */ array(),
|
|
|
|
/* 339 */ array(),
|
|
|
|
/* 340 */ array(),
|
|
|
|
/* 341 */ array(),
|
|
|
|
/* 342 */ array(),
|
|
|
|
/* 343 */ array(),
|
|
|
|
/* 344 */ array(),
|
|
|
|
/* 345 */ array(),
|
|
|
|
/* 346 */ array(),
|
|
|
|
/* 347 */ array(),
|
|
|
|
/* 348 */ array(),
|
|
|
|
/* 349 */ array(),
|
|
|
|
/* 350 */ array(),
|
|
|
|
/* 351 */ array(),
|
|
|
|
/* 352 */ array(),
|
|
|
|
/* 353 */ array(),
|
|
|
|
/* 354 */ array(),
|
|
|
|
/* 355 */ array(),
|
|
|
|
/* 356 */ array(),
|
|
|
|
/* 357 */ array(),
|
|
|
|
/* 358 */ array(),
|
|
|
|
/* 359 */ array(),
|
|
|
|
/* 360 */ array(),
|
|
|
|
/* 361 */ array(),
|
|
|
|
/* 362 */ array(),
|
|
|
|
/* 363 */ array(),
|
|
|
|
/* 364 */ array(),
|
|
|
|
/* 365 */ array(),
|
|
|
|
/* 366 */ array(),
|
|
|
|
/* 367 */ array(),
|
|
|
|
/* 368 */ array(),
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 369 */ array(),
|
|
|
|
/* 370 */ array(),
|
|
|
|
/* 371 */ array(),
|
|
|
|
/* 372 */ array(),
|
|
|
|
/* 373 */ array(),
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
|
|
|
static public $yy_default = array(
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 0 */ 377, 551, 568, 522, 522, 568, 568, 568, 568, 568,
|
|
|
|
/* 10 */ 522, 522, 568, 568, 568, 568, 568, 568, 568, 568,
|
|
|
|
/* 20 */ 568, 568, 568, 568, 568, 568, 568, 568, 568, 568,
|
|
|
|
/* 30 */ 568, 568, 568, 568, 568, 568, 568, 568, 568, 568,
|
|
|
|
/* 40 */ 568, 568, 568, 568, 568, 568, 568, 568, 568, 568,
|
|
|
|
/* 50 */ 568, 568, 435, 435, 435, 568, 568, 568, 568, 568,
|
|
|
|
/* 60 */ 568, 568, 568, 568, 568, 568, 521, 568, 444, 553,
|
|
|
|
/* 70 */ 452, 554, 455, 457, 464, 465, 437, 420, 461, 468,
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 80 */ 456, 469, 441, 460, 552, 480, 568, 435, 374, 568,
|
|
|
|
/* 90 */ 451, 534, 568, 435, 435, 435, 568, 568, 568, 495,
|
|
|
|
/* 100 */ 470, 470, 495, 445, 488, 568, 568, 568, 568, 488,
|
|
|
|
/* 110 */ 568, 495, 568, 568, 568, 568, 568, 568, 568, 568,
|
|
|
|
/* 120 */ 568, 568, 435, 531, 435, 488, 435, 568, 528, 435,
|
|
|
|
/* 130 */ 568, 568, 568, 568, 496, 568, 568, 495, 568, 568,
|
|
|
|
/* 140 */ 513, 568, 568, 568, 568, 568, 568, 568, 515, 568,
|
|
|
|
/* 150 */ 514, 568, 493, 568, 568, 568, 568, 568, 512, 568,
|
|
|
|
/* 160 */ 495, 532, 567, 567, 568, 509, 524, 523, 451, 535,
|
|
|
|
/* 170 */ 392, 495, 528, 495, 528, 446, 480, 480, 440, 568,
|
|
|
|
/* 180 */ 445, 480, 445, 480, 445, 568, 568, 568, 568, 507,
|
|
|
|
/* 190 */ 476, 470, 466, 507, 568, 568, 568, 568, 568, 568,
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 200 */ 568, 568, 442, 568, 568, 440, 507, 478, 482, 568,
|
|
|
|
/* 210 */ 568, 568, 568, 568, 568, 568, 507, 470, 568, 445,
|
|
|
|
/* 220 */ 568, 568, 568, 568, 568, 568, 476, 568, 568, 533,
|
|
|
|
/* 230 */ 568, 568, 568, 387, 454, 518, 449, 508, 529, 467,
|
|
|
|
/* 240 */ 530, 432, 516, 471, 517, 474, 483, 500, 501, 526,
|
|
|
|
/* 250 */ 434, 503, 492, 431, 525, 502, 453, 482, 491, 527,
|
|
|
|
/* 260 */ 504, 472, 481, 497, 380, 379, 423, 422, 475, 382,
|
|
|
|
/* 270 */ 381, 447, 418, 477, 376, 375, 439, 479, 485, 378,
|
|
|
|
/* 280 */ 473, 383, 494, 428, 489, 484, 427, 498, 505, 386,
|
|
|
|
/* 290 */ 385, 443, 384, 446, 566, 448, 421, 499, 520, 400,
|
|
|
|
/* 300 */ 541, 540, 542, 543, 544, 433, 401, 410, 539, 537,
|
|
|
|
/* 310 */ 412, 413, 399, 510, 538, 411, 545, 546, 406, 407,
|
|
|
|
/* 320 */ 408, 402, 562, 405, 404, 403, 419, 511, 487, 450,
|
|
|
|
/* 330 */ 547, 490, 417, 409, 424, 536, 398, 391, 550, 549,
|
|
|
|
/* 340 */ 548, 426, 458, 394, 393, 506, 507, 563, 519, 486,
|
|
|
|
/* 350 */ 389, 430, 429, 390, 395, 558, 415, 555, 556, 425,
|
|
|
|
/* 360 */ 462, 414, 463, 416, 557, 397, 561, 564, 565, 559,
|
|
|
|
/* 370 */ 459, 396, 560, 388,
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
|
|
|
const YYNOCODE = 120;
|
|
|
|
const YYSTACKDEPTH = 100;
|
2010-10-13 15:44:03 +00:00
|
|
|
const YYNSTATE = 374;
|
|
|
|
const YYNRULE = 194;
|
2010-09-15 15:17:28 +00:00
|
|
|
const YYERRORSYMBOL = 77;
|
|
|
|
const YYERRSYMDT = 'yy0';
|
|
|
|
const YYFALLBACK = 0;
|
|
|
|
static public $yyFallback = array(
|
|
|
|
);
|
|
|
|
static function Trace($TraceFILE, $zTracePrompt)
|
|
|
|
{
|
|
|
|
if (!$TraceFILE) {
|
|
|
|
$zTracePrompt = 0;
|
|
|
|
} elseif (!$zTracePrompt) {
|
|
|
|
$TraceFILE = 0;
|
|
|
|
}
|
|
|
|
self::$yyTraceFILE = $TraceFILE;
|
|
|
|
self::$yyTracePrompt = $zTracePrompt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static function PrintTrace()
|
|
|
|
{
|
|
|
|
self::$yyTraceFILE = fopen('php://output', 'w');
|
|
|
|
self::$yyTracePrompt = '<br>';
|
|
|
|
}
|
|
|
|
|
|
|
|
static public $yyTraceFILE;
|
|
|
|
static public $yyTracePrompt;
|
|
|
|
public $yyidx; /* Index of top element in stack */
|
|
|
|
public $yyerrcnt; /* Shifts left before out of the error */
|
|
|
|
public $yystack = array(); /* The parser's stack */
|
|
|
|
|
|
|
|
public $yyTokenName = array(
|
|
|
|
'$', 'VERT', 'COLON', 'COMMENT',
|
|
|
|
'PHPSTARTTAG', 'PHPENDTAG', 'ASPSTARTTAG', 'ASPENDTAG',
|
|
|
|
'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LINEBREAK',
|
|
|
|
'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL',
|
|
|
|
'RDEL', 'DOLLAR', 'ID', 'EQUAL',
|
|
|
|
'PTR', 'LDELIF', 'SPACE', 'LDELFOR',
|
|
|
|
'SEMICOLON', 'INCDEC', 'TO', 'STEP',
|
|
|
|
'LDELFOREACH', 'AS', 'APTR', 'LDELSLASH',
|
|
|
|
'INTEGER', 'COMMA', 'MATH', 'UNIMATH',
|
|
|
|
'ANDSYM', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY',
|
|
|
|
'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY',
|
|
|
|
'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY',
|
|
|
|
'INSTANCEOF', 'OPENP', 'CLOSEP', 'QMARK',
|
|
|
|
'NOT', 'TYPECAST', 'HEX', 'DOT',
|
|
|
|
'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', 'HATCH',
|
|
|
|
'OPENB', 'CLOSEB', 'EQUALS', 'NOTEQUALS',
|
|
|
|
'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL',
|
|
|
|
'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND',
|
|
|
|
'LOR', 'LXOR', 'QUOTE', 'BACKTICK',
|
|
|
|
'DOLLARID', 'error', 'start', 'template',
|
|
|
|
'template_element', 'smartytag', 'literal', 'literal_elements',
|
|
|
|
'literal_element', 'value', 'attributes', 'variable',
|
|
|
|
'expr', 'modifierlist', 'ternary', 'varindexed',
|
|
|
|
'statement', 'statements', 'optspace', 'varvar',
|
2010-10-25 18:53:43 +00:00
|
|
|
'foraction', 'array', 'modparameters', 'attribute',
|
|
|
|
'ifcond', 'lop', 'function', 'doublequoted_with_quotes',
|
|
|
|
'static_class_access', 'object', 'arrayindex', 'indexdef',
|
|
|
|
'varvarele', 'objectchain', 'objectelement', 'method',
|
|
|
|
'params', 'modifier', 'modparameter', 'arrayelements',
|
2010-09-15 15:17:28 +00:00
|
|
|
'arrayelement', 'doublequoted', 'doublequotedcontent',
|
|
|
|
);
|
|
|
|
|
|
|
|
static public $yyRuleName = array(
|
|
|
|
/* 0 */ "start ::= template",
|
|
|
|
/* 1 */ "template ::= template_element",
|
|
|
|
/* 2 */ "template ::= template template_element",
|
|
|
|
/* 3 */ "template ::=",
|
|
|
|
/* 4 */ "template_element ::= smartytag",
|
|
|
|
/* 5 */ "template_element ::= COMMENT",
|
|
|
|
/* 6 */ "template_element ::= literal",
|
|
|
|
/* 7 */ "template_element ::= PHPSTARTTAG",
|
|
|
|
/* 8 */ "template_element ::= PHPENDTAG",
|
|
|
|
/* 9 */ "template_element ::= ASPSTARTTAG",
|
|
|
|
/* 10 */ "template_element ::= ASPENDTAG",
|
|
|
|
/* 11 */ "template_element ::= FAKEPHPSTARTTAG",
|
|
|
|
/* 12 */ "template_element ::= XMLTAG",
|
|
|
|
/* 13 */ "template_element ::= OTHER",
|
|
|
|
/* 14 */ "template_element ::= LINEBREAK",
|
|
|
|
/* 15 */ "literal ::= LITERALSTART LITERALEND",
|
|
|
|
/* 16 */ "literal ::= LITERALSTART literal_elements LITERALEND",
|
|
|
|
/* 17 */ "literal_elements ::= literal_elements literal_element",
|
|
|
|
/* 18 */ "literal_elements ::=",
|
|
|
|
/* 19 */ "literal_element ::= literal",
|
|
|
|
/* 20 */ "literal_element ::= LITERAL",
|
|
|
|
/* 21 */ "literal_element ::= PHPSTARTTAG",
|
|
|
|
/* 22 */ "literal_element ::= FAKEPHPSTARTTAG",
|
|
|
|
/* 23 */ "literal_element ::= PHPENDTAG",
|
|
|
|
/* 24 */ "literal_element ::= ASPSTARTTAG",
|
|
|
|
/* 25 */ "literal_element ::= ASPENDTAG",
|
|
|
|
/* 26 */ "smartytag ::= LDEL value RDEL",
|
|
|
|
/* 27 */ "smartytag ::= LDEL value attributes RDEL",
|
|
|
|
/* 28 */ "smartytag ::= LDEL variable attributes RDEL",
|
|
|
|
/* 29 */ "smartytag ::= LDEL expr modifierlist attributes RDEL",
|
|
|
|
/* 30 */ "smartytag ::= LDEL expr attributes RDEL",
|
|
|
|
/* 31 */ "smartytag ::= LDEL ternary attributes RDEL",
|
|
|
|
/* 32 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL",
|
|
|
|
/* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL",
|
|
|
|
/* 34 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL",
|
|
|
|
/* 35 */ "smartytag ::= LDEL DOLLAR ID EQUAL ternary attributes RDEL",
|
|
|
|
/* 36 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
|
|
|
|
/* 37 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL",
|
|
|
|
/* 38 */ "smartytag ::= LDEL ID attributes RDEL",
|
|
|
|
/* 39 */ "smartytag ::= LDEL ID RDEL",
|
|
|
|
/* 40 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
|
|
|
|
/* 41 */ "smartytag ::= LDEL ID modifierlist attributes RDEL",
|
|
|
|
/* 42 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes RDEL",
|
|
|
|
/* 43 */ "smartytag ::= LDELIF SPACE expr RDEL",
|
|
|
|
/* 44 */ "smartytag ::= LDELIF SPACE statement RDEL",
|
|
|
|
/* 45 */ "smartytag ::= LDELFOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL",
|
|
|
|
/* 46 */ "foraction ::= EQUAL expr",
|
|
|
|
/* 47 */ "foraction ::= INCDEC",
|
|
|
|
/* 48 */ "smartytag ::= LDELFOR SPACE statement TO expr attributes RDEL",
|
|
|
|
/* 49 */ "smartytag ::= LDELFOR SPACE statement TO expr STEP expr RDEL",
|
|
|
|
/* 50 */ "smartytag ::= LDELFOREACH attributes RDEL",
|
|
|
|
/* 51 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar RDEL",
|
|
|
|
/* 52 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL",
|
|
|
|
/* 53 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar RDEL",
|
|
|
|
/* 54 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL",
|
|
|
|
/* 55 */ "smartytag ::= LDELSLASH ID RDEL",
|
|
|
|
/* 56 */ "smartytag ::= LDELSLASH ID attributes RDEL",
|
2010-10-25 18:53:43 +00:00
|
|
|
/* 57 */ "smartytag ::= LDELSLASH ID modifierlist modparameters attributes RDEL",
|
2010-09-15 15:17:28 +00:00
|
|
|
/* 58 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",
|
|
|
|
/* 59 */ "attributes ::= attributes attribute",
|
|
|
|
/* 60 */ "attributes ::= attribute",
|
|
|
|
/* 61 */ "attributes ::=",
|
|
|
|
/* 62 */ "attribute ::= SPACE ID EQUAL ID",
|
|
|
|
/* 63 */ "attribute ::= SPACE ID EQUAL expr",
|
|
|
|
/* 64 */ "attribute ::= SPACE ID EQUAL value",
|
|
|
|
/* 65 */ "attribute ::= SPACE ID EQUAL ternary",
|
|
|
|
/* 66 */ "attribute ::= SPACE ID",
|
|
|
|
/* 67 */ "attribute ::= SPACE INTEGER EQUAL expr",
|
|
|
|
/* 68 */ "statements ::= statement",
|
|
|
|
/* 69 */ "statements ::= statements COMMA statement",
|
|
|
|
/* 70 */ "statement ::= DOLLAR varvar EQUAL expr",
|
|
|
|
/* 71 */ "expr ::= value",
|
|
|
|
/* 72 */ "expr ::= DOLLAR ID COLON ID",
|
|
|
|
/* 73 */ "expr ::= expr MATH value",
|
|
|
|
/* 74 */ "expr ::= expr UNIMATH value",
|
|
|
|
/* 75 */ "expr ::= expr ANDSYM value",
|
|
|
|
/* 76 */ "expr ::= array",
|
|
|
|
/* 77 */ "expr ::= expr modifierlist",
|
|
|
|
/* 78 */ "expr ::= expr ifcond expr",
|
|
|
|
/* 79 */ "expr ::= expr ISIN array",
|
|
|
|
/* 80 */ "expr ::= expr ISIN value",
|
|
|
|
/* 81 */ "expr ::= expr lop expr",
|
|
|
|
/* 82 */ "expr ::= expr ISDIVBY expr",
|
|
|
|
/* 83 */ "expr ::= expr ISNOTDIVBY expr",
|
|
|
|
/* 84 */ "expr ::= expr ISEVEN",
|
|
|
|
/* 85 */ "expr ::= expr ISNOTEVEN",
|
|
|
|
/* 86 */ "expr ::= expr ISEVENBY expr",
|
|
|
|
/* 87 */ "expr ::= expr ISNOTEVENBY expr",
|
|
|
|
/* 88 */ "expr ::= expr ISODD",
|
|
|
|
/* 89 */ "expr ::= expr ISNOTODD",
|
|
|
|
/* 90 */ "expr ::= expr ISODDBY expr",
|
|
|
|
/* 91 */ "expr ::= expr ISNOTODDBY expr",
|
|
|
|
/* 92 */ "expr ::= value INSTANCEOF ID",
|
|
|
|
/* 93 */ "expr ::= value INSTANCEOF value",
|
2010-10-13 15:44:03 +00:00
|
|
|
/* 94 */ "ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr",
|
|
|
|
/* 95 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr",
|
|
|
|
/* 96 */ "value ::= variable",
|
|
|
|
/* 97 */ "value ::= UNIMATH value",
|
|
|
|
/* 98 */ "value ::= NOT value",
|
|
|
|
/* 99 */ "value ::= TYPECAST value",
|
|
|
|
/* 100 */ "value ::= variable INCDEC",
|
|
|
|
/* 101 */ "value ::= HEX",
|
|
|
|
/* 102 */ "value ::= INTEGER",
|
|
|
|
/* 103 */ "value ::= INTEGER DOT INTEGER",
|
|
|
|
/* 104 */ "value ::= INTEGER DOT",
|
|
|
|
/* 105 */ "value ::= DOT INTEGER",
|
|
|
|
/* 106 */ "value ::= ID",
|
|
|
|
/* 107 */ "value ::= function",
|
|
|
|
/* 108 */ "value ::= OPENP expr CLOSEP",
|
|
|
|
/* 109 */ "value ::= SINGLEQUOTESTRING",
|
|
|
|
/* 110 */ "value ::= doublequoted_with_quotes",
|
|
|
|
/* 111 */ "value ::= ID DOUBLECOLON static_class_access",
|
|
|
|
/* 112 */ "value ::= varindexed DOUBLECOLON static_class_access",
|
|
|
|
/* 113 */ "value ::= smartytag",
|
|
|
|
/* 114 */ "variable ::= varindexed",
|
|
|
|
/* 115 */ "variable ::= DOLLAR varvar AT ID",
|
|
|
|
/* 116 */ "variable ::= object",
|
|
|
|
/* 117 */ "variable ::= HATCH ID HATCH",
|
|
|
|
/* 118 */ "variable ::= HATCH variable HATCH",
|
|
|
|
/* 119 */ "varindexed ::= DOLLAR varvar arrayindex",
|
|
|
|
/* 120 */ "arrayindex ::= arrayindex indexdef",
|
|
|
|
/* 121 */ "arrayindex ::=",
|
|
|
|
/* 122 */ "indexdef ::= DOT DOLLAR varvar",
|
|
|
|
/* 123 */ "indexdef ::= DOT DOLLAR varvar AT ID",
|
|
|
|
/* 124 */ "indexdef ::= DOT ID",
|
|
|
|
/* 125 */ "indexdef ::= DOT INTEGER",
|
|
|
|
/* 126 */ "indexdef ::= DOT LDEL expr RDEL",
|
|
|
|
/* 127 */ "indexdef ::= OPENB ID CLOSEB",
|
|
|
|
/* 128 */ "indexdef ::= OPENB ID DOT ID CLOSEB",
|
|
|
|
/* 129 */ "indexdef ::= OPENB expr CLOSEB",
|
|
|
|
/* 130 */ "indexdef ::= OPENB CLOSEB",
|
|
|
|
/* 131 */ "varvar ::= varvarele",
|
|
|
|
/* 132 */ "varvar ::= varvar varvarele",
|
|
|
|
/* 133 */ "varvarele ::= ID",
|
|
|
|
/* 134 */ "varvarele ::= LDEL expr RDEL",
|
|
|
|
/* 135 */ "object ::= varindexed objectchain",
|
|
|
|
/* 136 */ "objectchain ::= objectelement",
|
|
|
|
/* 137 */ "objectchain ::= objectchain objectelement",
|
|
|
|
/* 138 */ "objectelement ::= PTR ID arrayindex",
|
|
|
|
/* 139 */ "objectelement ::= PTR DOLLAR varvar arrayindex",
|
|
|
|
/* 140 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",
|
|
|
|
/* 141 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",
|
|
|
|
/* 142 */ "objectelement ::= PTR method",
|
|
|
|
/* 143 */ "function ::= ID OPENP params CLOSEP",
|
|
|
|
/* 144 */ "method ::= ID OPENP params CLOSEP",
|
|
|
|
/* 145 */ "method ::= DOLLAR ID OPENP params CLOSEP",
|
|
|
|
/* 146 */ "params ::= expr COMMA params",
|
|
|
|
/* 147 */ "params ::= expr",
|
|
|
|
/* 148 */ "params ::=",
|
|
|
|
/* 149 */ "modifierlist ::= modifierlist modifier modparameters",
|
|
|
|
/* 150 */ "modifierlist ::= modifier modparameters",
|
|
|
|
/* 151 */ "modifier ::= VERT AT ID",
|
|
|
|
/* 152 */ "modifier ::= VERT ID",
|
|
|
|
/* 153 */ "modparameters ::= modparameters modparameter",
|
|
|
|
/* 154 */ "modparameters ::=",
|
|
|
|
/* 155 */ "modparameter ::= COLON value",
|
|
|
|
/* 156 */ "modparameter ::= COLON array",
|
|
|
|
/* 157 */ "static_class_access ::= method",
|
|
|
|
/* 158 */ "static_class_access ::= method objectchain",
|
|
|
|
/* 159 */ "static_class_access ::= ID",
|
|
|
|
/* 160 */ "static_class_access ::= DOLLAR ID arrayindex",
|
|
|
|
/* 161 */ "static_class_access ::= DOLLAR ID arrayindex objectchain",
|
|
|
|
/* 162 */ "ifcond ::= EQUALS",
|
|
|
|
/* 163 */ "ifcond ::= NOTEQUALS",
|
|
|
|
/* 164 */ "ifcond ::= GREATERTHAN",
|
|
|
|
/* 165 */ "ifcond ::= LESSTHAN",
|
|
|
|
/* 166 */ "ifcond ::= GREATEREQUAL",
|
|
|
|
/* 167 */ "ifcond ::= LESSEQUAL",
|
|
|
|
/* 168 */ "ifcond ::= IDENTITY",
|
|
|
|
/* 169 */ "ifcond ::= NONEIDENTITY",
|
|
|
|
/* 170 */ "ifcond ::= MOD",
|
|
|
|
/* 171 */ "lop ::= LAND",
|
|
|
|
/* 172 */ "lop ::= LOR",
|
|
|
|
/* 173 */ "lop ::= LXOR",
|
|
|
|
/* 174 */ "array ::= OPENB arrayelements CLOSEB",
|
|
|
|
/* 175 */ "arrayelements ::= arrayelement",
|
|
|
|
/* 176 */ "arrayelements ::= arrayelements COMMA arrayelement",
|
|
|
|
/* 177 */ "arrayelements ::=",
|
|
|
|
/* 178 */ "arrayelement ::= value APTR expr",
|
|
|
|
/* 179 */ "arrayelement ::= ID APTR expr",
|
|
|
|
/* 180 */ "arrayelement ::= expr",
|
|
|
|
/* 181 */ "doublequoted_with_quotes ::= QUOTE QUOTE",
|
|
|
|
/* 182 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE",
|
|
|
|
/* 183 */ "doublequoted ::= doublequoted doublequotedcontent",
|
|
|
|
/* 184 */ "doublequoted ::= doublequotedcontent",
|
|
|
|
/* 185 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
|
|
|
|
/* 186 */ "doublequotedcontent ::= BACKTICK expr BACKTICK",
|
|
|
|
/* 187 */ "doublequotedcontent ::= DOLLARID",
|
|
|
|
/* 188 */ "doublequotedcontent ::= LDEL variable RDEL",
|
|
|
|
/* 189 */ "doublequotedcontent ::= LDEL expr RDEL",
|
|
|
|
/* 190 */ "doublequotedcontent ::= smartytag",
|
|
|
|
/* 191 */ "doublequotedcontent ::= OTHER",
|
|
|
|
/* 192 */ "optspace ::= SPACE",
|
|
|
|
/* 193 */ "optspace ::=",
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
function tokenName($tokenType)
|
|
|
|
{
|
|
|
|
if ($tokenType === 0) {
|
|
|
|
return 'End of Input';
|
|
|
|
}
|
|
|
|
if ($tokenType > 0 && $tokenType < count($this->yyTokenName)) {
|
|
|
|
return $this->yyTokenName[$tokenType];
|
|
|
|
} else {
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static function yy_destructor($yymajor, $yypminor)
|
|
|
|
{
|
|
|
|
switch ($yymajor) {
|
|
|
|
default: break; /* If no destructor action specified: do nothing */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_pop_parser_stack()
|
|
|
|
{
|
|
|
|
if (!count($this->yystack)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$yytos = array_pop($this->yystack);
|
|
|
|
if (self::$yyTraceFILE && $this->yyidx >= 0) {
|
|
|
|
fwrite(self::$yyTraceFILE,
|
|
|
|
self::$yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] .
|
|
|
|
"\n");
|
|
|
|
}
|
|
|
|
$yymajor = $yytos->major;
|
|
|
|
self::yy_destructor($yymajor, $yytos->minor);
|
|
|
|
$this->yyidx--;
|
|
|
|
return $yymajor;
|
|
|
|
}
|
|
|
|
|
|
|
|
function __destruct()
|
|
|
|
{
|
|
|
|
while ($this->yystack !== Array()) {
|
|
|
|
$this->yy_pop_parser_stack();
|
|
|
|
}
|
|
|
|
if (is_resource(self::$yyTraceFILE)) {
|
|
|
|
fclose(self::$yyTraceFILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_get_expected_tokens($token)
|
|
|
|
{
|
|
|
|
$state = $this->yystack[$this->yyidx]->stateno;
|
|
|
|
$expected = self::$yyExpectedTokens[$state];
|
|
|
|
if (in_array($token, self::$yyExpectedTokens[$state], true)) {
|
|
|
|
return $expected;
|
|
|
|
}
|
|
|
|
$stack = $this->yystack;
|
|
|
|
$yyidx = $this->yyidx;
|
|
|
|
do {
|
|
|
|
$yyact = $this->yy_find_shift_action($token);
|
|
|
|
if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) {
|
|
|
|
// reduce action
|
|
|
|
$done = 0;
|
|
|
|
do {
|
|
|
|
if ($done++ == 100) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
// too much recursion prevents proper detection
|
|
|
|
// so give up
|
|
|
|
return array_unique($expected);
|
|
|
|
}
|
|
|
|
$yyruleno = $yyact - self::YYNSTATE;
|
|
|
|
$this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs'];
|
|
|
|
$nextstate = $this->yy_find_reduce_action(
|
|
|
|
$this->yystack[$this->yyidx]->stateno,
|
|
|
|
self::$yyRuleInfo[$yyruleno]['lhs']);
|
|
|
|
if (isset(self::$yyExpectedTokens[$nextstate])) {
|
|
|
|
$expected = array_merge($expected, self::$yyExpectedTokens[$nextstate]);
|
|
|
|
if (in_array($token,
|
|
|
|
self::$yyExpectedTokens[$nextstate], true)) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
return array_unique($expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($nextstate < self::YYNSTATE) {
|
|
|
|
// we need to shift a non-terminal
|
|
|
|
$this->yyidx++;
|
|
|
|
$x = new TP_yyStackEntry;
|
|
|
|
$x->stateno = $nextstate;
|
|
|
|
$x->major = self::$yyRuleInfo[$yyruleno]['lhs'];
|
|
|
|
$this->yystack[$this->yyidx] = $x;
|
|
|
|
continue 2;
|
|
|
|
} elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
// the last token was just ignored, we can't accept
|
|
|
|
// by ignoring input, this is in essence ignoring a
|
|
|
|
// syntax error!
|
|
|
|
return array_unique($expected);
|
|
|
|
} elseif ($nextstate === self::YY_NO_ACTION) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
// input accepted, but not shifted (I guess)
|
|
|
|
return $expected;
|
|
|
|
} else {
|
|
|
|
$yyact = $nextstate;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} while (true);
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
return array_unique($expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_is_expected_token($token)
|
|
|
|
{
|
|
|
|
if ($token === 0) {
|
|
|
|
return true; // 0 is not part of this
|
|
|
|
}
|
|
|
|
$state = $this->yystack[$this->yyidx]->stateno;
|
|
|
|
if (in_array($token, self::$yyExpectedTokens[$state], true)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$stack = $this->yystack;
|
|
|
|
$yyidx = $this->yyidx;
|
|
|
|
do {
|
|
|
|
$yyact = $this->yy_find_shift_action($token);
|
|
|
|
if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) {
|
|
|
|
// reduce action
|
|
|
|
$done = 0;
|
|
|
|
do {
|
|
|
|
if ($done++ == 100) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
// too much recursion prevents proper detection
|
|
|
|
// so give up
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$yyruleno = $yyact - self::YYNSTATE;
|
|
|
|
$this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs'];
|
|
|
|
$nextstate = $this->yy_find_reduce_action(
|
|
|
|
$this->yystack[$this->yyidx]->stateno,
|
|
|
|
self::$yyRuleInfo[$yyruleno]['lhs']);
|
|
|
|
if (isset(self::$yyExpectedTokens[$nextstate]) &&
|
|
|
|
in_array($token, self::$yyExpectedTokens[$nextstate], true)) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if ($nextstate < self::YYNSTATE) {
|
|
|
|
// we need to shift a non-terminal
|
|
|
|
$this->yyidx++;
|
|
|
|
$x = new TP_yyStackEntry;
|
|
|
|
$x->stateno = $nextstate;
|
|
|
|
$x->major = self::$yyRuleInfo[$yyruleno]['lhs'];
|
|
|
|
$this->yystack[$this->yyidx] = $x;
|
|
|
|
continue 2;
|
|
|
|
} elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
if (!$token) {
|
|
|
|
// end of input: this is valid
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// the last token was just ignored, we can't accept
|
|
|
|
// by ignoring input, this is in essence ignoring a
|
|
|
|
// syntax error!
|
|
|
|
return false;
|
|
|
|
} elseif ($nextstate === self::YY_NO_ACTION) {
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
// input accepted, but not shifted (I guess)
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
$yyact = $nextstate;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} while (true);
|
|
|
|
$this->yyidx = $yyidx;
|
|
|
|
$this->yystack = $stack;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_find_shift_action($iLookAhead)
|
|
|
|
{
|
|
|
|
$stateno = $this->yystack[$this->yyidx]->stateno;
|
|
|
|
|
|
|
|
/* if ($this->yyidx < 0) return self::YY_NO_ACTION; */
|
|
|
|
if (!isset(self::$yy_shift_ofst[$stateno])) {
|
|
|
|
// no shift actions
|
|
|
|
return self::$yy_default[$stateno];
|
|
|
|
}
|
|
|
|
$i = self::$yy_shift_ofst[$stateno];
|
|
|
|
if ($i === self::YY_SHIFT_USE_DFLT) {
|
|
|
|
return self::$yy_default[$stateno];
|
|
|
|
}
|
|
|
|
if ($iLookAhead == self::YYNOCODE) {
|
|
|
|
return self::YY_NO_ACTION;
|
|
|
|
}
|
|
|
|
$i += $iLookAhead;
|
|
|
|
if ($i < 0 || $i >= self::YY_SZ_ACTTAB ||
|
|
|
|
self::$yy_lookahead[$i] != $iLookAhead) {
|
|
|
|
if (count(self::$yyFallback) && $iLookAhead < count(self::$yyFallback)
|
|
|
|
&& ($iFallback = self::$yyFallback[$iLookAhead]) != 0) {
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fwrite(self::$yyTraceFILE, self::$yyTracePrompt . "FALLBACK " .
|
|
|
|
$this->yyTokenName[$iLookAhead] . " => " .
|
|
|
|
$this->yyTokenName[$iFallback] . "\n");
|
|
|
|
}
|
|
|
|
return $this->yy_find_shift_action($iFallback);
|
|
|
|
}
|
|
|
|
return self::$yy_default[$stateno];
|
|
|
|
} else {
|
|
|
|
return self::$yy_action[$i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_find_reduce_action($stateno, $iLookAhead)
|
|
|
|
{
|
|
|
|
/* $stateno = $this->yystack[$this->yyidx]->stateno; */
|
|
|
|
|
|
|
|
if (!isset(self::$yy_reduce_ofst[$stateno])) {
|
|
|
|
return self::$yy_default[$stateno];
|
|
|
|
}
|
|
|
|
$i = self::$yy_reduce_ofst[$stateno];
|
|
|
|
if ($i == self::YY_REDUCE_USE_DFLT) {
|
|
|
|
return self::$yy_default[$stateno];
|
|
|
|
}
|
|
|
|
if ($iLookAhead == self::YYNOCODE) {
|
|
|
|
return self::YY_NO_ACTION;
|
|
|
|
}
|
|
|
|
$i += $iLookAhead;
|
|
|
|
if ($i < 0 || $i >= self::YY_SZ_ACTTAB ||
|
|
|
|
self::$yy_lookahead[$i] != $iLookAhead) {
|
|
|
|
return self::$yy_default[$stateno];
|
|
|
|
} else {
|
|
|
|
return self::$yy_action[$i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_shift($yyNewState, $yyMajor, $yypMinor)
|
|
|
|
{
|
|
|
|
$this->yyidx++;
|
|
|
|
if ($this->yyidx >= self::YYSTACKDEPTH) {
|
|
|
|
$this->yyidx--;
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sStack Overflow!\n", self::$yyTracePrompt);
|
|
|
|
}
|
|
|
|
while ($this->yyidx >= 0) {
|
|
|
|
$this->yy_pop_parser_stack();
|
|
|
|
}
|
|
|
|
#line 82 "smarty_internal_templateparser.y"
|
|
|
|
|
|
|
|
$this->internalError = true;
|
|
|
|
$this->compiler->trigger_template_error("Stack overflow in template parser");
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 1689 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$yytos = new TP_yyStackEntry;
|
|
|
|
$yytos->stateno = $yyNewState;
|
|
|
|
$yytos->major = $yyMajor;
|
|
|
|
$yytos->minor = $yypMinor;
|
|
|
|
array_push($this->yystack, $yytos);
|
|
|
|
if (self::$yyTraceFILE && $this->yyidx > 0) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sShift %d\n", self::$yyTracePrompt,
|
|
|
|
$yyNewState);
|
|
|
|
fprintf(self::$yyTraceFILE, "%sStack:", self::$yyTracePrompt);
|
|
|
|
for($i = 1; $i <= $this->yyidx; $i++) {
|
|
|
|
fprintf(self::$yyTraceFILE, " %s",
|
|
|
|
$this->yyTokenName[$this->yystack[$i]->major]);
|
|
|
|
}
|
|
|
|
fwrite(self::$yyTraceFILE,"\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static public $yyRuleInfo = array(
|
|
|
|
array( 'lhs' => 78, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 79, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 79, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 79, 'rhs' => 0 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 80, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 82, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 82, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 83, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 83, 'rhs' => 0 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 84, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 5 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 6 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 6 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 6 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 6 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 6 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 5 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 12 ),
|
|
|
|
array( 'lhs' => 96, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 96, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 8 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 10 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 10 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 6 ),
|
|
|
|
array( 'lhs' => 81, 'rhs' => 5 ),
|
|
|
|
array( 'lhs' => 86, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 86, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 86, 'rhs' => 0 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 99, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 99, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 99, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 99, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 99, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 99, 'rhs' => 4 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 93, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 93, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 92, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 88, 'rhs' => 3 ),
|
2010-10-13 15:44:03 +00:00
|
|
|
array( 'lhs' => 90, 'rhs' => 8 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 90, 'rhs' => 7 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 85, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 87, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 87, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 87, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 87, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 87, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 91, 'rhs' => 3 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 106, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 106, 'rhs' => 0 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 5 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 5 ),
|
|
|
|
array( 'lhs' => 107, 'rhs' => 3 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 107, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 95, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 95, 'rhs' => 2 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 108, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 108, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 105, 'rhs' => 2 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 109, 'rhs' => 1 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 109, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 110, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 110, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 110, 'rhs' => 5 ),
|
|
|
|
array( 'lhs' => 110, 'rhs' => 6 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 110, 'rhs' => 2 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 102, 'rhs' => 4 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 111, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 111, 'rhs' => 5 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 112, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 112, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 112, 'rhs' => 0 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 89, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 89, 'rhs' => 2 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 113, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 113, 'rhs' => 2 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 98, 'rhs' => 2 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 98, 'rhs' => 0 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 114, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 114, 'rhs' => 2 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 104, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 104, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 104, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 104, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 104, 'rhs' => 4 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 100, 'rhs' => 1 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 101, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 101, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 101, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 97, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 115, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 115, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 115, 'rhs' => 0 ),
|
|
|
|
array( 'lhs' => 116, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 116, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 116, 'rhs' => 1 ),
|
2010-10-25 18:53:43 +00:00
|
|
|
array( 'lhs' => 103, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 103, 'rhs' => 3 ),
|
2010-09-15 15:17:28 +00:00
|
|
|
array( 'lhs' => 117, 'rhs' => 2 ),
|
|
|
|
array( 'lhs' => 117, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 3 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 118, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 94, 'rhs' => 1 ),
|
|
|
|
array( 'lhs' => 94, 'rhs' => 0 ),
|
|
|
|
);
|
|
|
|
|
|
|
|
static public $yyReduceMap = array(
|
|
|
|
0 => 0,
|
|
|
|
1 => 1,
|
|
|
|
2 => 1,
|
|
|
|
4 => 4,
|
|
|
|
5 => 5,
|
|
|
|
6 => 6,
|
|
|
|
7 => 7,
|
|
|
|
8 => 8,
|
|
|
|
9 => 9,
|
|
|
|
10 => 10,
|
|
|
|
11 => 11,
|
|
|
|
12 => 12,
|
|
|
|
13 => 13,
|
|
|
|
14 => 14,
|
|
|
|
15 => 15,
|
|
|
|
18 => 15,
|
|
|
|
16 => 16,
|
|
|
|
17 => 17,
|
2010-10-13 15:44:03 +00:00
|
|
|
97 => 17,
|
2010-09-15 15:17:28 +00:00
|
|
|
99 => 17,
|
2010-10-13 15:44:03 +00:00
|
|
|
100 => 17,
|
|
|
|
158 => 17,
|
2010-09-15 15:17:28 +00:00
|
|
|
19 => 19,
|
|
|
|
20 => 19,
|
|
|
|
71 => 19,
|
2010-10-13 15:44:03 +00:00
|
|
|
96 => 19,
|
2010-09-15 15:17:28 +00:00
|
|
|
101 => 19,
|
2010-10-13 15:44:03 +00:00
|
|
|
102 => 19,
|
|
|
|
107 => 19,
|
2010-09-15 15:17:28 +00:00
|
|
|
109 => 19,
|
2010-10-13 15:44:03 +00:00
|
|
|
110 => 19,
|
|
|
|
116 => 19,
|
|
|
|
157 => 19,
|
|
|
|
175 => 19,
|
2010-09-15 15:17:28 +00:00
|
|
|
21 => 21,
|
|
|
|
22 => 21,
|
|
|
|
23 => 23,
|
|
|
|
24 => 24,
|
|
|
|
25 => 25,
|
|
|
|
26 => 26,
|
|
|
|
27 => 27,
|
|
|
|
28 => 27,
|
|
|
|
30 => 27,
|
|
|
|
31 => 27,
|
|
|
|
29 => 29,
|
|
|
|
32 => 32,
|
|
|
|
33 => 32,
|
|
|
|
34 => 34,
|
|
|
|
35 => 34,
|
|
|
|
36 => 36,
|
|
|
|
37 => 36,
|
|
|
|
38 => 38,
|
|
|
|
39 => 39,
|
|
|
|
40 => 40,
|
|
|
|
41 => 41,
|
|
|
|
42 => 42,
|
|
|
|
43 => 43,
|
|
|
|
44 => 43,
|
|
|
|
45 => 45,
|
|
|
|
46 => 46,
|
|
|
|
47 => 47,
|
|
|
|
60 => 47,
|
2010-10-13 15:44:03 +00:00
|
|
|
147 => 47,
|
|
|
|
159 => 47,
|
|
|
|
180 => 47,
|
2010-09-15 15:17:28 +00:00
|
|
|
48 => 48,
|
|
|
|
49 => 49,
|
|
|
|
50 => 50,
|
|
|
|
51 => 51,
|
|
|
|
52 => 52,
|
|
|
|
53 => 53,
|
|
|
|
54 => 54,
|
|
|
|
55 => 55,
|
|
|
|
56 => 56,
|
|
|
|
57 => 57,
|
|
|
|
58 => 58,
|
|
|
|
59 => 59,
|
|
|
|
61 => 61,
|
|
|
|
62 => 62,
|
|
|
|
63 => 63,
|
|
|
|
64 => 63,
|
|
|
|
65 => 63,
|
|
|
|
66 => 66,
|
|
|
|
67 => 67,
|
|
|
|
68 => 68,
|
2010-10-25 18:53:43 +00:00
|
|
|
151 => 68,
|
2010-09-15 15:17:28 +00:00
|
|
|
69 => 69,
|
|
|
|
70 => 70,
|
|
|
|
72 => 72,
|
|
|
|
73 => 73,
|
|
|
|
74 => 73,
|
|
|
|
75 => 73,
|
|
|
|
76 => 76,
|
2010-10-13 15:44:03 +00:00
|
|
|
131 => 76,
|
|
|
|
192 => 76,
|
2010-09-15 15:17:28 +00:00
|
|
|
77 => 77,
|
|
|
|
78 => 78,
|
|
|
|
81 => 78,
|
|
|
|
92 => 78,
|
|
|
|
79 => 79,
|
|
|
|
80 => 80,
|
|
|
|
82 => 82,
|
|
|
|
83 => 83,
|
|
|
|
84 => 84,
|
|
|
|
89 => 84,
|
|
|
|
85 => 85,
|
|
|
|
88 => 85,
|
|
|
|
86 => 86,
|
|
|
|
91 => 86,
|
|
|
|
87 => 87,
|
|
|
|
90 => 87,
|
|
|
|
93 => 93,
|
|
|
|
94 => 94,
|
2010-10-13 15:44:03 +00:00
|
|
|
95 => 95,
|
|
|
|
98 => 98,
|
2010-09-15 15:17:28 +00:00
|
|
|
103 => 103,
|
|
|
|
104 => 104,
|
|
|
|
105 => 105,
|
2010-10-13 15:44:03 +00:00
|
|
|
106 => 106,
|
|
|
|
108 => 108,
|
2010-09-15 15:17:28 +00:00
|
|
|
111 => 111,
|
|
|
|
112 => 112,
|
|
|
|
113 => 113,
|
|
|
|
114 => 114,
|
2010-10-13 15:44:03 +00:00
|
|
|
115 => 115,
|
2010-09-15 15:17:28 +00:00
|
|
|
117 => 117,
|
|
|
|
118 => 118,
|
|
|
|
119 => 119,
|
|
|
|
120 => 120,
|
|
|
|
121 => 121,
|
|
|
|
122 => 122,
|
|
|
|
123 => 123,
|
|
|
|
124 => 124,
|
|
|
|
125 => 125,
|
|
|
|
126 => 126,
|
2010-10-13 15:44:03 +00:00
|
|
|
129 => 126,
|
2010-09-15 15:17:28 +00:00
|
|
|
127 => 127,
|
2010-10-13 15:44:03 +00:00
|
|
|
128 => 128,
|
|
|
|
130 => 130,
|
2010-09-15 15:17:28 +00:00
|
|
|
132 => 132,
|
|
|
|
133 => 133,
|
|
|
|
134 => 134,
|
|
|
|
135 => 135,
|
|
|
|
136 => 136,
|
|
|
|
137 => 137,
|
|
|
|
138 => 138,
|
|
|
|
139 => 139,
|
|
|
|
140 => 140,
|
|
|
|
141 => 141,
|
|
|
|
142 => 142,
|
|
|
|
143 => 143,
|
|
|
|
144 => 144,
|
|
|
|
145 => 145,
|
2010-10-13 15:44:03 +00:00
|
|
|
146 => 146,
|
2010-09-15 15:17:28 +00:00
|
|
|
148 => 148,
|
|
|
|
149 => 149,
|
2010-10-13 15:44:03 +00:00
|
|
|
150 => 150,
|
2010-09-15 15:17:28 +00:00
|
|
|
152 => 152,
|
|
|
|
153 => 153,
|
|
|
|
154 => 154,
|
2010-10-13 15:44:03 +00:00
|
|
|
155 => 155,
|
|
|
|
156 => 155,
|
2010-09-15 15:17:28 +00:00
|
|
|
160 => 160,
|
|
|
|
161 => 161,
|
|
|
|
162 => 162,
|
|
|
|
163 => 163,
|
|
|
|
164 => 164,
|
|
|
|
165 => 165,
|
|
|
|
166 => 166,
|
|
|
|
167 => 167,
|
|
|
|
168 => 168,
|
|
|
|
169 => 169,
|
|
|
|
170 => 170,
|
|
|
|
171 => 171,
|
|
|
|
172 => 172,
|
|
|
|
173 => 173,
|
2010-10-13 15:44:03 +00:00
|
|
|
174 => 174,
|
2010-09-15 15:17:28 +00:00
|
|
|
176 => 176,
|
|
|
|
177 => 177,
|
|
|
|
178 => 178,
|
2010-10-13 15:44:03 +00:00
|
|
|
179 => 179,
|
2010-09-15 15:17:28 +00:00
|
|
|
181 => 181,
|
|
|
|
182 => 182,
|
|
|
|
183 => 183,
|
|
|
|
184 => 184,
|
2010-10-13 15:44:03 +00:00
|
|
|
185 => 185,
|
|
|
|
186 => 185,
|
|
|
|
188 => 185,
|
|
|
|
187 => 187,
|
2010-09-15 15:17:28 +00:00
|
|
|
189 => 189,
|
|
|
|
190 => 190,
|
2010-10-13 15:44:03 +00:00
|
|
|
191 => 191,
|
2010-10-25 18:53:43 +00:00
|
|
|
193 => 193,
|
2010-09-15 15:17:28 +00:00
|
|
|
);
|
|
|
|
#line 93 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r0(){ $this->_retvalue = $this->root_buffer->to_smarty_php(); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2103 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 99 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r1(){ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2106 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 111 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r4(){
|
|
|
|
if ($this->compiler->has_code) {
|
|
|
|
$tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array();
|
|
|
|
$this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true));
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
|
|
|
|
}
|
|
|
|
$this->compiler->has_variable_string = false;
|
|
|
|
$this->block_nesting_level = count($this->compiler->_tag_stack);
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2118 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 123 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r5(){ $this->_retvalue = new _smarty_tag($this, ''); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2121 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 126 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r6(){ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2124 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 129 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r7(){
|
|
|
|
if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
|
|
|
|
} elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<?php', true));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '');
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2137 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 141 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r8(){if ($this->is_xml) {
|
|
|
|
$this->compiler->tag_nocache = true;
|
|
|
|
$this->is_xml = true;
|
|
|
|
$this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '?>';?>", $this->compiler, true));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '?<?php ?>>');
|
|
|
|
} elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, htmlspecialchars('?>', ENT_QUOTES));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('?>', true));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '');
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2153 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 157 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r9(){
|
|
|
|
if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '<<?php ?>%');
|
|
|
|
} elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
|
|
|
|
if ($this->asp_tags) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<%', true));
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '<<?php ?>%');
|
|
|
|
}
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) {
|
|
|
|
if ($this->asp_tags) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '');
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '<<?php ?>%');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2174 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 178 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r10(){
|
|
|
|
if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '%<?php ?>>');
|
|
|
|
} elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, htmlspecialchars('%>', ENT_QUOTES));
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_ALLOW) {
|
|
|
|
if ($this->asp_tags) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('%>', true));
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '%<?php ?>>');
|
|
|
|
}
|
|
|
|
}elseif ($this->sec_obj->php_handling == SMARTY_PHP_REMOVE) {
|
|
|
|
if ($this->asp_tags) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '');
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_text($this, '%<?php ?>>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2195 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 198 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r11(){if ($this->lex->strip) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)));
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2203 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 206 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r12(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2206 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 209 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r13(){if ($this->lex->strip) {
|
|
|
|
$this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor));
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2214 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 215 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r14(){
|
|
|
|
$this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor);
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2219 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 220 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r15(){ $this->_retvalue = ''; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2222 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 221 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2225 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 223 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r17(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2228 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 226 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r19(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2231 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 228 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r21(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2234 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 230 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r23(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2237 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 231 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r24(){ $this->_retvalue = '<<?php ?>%'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2240 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 232 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r25(){ $this->_retvalue = '%<?php ?>>'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2243 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 240 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r26(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2246 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 241 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2249 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 243 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -3]->minor,'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2252 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 253 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r32(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2255 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 255 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r34(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2258 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 257 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r36(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2261 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 260 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r38(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2264 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 261 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r39(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2267 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 263 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r40(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2270 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 265 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r41(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
|
|
|
|
$this->_retvalue .= $this->compiler->compileTag('private_modifier',array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>';
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2275 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 269 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r42(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -3]->minor),$this->yystack[$this->yyidx + -1]->minor)).'<?php echo ';
|
|
|
|
$this->_retvalue .= $this->compiler->compileTag('private_modifier',array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>';
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2280 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 273 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r43(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2283 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 276 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r45(){
|
|
|
|
$this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2287 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 279 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r46(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2290 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 280 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r47(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2293 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 281 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r48(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2296 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 282 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r49(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2299 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 284 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r50(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2302 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 286 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r51(){
|
|
|
|
$this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2306 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 288 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r52(){
|
|
|
|
$this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2310 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 290 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r53(){
|
|
|
|
$this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2314 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 292 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r54(){
|
|
|
|
$this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2318 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 296 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2321 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 297 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r56(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2324 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 298 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r57(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
|
2010-10-25 18:53:43 +00:00
|
|
|
$this->_retvalue .= $this->compiler->compileTag('private_modifier',array('modifierlist'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>';
|
2010-09-15 15:17:28 +00:00
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2329 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 302 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2332 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 308 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r59(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2335 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 312 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r61(){ $this->_retvalue = array(); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2338 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 315 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r62(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
|
|
|
|
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true');
|
|
|
|
} elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
|
|
|
|
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false');
|
|
|
|
} elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
|
|
|
|
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null');
|
|
|
|
} else
|
|
|
|
$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2348 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 323 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2351 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 326 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r66(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2354 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 327 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r67(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2357 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 333 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r68(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2360 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 334 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r69(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2363 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 336 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r70(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2366 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 345 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r72(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2369 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 347 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2372 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
#line 353 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r76(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2375 "smarty_internal_templateparser.php"
|
|
|
|
#line 356 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r77(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'modifierlist'=>$this->yystack[$this->yyidx + 0]->minor)); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2378 "smarty_internal_templateparser.php"
|
|
|
|
#line 360 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r78(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2381 "smarty_internal_templateparser.php"
|
|
|
|
#line 361 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r79(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2384 "smarty_internal_templateparser.php"
|
|
|
|
#line 362 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r80(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2387 "smarty_internal_templateparser.php"
|
|
|
|
#line 364 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r82(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2390 "smarty_internal_templateparser.php"
|
|
|
|
#line 365 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r83(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2393 "smarty_internal_templateparser.php"
|
|
|
|
#line 366 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r84(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2396 "smarty_internal_templateparser.php"
|
|
|
|
#line 367 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r85(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2399 "smarty_internal_templateparser.php"
|
|
|
|
#line 368 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r86(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2402 "smarty_internal_templateparser.php"
|
|
|
|
#line 369 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r87(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2405 "smarty_internal_templateparser.php"
|
|
|
|
#line 375 "smarty_internal_templateparser.y"
|
2010-09-15 15:17:28 +00:00
|
|
|
function yy_r93(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2408 "smarty_internal_templateparser.php"
|
|
|
|
#line 381 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.' ? $_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'\')->value : '.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + -2]->minor', null, true, false)->nocache; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2411 "smarty_internal_templateparser.php"
|
|
|
|
#line 382 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r95(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2414 "smarty_internal_templateparser.php"
|
|
|
|
#line 389 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r98(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2417 "smarty_internal_templateparser.php"
|
|
|
|
#line 395 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r103(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2420 "smarty_internal_templateparser.php"
|
|
|
|
#line 396 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2423 "smarty_internal_templateparser.php"
|
|
|
|
#line 397 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r105(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2426 "smarty_internal_templateparser.php"
|
|
|
|
#line 399 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r106(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->_retvalue = 'true';
|
|
|
|
} elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
|
|
|
|
$this->_retvalue = 'false';
|
|
|
|
} elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
|
|
|
|
$this->_retvalue = 'null';
|
|
|
|
} else
|
|
|
|
$this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2436 "smarty_internal_templateparser.php"
|
|
|
|
#line 410 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r108(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2439 "smarty_internal_templateparser.php"
|
|
|
|
#line 416 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r111(){if ((!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) {
|
2010-09-15 15:17:28 +00:00
|
|
|
if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) {
|
|
|
|
$this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor].'::'.$this->yystack[$this->yyidx + 0]->minor;
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->compiler->trigger_template_error ("static class '".$this->yystack[$this->yyidx + -2]->minor."' is undefined or not allowed by security setting");
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2451 "smarty_internal_templateparser.php"
|
|
|
|
#line 426 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r112(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else {
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2455 "smarty_internal_templateparser.php"
|
|
|
|
#line 429 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r113(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2458 "smarty_internal_templateparser.php"
|
|
|
|
#line 438 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r114(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);
|
2010-09-15 15:17:28 +00:00
|
|
|
} else {
|
|
|
|
if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) {
|
2010-10-20 18:28:04 +00:00
|
|
|
$this->_retvalue = '(isset($_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'].') ? $_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'].' : null)';
|
|
|
|
} else {
|
|
|
|
if (isset($this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'])) {
|
|
|
|
$this->_retvalue = '(isset($_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'].') ? $_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'].' : null)';
|
2010-09-15 15:17:28 +00:00
|
|
|
} else {
|
2010-10-20 18:28:04 +00:00
|
|
|
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
|
2010-09-15 15:17:28 +00:00
|
|
|
}
|
2010-10-20 18:28:04 +00:00
|
|
|
}
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2472 "smarty_internal_templateparser.php"
|
|
|
|
#line 451 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r115(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) {
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor;
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor;
|
|
|
|
}
|
|
|
|
$this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2480 "smarty_internal_templateparser.php"
|
|
|
|
#line 460 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r117(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2483 "smarty_internal_templateparser.php"
|
|
|
|
#line 461 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r118(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2486 "smarty_internal_templateparser.php"
|
|
|
|
#line 464 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r119(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2489 "smarty_internal_templateparser.php"
|
|
|
|
#line 470 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r120(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2492 "smarty_internal_templateparser.php"
|
|
|
|
#line 472 "smarty_internal_templateparser.y"
|
2010-10-20 18:28:04 +00:00
|
|
|
function yy_r121(){return; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2495 "smarty_internal_templateparser.php"
|
|
|
|
#line 476 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r122(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2498 "smarty_internal_templateparser.php"
|
|
|
|
#line 477 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r123(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2501 "smarty_internal_templateparser.php"
|
|
|
|
#line 478 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r124(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2504 "smarty_internal_templateparser.php"
|
|
|
|
#line 479 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r125(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2507 "smarty_internal_templateparser.php"
|
|
|
|
#line 480 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r126(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2510 "smarty_internal_templateparser.php"
|
|
|
|
#line 482 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r127(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2513 "smarty_internal_templateparser.php"
|
|
|
|
#line 483 "smarty_internal_templateparser.y"
|
2010-10-20 18:28:04 +00:00
|
|
|
function yy_r128(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2516 "smarty_internal_templateparser.php"
|
|
|
|
#line 487 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r130(){$this->_retvalue = '[]'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2519 "smarty_internal_templateparser.php"
|
|
|
|
#line 495 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r132(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2522 "smarty_internal_templateparser.php"
|
|
|
|
#line 497 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r133(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2525 "smarty_internal_templateparser.php"
|
|
|
|
#line 499 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r134(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2528 "smarty_internal_templateparser.php"
|
|
|
|
#line 504 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r135(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else {
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2532 "smarty_internal_templateparser.php"
|
|
|
|
#line 507 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2535 "smarty_internal_templateparser.php"
|
|
|
|
#line 509 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r137(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2538 "smarty_internal_templateparser.php"
|
|
|
|
#line 511 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r138(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2541 "smarty_internal_templateparser.php"
|
|
|
|
#line 512 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r139(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2544 "smarty_internal_templateparser.php"
|
|
|
|
#line 513 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r140(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2547 "smarty_internal_templateparser.php"
|
|
|
|
#line 514 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r141(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2550 "smarty_internal_templateparser.php"
|
|
|
|
#line 516 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r142(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2553 "smarty_internal_templateparser.php"
|
|
|
|
#line 522 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r143(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {
|
2010-09-15 15:17:28 +00:00
|
|
|
if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) {
|
2010-10-20 18:28:04 +00:00
|
|
|
if ($this->yystack[$this->yyidx + -3]->minor == 'isset') {
|
|
|
|
$this->_retvalue = '('. $this->yystack[$this->yyidx + -1]->minor .' !== null)';
|
|
|
|
} elseif ($this->yystack[$this->yyidx + -3]->minor == 'empty'){
|
|
|
|
$this->_retvalue = 'in_array('. $this->yystack[$this->yyidx + -1]->minor .',array("",null,false,0,"0",array()))';
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")";
|
|
|
|
}
|
2010-09-15 15:17:28 +00:00
|
|
|
} else {
|
|
|
|
$this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
|
|
|
|
}
|
|
|
|
} }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2568 "smarty_internal_templateparser.php"
|
|
|
|
#line 539 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r144(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2571 "smarty_internal_templateparser.php"
|
|
|
|
#line 540 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r145(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2574 "smarty_internal_templateparser.php"
|
|
|
|
#line 544 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r146(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2577 "smarty_internal_templateparser.php"
|
|
|
|
#line 548 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r148(){ return; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2580 "smarty_internal_templateparser.php"
|
|
|
|
#line 553 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r149(){$this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor))); }
|
|
|
|
#line 2583 "smarty_internal_templateparser.php"
|
|
|
|
#line 554 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r150(){$this->_retvalue = array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor)); }
|
|
|
|
#line 2586 "smarty_internal_templateparser.php"
|
|
|
|
#line 557 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r152(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
|
|
|
|
#line 2589 "smarty_internal_templateparser.php"
|
|
|
|
#line 562 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r153(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }
|
|
|
|
#line 2592 "smarty_internal_templateparser.php"
|
2010-10-20 18:28:04 +00:00
|
|
|
#line 564 "smarty_internal_templateparser.y"
|
2010-10-25 18:53:43 +00:00
|
|
|
function yy_r154(){$this->_retvalue = array(); }
|
|
|
|
#line 2595 "smarty_internal_templateparser.php"
|
2010-10-20 18:28:04 +00:00
|
|
|
#line 566 "smarty_internal_templateparser.y"
|
2010-10-25 18:53:43 +00:00
|
|
|
function yy_r155(){$this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
|
|
|
|
#line 2598 "smarty_internal_templateparser.php"
|
|
|
|
#line 576 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r160(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2601 "smarty_internal_templateparser.php"
|
|
|
|
#line 578 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r161(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2604 "smarty_internal_templateparser.php"
|
|
|
|
#line 587 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r162(){$this->_retvalue = '=='; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2607 "smarty_internal_templateparser.php"
|
|
|
|
#line 588 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r163(){$this->_retvalue = '!='; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2610 "smarty_internal_templateparser.php"
|
|
|
|
#line 589 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r164(){$this->_retvalue = '>'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2613 "smarty_internal_templateparser.php"
|
|
|
|
#line 590 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r165(){$this->_retvalue = '<'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2616 "smarty_internal_templateparser.php"
|
|
|
|
#line 591 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r166(){$this->_retvalue = '>='; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2619 "smarty_internal_templateparser.php"
|
|
|
|
#line 592 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r167(){$this->_retvalue = '<='; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2622 "smarty_internal_templateparser.php"
|
|
|
|
#line 593 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r168(){$this->_retvalue = '==='; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2625 "smarty_internal_templateparser.php"
|
|
|
|
#line 594 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r169(){$this->_retvalue = '!=='; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2628 "smarty_internal_templateparser.php"
|
|
|
|
#line 595 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r170(){$this->_retvalue = '%'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2631 "smarty_internal_templateparser.php"
|
|
|
|
#line 597 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r171(){$this->_retvalue = '&&'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2634 "smarty_internal_templateparser.php"
|
|
|
|
#line 598 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r172(){$this->_retvalue = '||'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2637 "smarty_internal_templateparser.php"
|
|
|
|
#line 599 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r173(){$this->_retvalue = ' XOR '; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2640 "smarty_internal_templateparser.php"
|
|
|
|
#line 604 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r174(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2643 "smarty_internal_templateparser.php"
|
|
|
|
#line 606 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r176(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2646 "smarty_internal_templateparser.php"
|
|
|
|
#line 607 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r177(){ return; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2649 "smarty_internal_templateparser.php"
|
|
|
|
#line 608 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r178(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2652 "smarty_internal_templateparser.php"
|
|
|
|
#line 609 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r179(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2655 "smarty_internal_templateparser.php"
|
|
|
|
#line 616 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r181(){ $this->_retvalue = "''"; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2658 "smarty_internal_templateparser.php"
|
|
|
|
#line 617 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r182(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2661 "smarty_internal_templateparser.php"
|
|
|
|
#line 619 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r183(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2664 "smarty_internal_templateparser.php"
|
|
|
|
#line 620 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r184(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2667 "smarty_internal_templateparser.php"
|
|
|
|
#line 622 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r185(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2670 "smarty_internal_templateparser.php"
|
|
|
|
#line 624 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r187(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) {
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value');
|
|
|
|
} else {
|
|
|
|
$this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value');
|
|
|
|
}
|
|
|
|
$this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache;
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2679 "smarty_internal_templateparser.php"
|
|
|
|
#line 632 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r189(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2682 "smarty_internal_templateparser.php"
|
|
|
|
#line 633 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r190(){
|
2010-09-15 15:17:28 +00:00
|
|
|
$this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
|
|
|
|
}
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2687 "smarty_internal_templateparser.php"
|
|
|
|
#line 636 "smarty_internal_templateparser.y"
|
2010-10-13 15:44:03 +00:00
|
|
|
function yy_r191(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); }
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2690 "smarty_internal_templateparser.php"
|
|
|
|
#line 643 "smarty_internal_templateparser.y"
|
|
|
|
function yy_r193(){$this->_retvalue = ''; }
|
|
|
|
#line 2693 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
|
|
|
|
private $_retvalue;
|
|
|
|
|
|
|
|
function yy_reduce($yyruleno)
|
|
|
|
{
|
|
|
|
$yymsp = $this->yystack[$this->yyidx];
|
|
|
|
if (self::$yyTraceFILE && $yyruleno >= 0
|
|
|
|
&& $yyruleno < count(self::$yyRuleName)) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n",
|
|
|
|
self::$yyTracePrompt, $yyruleno,
|
|
|
|
self::$yyRuleName[$yyruleno]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_retvalue = $yy_lefthand_side = null;
|
|
|
|
if (array_key_exists($yyruleno, self::$yyReduceMap)) {
|
|
|
|
// call the action
|
|
|
|
$this->_retvalue = null;
|
|
|
|
$this->{'yy_r' . self::$yyReduceMap[$yyruleno]}();
|
|
|
|
$yy_lefthand_side = $this->_retvalue;
|
|
|
|
}
|
|
|
|
$yygoto = self::$yyRuleInfo[$yyruleno]['lhs'];
|
|
|
|
$yysize = self::$yyRuleInfo[$yyruleno]['rhs'];
|
|
|
|
$this->yyidx -= $yysize;
|
|
|
|
for($i = $yysize; $i; $i--) {
|
|
|
|
// pop all of the right-hand side parameters
|
|
|
|
array_pop($this->yystack);
|
|
|
|
}
|
|
|
|
$yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto);
|
|
|
|
if ($yyact < self::YYNSTATE) {
|
|
|
|
if (!self::$yyTraceFILE && $yysize) {
|
|
|
|
$this->yyidx++;
|
|
|
|
$x = new TP_yyStackEntry;
|
|
|
|
$x->stateno = $yyact;
|
|
|
|
$x->major = $yygoto;
|
|
|
|
$x->minor = $yy_lefthand_side;
|
|
|
|
$this->yystack[$this->yyidx] = $x;
|
|
|
|
} else {
|
|
|
|
$this->yy_shift($yyact, $yygoto, $yy_lefthand_side);
|
|
|
|
}
|
|
|
|
} elseif ($yyact == self::YYNSTATE + self::YYNRULE + 1) {
|
|
|
|
$this->yy_accept();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_parse_failed()
|
|
|
|
{
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt);
|
|
|
|
}
|
|
|
|
while ($this->yyidx >= 0) {
|
|
|
|
$this->yy_pop_parser_stack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function yy_syntax_error($yymajor, $TOKEN)
|
|
|
|
{
|
|
|
|
#line 75 "smarty_internal_templateparser.y"
|
|
|
|
|
|
|
|
$this->internalError = true;
|
|
|
|
$this->yymajor = $yymajor;
|
|
|
|
$this->compiler->trigger_template_error();
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2756 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function yy_accept()
|
|
|
|
{
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt);
|
|
|
|
}
|
|
|
|
while ($this->yyidx >= 0) {
|
|
|
|
$stack = $this->yy_pop_parser_stack();
|
|
|
|
}
|
|
|
|
#line 67 "smarty_internal_templateparser.y"
|
|
|
|
|
|
|
|
$this->successful = !$this->internalError;
|
|
|
|
$this->internalError = false;
|
|
|
|
$this->retvalue = $this->_retvalue;
|
|
|
|
//echo $this->retvalue."\n\n";
|
2010-10-25 18:53:43 +00:00
|
|
|
#line 2774 "smarty_internal_templateparser.php"
|
2010-09-15 15:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doParse($yymajor, $yytokenvalue)
|
|
|
|
{
|
|
|
|
$yyerrorhit = 0; /* True if yymajor has invoked an error */
|
|
|
|
|
|
|
|
if ($this->yyidx === null || $this->yyidx < 0) {
|
|
|
|
$this->yyidx = 0;
|
|
|
|
$this->yyerrcnt = -1;
|
|
|
|
$x = new TP_yyStackEntry;
|
|
|
|
$x->stateno = 0;
|
|
|
|
$x->major = 0;
|
|
|
|
$this->yystack = array();
|
|
|
|
array_push($this->yystack, $x);
|
|
|
|
}
|
|
|
|
$yyendofinput = ($yymajor==0);
|
|
|
|
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sInput %s\n",
|
|
|
|
self::$yyTracePrompt, $this->yyTokenName[$yymajor]);
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
$yyact = $this->yy_find_shift_action($yymajor);
|
|
|
|
if ($yymajor < self::YYERRORSYMBOL &&
|
|
|
|
!$this->yy_is_expected_token($yymajor)) {
|
|
|
|
// force a syntax error
|
|
|
|
$yyact = self::YY_ERROR_ACTION;
|
|
|
|
}
|
|
|
|
if ($yyact < self::YYNSTATE) {
|
|
|
|
$this->yy_shift($yyact, $yymajor, $yytokenvalue);
|
|
|
|
$this->yyerrcnt--;
|
|
|
|
if ($yyendofinput && $this->yyidx >= 0) {
|
|
|
|
$yymajor = 0;
|
|
|
|
} else {
|
|
|
|
$yymajor = self::YYNOCODE;
|
|
|
|
}
|
|
|
|
} elseif ($yyact < self::YYNSTATE + self::YYNRULE) {
|
|
|
|
$this->yy_reduce($yyact - self::YYNSTATE);
|
|
|
|
} elseif ($yyact == self::YY_ERROR_ACTION) {
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sSyntax Error!\n",
|
|
|
|
self::$yyTracePrompt);
|
|
|
|
}
|
|
|
|
if (self::YYERRORSYMBOL) {
|
|
|
|
if ($this->yyerrcnt < 0) {
|
|
|
|
$this->yy_syntax_error($yymajor, $yytokenvalue);
|
|
|
|
}
|
|
|
|
$yymx = $this->yystack[$this->yyidx]->major;
|
|
|
|
if ($yymx == self::YYERRORSYMBOL || $yyerrorhit ){
|
|
|
|
if (self::$yyTraceFILE) {
|
|
|
|
fprintf(self::$yyTraceFILE, "%sDiscard input token %s\n",
|
|
|
|
self::$yyTracePrompt, $this->yyTokenName[$yymajor]);
|
|
|
|
}
|
|
|
|
$this->yy_destructor($yymajor, $yytokenvalue);
|
|
|
|
$yymajor = self::YYNOCODE;
|
|
|
|
} else {
|
|
|
|
while ($this->yyidx >= 0 &&
|
|
|
|
$yymx != self::YYERRORSYMBOL &&
|
|
|
|
($yyact = $this->yy_find_shift_action(self::YYERRORSYMBOL)) >= self::YYNSTATE
|
|
|
|
){
|
|
|
|
$this->yy_pop_parser_stack();
|
|
|
|
}
|
|
|
|
if ($this->yyidx < 0 || $yymajor==0) {
|
|
|
|
$this->yy_destructor($yymajor, $yytokenvalue);
|
|
|
|
$this->yy_parse_failed();
|
|
|
|
$yymajor = self::YYNOCODE;
|
|
|
|
} elseif ($yymx != self::YYERRORSYMBOL) {
|
|
|
|
$u2 = 0;
|
|
|
|
$this->yy_shift($yyact, self::YYERRORSYMBOL, $u2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->yyerrcnt = 3;
|
|
|
|
$yyerrorhit = 1;
|
|
|
|
} else {
|
|
|
|
if ($this->yyerrcnt <= 0) {
|
|
|
|
$this->yy_syntax_error($yymajor, $yytokenvalue);
|
|
|
|
}
|
|
|
|
$this->yyerrcnt = 3;
|
|
|
|
$this->yy_destructor($yymajor, $yytokenvalue);
|
|
|
|
if ($yyendofinput) {
|
|
|
|
$this->yy_parse_failed();
|
|
|
|
}
|
|
|
|
$yymajor = self::YYNOCODE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->yy_accept();
|
|
|
|
$yymajor = self::YYNOCODE;
|
|
|
|
}
|
|
|
|
} while ($yymajor != self::YYNOCODE && $this->yyidx >= 0);
|
|
|
|
}
|
|
|
|
}
|
2010-05-27 15:59:40 +00:00
|
|
|
?>
|