mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5004 lines
170 KiB
JavaScript
5004 lines
170 KiB
JavaScript
|
/*
|
||
|
php.js 0.1.0 <http://phpjs.hertzen.com/>
|
||
|
Copyright (c) 2013 Niklas von Hertzen
|
||
|
|
||
|
Released under MIT License
|
||
|
|
||
|
This file contains:
|
||
|
- [var PHP = {Constants:{}};]
|
||
|
- src/modules/tokenizer/constants.js
|
||
|
- src/parser/lexer.js
|
||
|
- src/parser/parser.js
|
||
|
- src/parser/yyn.js
|
||
|
- src/parser/yyn_stmt.js
|
||
|
- src/parser/yyn_expr.js
|
||
|
- src/parser/yyn_scalar.js
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
define(function(require, exports, module) {
|
||
|
|
||
|
var PHP = {Constants:{}};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
PHP.Constants.T_INCLUDE = 262;
|
||
|
PHP.Constants.T_INCLUDE_ONCE = 261;
|
||
|
PHP.Constants.T_EVAL = 260;
|
||
|
PHP.Constants.T_REQUIRE = 259;
|
||
|
PHP.Constants.T_REQUIRE_ONCE = 258;
|
||
|
PHP.Constants.T_LOGICAL_OR = 263;
|
||
|
PHP.Constants.T_LOGICAL_XOR = 264;
|
||
|
PHP.Constants.T_LOGICAL_AND = 265;
|
||
|
PHP.Constants.T_PRINT = 266;
|
||
|
PHP.Constants.T_PLUS_EQUAL = 277;
|
||
|
PHP.Constants.T_MINUS_EQUAL = 276;
|
||
|
PHP.Constants.T_MUL_EQUAL = 275;
|
||
|
PHP.Constants.T_DIV_EQUAL = 274;
|
||
|
PHP.Constants.T_CONCAT_EQUAL = 273;
|
||
|
PHP.Constants.T_MOD_EQUAL = 272;
|
||
|
PHP.Constants.T_AND_EQUAL = 271;
|
||
|
PHP.Constants.T_OR_EQUAL = 270;
|
||
|
PHP.Constants.T_XOR_EQUAL = 269;
|
||
|
PHP.Constants.T_SL_EQUAL = 268;
|
||
|
PHP.Constants.T_SR_EQUAL = 267;
|
||
|
PHP.Constants.T_BOOLEAN_OR = 278;
|
||
|
PHP.Constants.T_BOOLEAN_AND = 279;
|
||
|
PHP.Constants.T_IS_EQUAL = 283;
|
||
|
PHP.Constants.T_IS_NOT_EQUAL = 282;
|
||
|
PHP.Constants.T_IS_IDENTICAL = 281;
|
||
|
PHP.Constants.T_IS_NOT_IDENTICAL = 280;
|
||
|
PHP.Constants.T_IS_SMALLER_OR_EQUAL = 285;
|
||
|
PHP.Constants.T_IS_GREATER_OR_EQUAL = 284;
|
||
|
PHP.Constants.T_SL = 287;
|
||
|
PHP.Constants.T_SR = 286;
|
||
|
PHP.Constants.T_INSTANCEOF = 288;
|
||
|
PHP.Constants.T_INC = 297;
|
||
|
PHP.Constants.T_DEC = 296;
|
||
|
PHP.Constants.T_INT_CAST = 295;
|
||
|
PHP.Constants.T_DOUBLE_CAST = 294;
|
||
|
PHP.Constants.T_STRING_CAST = 293;
|
||
|
PHP.Constants.T_ARRAY_CAST = 292;
|
||
|
PHP.Constants.T_OBJECT_CAST = 291;
|
||
|
PHP.Constants.T_BOOL_CAST = 290;
|
||
|
PHP.Constants.T_UNSET_CAST = 289;
|
||
|
PHP.Constants.T_NEW = 299;
|
||
|
PHP.Constants.T_CLONE = 298;
|
||
|
PHP.Constants.T_EXIT = 300;
|
||
|
PHP.Constants.T_IF = 301;
|
||
|
PHP.Constants.T_ELSEIF = 302;
|
||
|
PHP.Constants.T_ELSE = 303;
|
||
|
PHP.Constants.T_ENDIF = 304;
|
||
|
PHP.Constants.T_LNUMBER = 305;
|
||
|
PHP.Constants.T_DNUMBER = 306;
|
||
|
PHP.Constants.T_STRING = 307;
|
||
|
PHP.Constants.T_STRING_VARNAME = 308;
|
||
|
PHP.Constants.T_VARIABLE = 309;
|
||
|
PHP.Constants.T_NUM_STRING = 310;
|
||
|
PHP.Constants.T_INLINE_HTML = 311;
|
||
|
PHP.Constants.T_CHARACTER = 312;
|
||
|
PHP.Constants.T_BAD_CHARACTER = 313;
|
||
|
PHP.Constants.T_ENCAPSED_AND_WHITESPACE = 314;
|
||
|
PHP.Constants.T_CONSTANT_ENCAPSED_STRING = 315;
|
||
|
PHP.Constants.T_ECHO = 316;
|
||
|
PHP.Constants.T_DO = 317;
|
||
|
PHP.Constants.T_WHILE = 318;
|
||
|
PHP.Constants.T_ENDWHILE = 319;
|
||
|
PHP.Constants.T_FOR = 320;
|
||
|
PHP.Constants.T_ENDFOR = 321;
|
||
|
PHP.Constants.T_FOREACH = 322;
|
||
|
PHP.Constants.T_ENDFOREACH = 323;
|
||
|
PHP.Constants.T_DECLARE = 324;
|
||
|
PHP.Constants.T_ENDDECLARE = 325;
|
||
|
PHP.Constants.T_AS = 326;
|
||
|
PHP.Constants.T_SWITCH = 327;
|
||
|
PHP.Constants.T_ENDSWITCH = 328;
|
||
|
PHP.Constants.T_CASE = 329;
|
||
|
PHP.Constants.T_DEFAULT = 330;
|
||
|
PHP.Constants.T_BREAK = 331;
|
||
|
PHP.Constants.T_CONTINUE = 332;
|
||
|
PHP.Constants.T_GOTO = 333;
|
||
|
PHP.Constants.T_FUNCTION = 334;
|
||
|
PHP.Constants.T_CONST = 335;
|
||
|
PHP.Constants.T_RETURN = 336;
|
||
|
PHP.Constants.T_TRY = 337;
|
||
|
PHP.Constants.T_CATCH = 338;
|
||
|
PHP.Constants.T_THROW = 339;
|
||
|
PHP.Constants.T_USE = 340;
|
||
|
//PHP.Constants.T_INSTEADOF = ;
|
||
|
PHP.Constants.T_GLOBAL = 341;
|
||
|
PHP.Constants.T_STATIC = 347;
|
||
|
PHP.Constants.T_ABSTRACT = 346;
|
||
|
PHP.Constants.T_FINAL = 345;
|
||
|
PHP.Constants.T_PRIVATE = 344;
|
||
|
PHP.Constants.T_PROTECTED = 343;
|
||
|
PHP.Constants.T_PUBLIC = 342;
|
||
|
PHP.Constants.T_VAR = 348;
|
||
|
PHP.Constants.T_UNSET = 349;
|
||
|
PHP.Constants.T_ISSET = 350;
|
||
|
PHP.Constants.T_EMPTY = 351;
|
||
|
PHP.Constants.T_HALT_COMPILER = 352;
|
||
|
PHP.Constants.T_CLASS = 353;
|
||
|
PHP.Constants.T_TRAIT = 382;
|
||
|
PHP.Constants.T_INTERFACE = 354;
|
||
|
PHP.Constants.T_EXTENDS = 355;
|
||
|
PHP.Constants.T_IMPLEMENTS = 356;
|
||
|
PHP.Constants.T_OBJECT_OPERATOR = 357;
|
||
|
PHP.Constants.T_DOUBLE_ARROW = 358;
|
||
|
PHP.Constants.T_LIST = 359;
|
||
|
PHP.Constants.T_ARRAY = 360;
|
||
|
//PHP.Constants.T_CALLABLE = ;
|
||
|
PHP.Constants.T_CLASS_C = 361;
|
||
|
PHP.Constants.T_TRAIT_C = 381;
|
||
|
PHP.Constants.T_METHOD_C = 362;
|
||
|
PHP.Constants.T_FUNC_C = 363;
|
||
|
PHP.Constants.T_LINE = 364;
|
||
|
PHP.Constants.T_FILE = 365;
|
||
|
PHP.Constants.T_COMMENT = 366;
|
||
|
PHP.Constants.T_DOC_COMMENT = 367;
|
||
|
PHP.Constants.T_OPEN_TAG = 368;
|
||
|
PHP.Constants.T_OPEN_TAG_WITH_ECHO = 369;
|
||
|
PHP.Constants.T_CLOSE_TAG = 370;
|
||
|
PHP.Constants.T_WHITESPACE = 371;
|
||
|
PHP.Constants.T_START_HEREDOC = 372;
|
||
|
PHP.Constants.T_END_HEREDOC = 373;
|
||
|
PHP.Constants.T_DOLLAR_OPEN_CURLY_BRACES = 374;
|
||
|
PHP.Constants.T_CURLY_OPEN = 375;
|
||
|
PHP.Constants.T_PAAMAYIM_NEKUDOTAYIM = 376;
|
||
|
PHP.Constants.T_DOUBLE_COLON = 376;
|
||
|
PHP.Constants.T_NAMESPACE = 377;
|
||
|
PHP.Constants.T_NS_C = 378;
|
||
|
PHP.Constants.T_DIR = 379;
|
||
|
PHP.Constants.T_NS_SEPARATOR = 380;
|
||
|
PHP.Lexer = function( src, ini ) {
|
||
|
|
||
|
|
||
|
var heredoc,
|
||
|
lineBreaker = function( result ) {
|
||
|
if (result.match(/\n/) !== null) {
|
||
|
var quote = result.substring(0, 1);
|
||
|
result = '[' + result.split(/\n/).join( quote + "," + quote ) + '].join("\\n")';
|
||
|
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
},
|
||
|
prev,
|
||
|
|
||
|
openTag = (ini === undefined || (/^(on|true|1)$/i.test(ini.short_open_tag) ) ? /(\<\?php\s|\<\?|\<\%|\<script language\=('|")?php('|")?\>)/i : /(\<\?php\s|<\?=|\<script language\=('|")?php('|")?\>)/i),
|
||
|
openTagStart = (ini === undefined || (/^(on|true|1)$/i.test(ini.short_open_tag)) ? /^(\<\?php\s|\<\?|\<\%|\<script language\=('|")?php('|")?\>)/i : /^(\<\?php\s|<\?=|\<script language\=('|")?php('|")?\>)/i),
|
||
|
tokens = [
|
||
|
{
|
||
|
value: PHP.Constants.T_NAMESPACE,
|
||
|
re: /^namespace(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_USE,
|
||
|
re: /^use(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ABSTRACT,
|
||
|
re: /^abstract(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IMPLEMENTS,
|
||
|
re: /^implements(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_INTERFACE,
|
||
|
re: /^interface(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CONST,
|
||
|
re: /^const(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_STATIC,
|
||
|
re: /^static(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_FINAL,
|
||
|
re: /^final(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_VAR,
|
||
|
re: /^var(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_GLOBAL,
|
||
|
re: /^global(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CLONE,
|
||
|
re: /^clone(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_THROW,
|
||
|
re: /^throw(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_EXTENDS,
|
||
|
re: /^extends(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_AND_EQUAL,
|
||
|
re: /^&=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_AS,
|
||
|
re: /^as(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ARRAY_CAST,
|
||
|
re: /^\(array\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_BOOL_CAST,
|
||
|
re: /^\((bool|boolean)\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DOUBLE_CAST,
|
||
|
re: /^\((real|float|double)\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_INT_CAST,
|
||
|
re: /^\((int|integer)\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_OBJECT_CAST,
|
||
|
re: /^\(object\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_STRING_CAST,
|
||
|
re: /^\(string\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_UNSET_CAST,
|
||
|
re: /^\(unset\)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_TRY,
|
||
|
re: /^try(?=\s*{)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CATCH,
|
||
|
re: /^catch(?=\s*\()/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_INSTANCEOF,
|
||
|
re: /^instanceof(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_LOGICAL_OR,
|
||
|
re: /^or(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_LOGICAL_AND,
|
||
|
re: /^and(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_LOGICAL_XOR,
|
||
|
re: /^xor(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_BOOLEAN_AND,
|
||
|
re: /^&&/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_BOOLEAN_OR,
|
||
|
re: /^\|\|/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CONTINUE,
|
||
|
re: /^continue(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_BREAK,
|
||
|
re: /^break(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ENDDECLARE,
|
||
|
re: /^enddeclare(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ENDFOR,
|
||
|
re: /^endfor(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ENDFOREACH,
|
||
|
re: /^endforeach(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ENDIF,
|
||
|
re: /^endif(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ENDSWITCH,
|
||
|
re: /^endswitch(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ENDWHILE,
|
||
|
re: /^endwhile(?=\s|;)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CASE,
|
||
|
re: /^case(?=\s)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DEFAULT,
|
||
|
re: /^default(?=\s|:)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_SWITCH,
|
||
|
re: /^switch(?=[ (])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_EXIT,
|
||
|
re: /^(exit|die)(?=[ \(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CLOSE_TAG,
|
||
|
re: /^(\?\>|\%\>|\<\/script\>)\s?\s?/i,
|
||
|
func: function( result ) {
|
||
|
insidePHP = false;
|
||
|
return result;
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DOUBLE_ARROW,
|
||
|
re: /^\=\>/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DOUBLE_COLON,
|
||
|
re: /^\:\:/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_METHOD_C,
|
||
|
re: /^__METHOD__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_LINE,
|
||
|
re: /^__LINE__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_FILE,
|
||
|
re: /^__FILE__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_FUNC_C,
|
||
|
re: /^__FUNCTION__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_NS_C,
|
||
|
re: /^__NAMESPACE__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_TRAIT_C,
|
||
|
re: /^__TRAIT__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DIR,
|
||
|
re: /^__DIR__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CLASS_C,
|
||
|
re: /^__CLASS__/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_INC,
|
||
|
re: /^\+\+/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DEC,
|
||
|
re: /^\-\-/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CONCAT_EQUAL,
|
||
|
re: /^\.\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DIV_EQUAL,
|
||
|
re: /^\/\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_XOR_EQUAL,
|
||
|
re: /^\^\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_MUL_EQUAL,
|
||
|
re: /^\*\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_MOD_EQUAL,
|
||
|
re: /^\%\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_SL_EQUAL,
|
||
|
re: /^<<=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_START_HEREDOC,
|
||
|
re: /^<<<[A-Z_0-9]+\s/i,
|
||
|
func: function( result ){
|
||
|
heredoc = result.substring(3, result.length - 1);
|
||
|
return result;
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_SL,
|
||
|
re: /^<</
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IS_SMALLER_OR_EQUAL,
|
||
|
re: /^<=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_SR_EQUAL,
|
||
|
re: /^>>=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_SR,
|
||
|
re: /^>>/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IS_GREATER_OR_EQUAL,
|
||
|
re: /^>=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_OR_EQUAL,
|
||
|
re: /^\|\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_PLUS_EQUAL,
|
||
|
re: /^\+\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_MINUS_EQUAL,
|
||
|
re: /^-\=/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_OBJECT_OPERATOR,
|
||
|
re: /^\-\>/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CLASS,
|
||
|
re: /^class(?=[\s\{])/i,
|
||
|
afterWhitespace: true
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_TRAIT,
|
||
|
re: /^trait(?=[\s]+[A-Za-z])/i,
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_PUBLIC,
|
||
|
re: /^public(?=[\s])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_PRIVATE,
|
||
|
re: /^private(?=[\s])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_PROTECTED,
|
||
|
re: /^protected(?=[\s])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ARRAY,
|
||
|
re: /^array(?=\s*?\()/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_EMPTY,
|
||
|
re: /^empty(?=[ \(])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ISSET,
|
||
|
re: /^isset(?=[ \(])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_UNSET,
|
||
|
re: /^unset(?=[ \(])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_RETURN,
|
||
|
re: /^return(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_FUNCTION,
|
||
|
re: /^function(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ECHO,
|
||
|
re: /^echo(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_LIST,
|
||
|
re: /^list(?=\s*?\()/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_PRINT,
|
||
|
re: /^print(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_INCLUDE,
|
||
|
re: /^include(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_INCLUDE_ONCE,
|
||
|
re: /^include_once(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_REQUIRE,
|
||
|
re: /^require(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_REQUIRE_ONCE,
|
||
|
re: /^require_once(?=[ "'(;])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_NEW,
|
||
|
re: /^new(?=[ ])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_COMMENT,
|
||
|
re: /^\/\*([\S\s]*?)(?:\*\/|$)/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_COMMENT,
|
||
|
re: /^\/\/.*(\s)?/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_COMMENT,
|
||
|
re: /^\#.*(\s)?/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ELSEIF,
|
||
|
re: /^elseif(?=[\s(])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_GOTO,
|
||
|
re: /^goto(?=[\s(])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ELSE,
|
||
|
re: /^else(?=[\s{:])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IF,
|
||
|
re: /^if(?=[\s(])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_DO,
|
||
|
re: /^do(?=[ {])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_WHILE,
|
||
|
re: /^while(?=[ (])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_FOREACH,
|
||
|
re: /^foreach(?=[ (])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_ISSET,
|
||
|
re: /^isset(?=[ (])/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IS_IDENTICAL,
|
||
|
re: /^===/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IS_EQUAL,
|
||
|
re: /^==/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IS_NOT_IDENTICAL,
|
||
|
re: /^\!==/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_IS_NOT_EQUAL,
|
||
|
re: /^(\!=|\<\>)/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_FOR,
|
||
|
re: /^for(?=[ (])/i
|
||
|
},
|
||
|
|
||
|
{
|
||
|
value: PHP.Constants.T_DNUMBER,
|
||
|
re: /^[0-9]*\.[0-9]+([eE][-]?[0-9]*)?/
|
||
|
/*,
|
||
|
func: function( result ) {
|
||
|
|
||
|
// transform e to E - token_get_all_variation1.phpt
|
||
|
return (result - 0).toString().toUpperCase();
|
||
|
}*/
|
||
|
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_LNUMBER,
|
||
|
re: /^(0x[0-9A-F]+|[0-9]+)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_OPEN_TAG_WITH_ECHO,
|
||
|
re: /^(\<\?=|\<\%=)/i
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_OPEN_TAG,
|
||
|
re: openTagStart
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_VARIABLE,
|
||
|
re: /^\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_WHITESPACE,
|
||
|
re: /^\s+/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_CONSTANT_ENCAPSED_STRING,
|
||
|
re: /^("(?:[^"\\]|\\[\s\S])*"|'(?:[^'\\]|\\[\s\S])*')/,
|
||
|
func: function( result, token ) {
|
||
|
|
||
|
var curlyOpen = 0,
|
||
|
len,
|
||
|
bracketOpen = 0;
|
||
|
|
||
|
if (result.substring( 0,1 ) === "'") {
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
var match = result.match( /(?:[^\\]|\\.)*[^\\]\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/g );
|
||
|
if ( match !== null ) {
|
||
|
// string has a variable
|
||
|
|
||
|
while( result.length > 0 ) {
|
||
|
len = result.length;
|
||
|
match = result.match( /^[\[\]\;\:\?\(\)\!\.\,\>\<\=\+\-\/\*\|\&\@\^\%\"\'\{\}]/ );
|
||
|
|
||
|
if ( match !== null ) {
|
||
|
|
||
|
results.push( match[ 0 ] );
|
||
|
result = result.substring( 1 );
|
||
|
|
||
|
if ( curlyOpen > 0 && match[ 0 ] === "}") {
|
||
|
curlyOpen--;
|
||
|
}
|
||
|
|
||
|
if ( match[ 0 ] === "[" ) {
|
||
|
bracketOpen++;
|
||
|
}
|
||
|
|
||
|
if ( match[ 0 ] === "]" ) {
|
||
|
bracketOpen--;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
match = result.match(/^\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/);
|
||
|
|
||
|
|
||
|
|
||
|
if ( match !== null ) {
|
||
|
|
||
|
results.push([
|
||
|
parseInt(PHP.Constants.T_VARIABLE, 10),
|
||
|
match[ 0 ],
|
||
|
line
|
||
|
]);
|
||
|
|
||
|
result = result.substring( match[ 0 ].length );
|
||
|
|
||
|
match = result.match(/^(\-\>)\s*([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\s*(\()/);
|
||
|
|
||
|
if ( match !== null ) {
|
||
|
|
||
|
results.push([
|
||
|
parseInt(PHP.Constants.T_OBJECT_OPERATOR, 10),
|
||
|
match[ 1 ],
|
||
|
line
|
||
|
]);
|
||
|
results.push([
|
||
|
parseInt(PHP.Constants.T_STRING, 10),
|
||
|
match[ 2 ],
|
||
|
line
|
||
|
]);
|
||
|
if (match[3]) {
|
||
|
results.push(match[3]);
|
||
|
}
|
||
|
result = result.substring( match[ 0 ].length );
|
||
|
}
|
||
|
|
||
|
|
||
|
if ( result.match( /^\[/g ) !== null ) {
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var re;
|
||
|
if ( curlyOpen > 0) {
|
||
|
re = /^([^\\\$"{}\]\)]|\\.)+/g;
|
||
|
} else {
|
||
|
re = /^([^\\\$"{]|\\.|{[^\$]|\$(?=[^a-zA-Z_\x7f-\xff]))+/g;;
|
||
|
}
|
||
|
|
||
|
while(( match = result.match( re )) !== null ) {
|
||
|
|
||
|
|
||
|
if (result.length === 1) {
|
||
|
throw new Error(match);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
results.push([
|
||
|
parseInt(( curlyOpen > 0 ) ? PHP.Constants.T_CONSTANT_ENCAPSED_STRING : PHP.Constants.T_ENCAPSED_AND_WHITESPACE, 10),
|
||
|
match[ 0 ].replace(/\n/g,"\\n").replace(/\r/g,""),
|
||
|
line
|
||
|
]);
|
||
|
|
||
|
line += match[ 0 ].split('\n').length - 1;
|
||
|
|
||
|
result = result.substring( match[ 0 ].length );
|
||
|
|
||
|
}
|
||
|
|
||
|
if( result.match(/^{\$/) !== null ) {
|
||
|
|
||
|
results.push([
|
||
|
parseInt(PHP.Constants.T_CURLY_OPEN, 10),
|
||
|
"{",
|
||
|
line
|
||
|
]);
|
||
|
result = result.substring( 1 );
|
||
|
curlyOpen++;
|
||
|
}
|
||
|
|
||
|
if (len === result.length) {
|
||
|
// nothing has been found yet
|
||
|
if ((match = result.match( /^(([^\\]|\\.)*?[^\\]\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)/g )) !== null) {
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return undefined;
|
||
|
|
||
|
} else {
|
||
|
result = result.replace(/\r/g,"");
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
if (result.match(/\r\n/) !== null) {
|
||
|
var quote = result.substring(0, 1);
|
||
|
|
||
|
result = '[' + result.split(/\r\n/).join( quote + "," + quote ) + '].join("\\n")';
|
||
|
|
||
|
}
|
||
|
*/
|
||
|
return result;
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_NS_SEPARATOR,
|
||
|
re: /^\\(?=[a-zA-Z_])/
|
||
|
},
|
||
|
{
|
||
|
value: PHP.Constants.T_STRING,
|
||
|
re: /^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/
|
||
|
},
|
||
|
{
|
||
|
value: -1,
|
||
|
re: /^[\[\]\;\:\?\(\)\!\.\,\>\<\=\+\-\/\*\|\&\{\}\@\^\%\"\'\$\~]/
|
||
|
}];
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
var results = [],
|
||
|
line = 1,
|
||
|
insidePHP = false,
|
||
|
cancel = true;
|
||
|
|
||
|
if ( src === null ) {
|
||
|
return results;
|
||
|
}
|
||
|
|
||
|
if ( typeof src !== "string" ) {
|
||
|
src = src.toString();
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
while (src.length > 0 && cancel === true) {
|
||
|
|
||
|
if ( insidePHP === true ) {
|
||
|
|
||
|
if ( heredoc !== undefined ) {
|
||
|
// we are in a heredoc
|
||
|
|
||
|
var regexp = new RegExp('([\\S\\s]*?)(\\r\\n|\\n|\\r)(' + heredoc + ')(;|\\r\\n|\\n)',"i");
|
||
|
|
||
|
|
||
|
|
||
|
var result = src.match( regexp );
|
||
|
if ( result !== null ) {
|
||
|
// contents
|
||
|
|
||
|
results.push([
|
||
|
parseInt(PHP.Constants.T_ENCAPSED_AND_WHITESPACE, 10),
|
||
|
result[ 1 ].replace(/^\n/g,"").replace(/\\\$/g,"$") + "\n",
|
||
|
line
|
||
|
]);
|
||
|
|
||
|
|
||
|
// note the no - 1 for length as regexp include one line as well
|
||
|
line += result[ 1 ].split('\n').length;
|
||
|
|
||
|
// heredoc end tag
|
||
|
results.push([
|
||
|
parseInt(PHP.Constants.T_END_HEREDOC, 10),
|
||
|
result[ 3 ],
|
||
|
line
|
||
|
]);
|
||
|
|
||
|
src = src.substring( result[1].length + result[2].length + result[3].length );
|
||
|
heredoc = undefined;
|
||
|
}
|
||
|
|
||
|
if (result === null) {
|
||
|
throw Error("sup");
|
||
|
}
|
||
|
|
||
|
|
||
|
} else {
|
||
|
cancel = tokens.some(function( token ){
|
||
|
if ( token.afterWhitespace === true ) {
|
||
|
// check last
|
||
|
var last = results[ results.length - 1 ];
|
||
|
if ( !Array.isArray( last ) || (last[ 0 ] !== PHP.Constants.T_WHITESPACE && last[ 0 ] !== PHP.Constants.T_OPEN_TAG && last[ 0 ] !== PHP.Constants.T_COMMENT)) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
var result = src.match( token.re );
|
||
|
|
||
|
if ( result !== null ) {
|
||
|
if ( token.value !== -1) {
|
||
|
var resultString = result[ 0 ];
|
||
|
|
||
|
|
||
|
|
||
|
if (token.func !== undefined ) {
|
||
|
resultString = token.func( resultString, token );
|
||
|
}
|
||
|
if (resultString !== undefined ) {
|
||
|
|
||
|
results.push([
|
||
|
parseInt(token.value, 10),
|
||
|
resultString,
|
||
|
line
|
||
|
]);
|
||
|
line += resultString.split('\n').length - 1;
|
||
|
}
|
||
|
|
||
|
} else {
|
||
|
// character token
|
||
|
results.push( result[ 0 ] );
|
||
|
}
|
||
|
|
||
|
src = src.substring(result[ 0 ].length);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
|
||
|
|
||
|
});
|
||
|
}
|
||
|
|
||
|
} else {
|
||
|
|
||
|
var result = openTag.exec( src );
|
||
|
|
||
|
|
||
|
if ( result !== null ) {
|
||
|
if ( result.index > 0 ) {
|
||
|
var resultString = src.substring(0, result.index);
|
||
|
results.push ([
|
||
|
parseInt(PHP.Constants.T_INLINE_HTML, 10),
|
||
|
resultString,
|
||
|
line
|
||
|
]);
|
||
|
|
||
|
line += resultString.split('\n').length - 1;
|
||
|
|
||
|
src = src.substring( result.index );
|
||
|
}
|
||
|
|
||
|
insidePHP = true;
|
||
|
} else {
|
||
|
|
||
|
results.push ([
|
||
|
parseInt(PHP.Constants.T_INLINE_HTML, 10),
|
||
|
src.replace(/^\n/, ""),
|
||
|
line
|
||
|
]);
|
||
|
return results;
|
||
|
}
|
||
|
|
||
|
// src = src.substring(result[ 0 ].length);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
return results;
|
||
|
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* @author Niklas von Hertzen <niklas at hertzen.com>
|
||
|
* @created 15.6.2012
|
||
|
* @website http://hertzen.com
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* The skeleton for this parser was written by Moriyoshi Koizumi and is based on
|
||
|
* the work by Masato Bito and is in the PUBLIC DOMAIN.
|
||
|
* Ported to JavaScript by Niklas von Hertzen
|
||
|
*/
|
||
|
|
||
|
|
||
|
PHP.Parser = function ( preprocessedTokens, eval ) {
|
||
|
|
||
|
var yybase = this.yybase,
|
||
|
yydefault = this.yydefault,
|
||
|
yycheck = this.yycheck,
|
||
|
yyaction = this.yyaction,
|
||
|
yylen = this.yylen,
|
||
|
yygbase = this.yygbase,
|
||
|
yygcheck = this.yygcheck,
|
||
|
yyp = this.yyp,
|
||
|
yygoto = this.yygoto,
|
||
|
yylhs = this.yylhs,
|
||
|
terminals = this.terminals,
|
||
|
translate = this.translate,
|
||
|
yygdefault = this.yygdefault;
|
||
|
|
||
|
|
||
|
this.pos = -1;
|
||
|
this.line = 1;
|
||
|
|
||
|
this.tokenMap = this.createTokenMap( );
|
||
|
|
||
|
this.dropTokens = {};
|
||
|
this.dropTokens[ PHP.Constants.T_WHITESPACE ] = 1;
|
||
|
this.dropTokens[ PHP.Constants.T_OPEN_TAG ] = 1;
|
||
|
var tokens = [];
|
||
|
|
||
|
// pre-process
|
||
|
preprocessedTokens.forEach( function( token, index ) {
|
||
|
if ( typeof token === "object" && token[ 0 ] === PHP.Constants.T_OPEN_TAG_WITH_ECHO) {
|
||
|
tokens.push([
|
||
|
PHP.Constants.T_OPEN_TAG,
|
||
|
token[ 1 ],
|
||
|
token[ 2 ]
|
||
|
]);
|
||
|
tokens.push([
|
||
|
PHP.Constants.T_ECHO,
|
||
|
token[ 1 ],
|
||
|
token[ 2 ]
|
||
|
]);
|
||
|
} else {
|
||
|
tokens.push( token );
|
||
|
}
|
||
|
});
|
||
|
this.tokens = tokens;
|
||
|
|
||
|
// We start off with no lookahead-token
|
||
|
var tokenId = this.TOKEN_NONE;
|
||
|
|
||
|
// The attributes for a node are taken from the first and last token of the node.
|
||
|
// From the first token only the startAttributes are taken and from the last only
|
||
|
// the endAttributes. Both are merged using the array union operator (+).
|
||
|
this.startAttributes = {
|
||
|
'startLine': 1
|
||
|
};
|
||
|
|
||
|
this.endAttributes = {};
|
||
|
|
||
|
// In order to figure out the attributes for the starting token, we have to keep
|
||
|
// them in a stack
|
||
|
var attributeStack = [ this.startAttributes ];
|
||
|
|
||
|
// Start off in the initial state and keep a stack of previous states
|
||
|
var state = 0;
|
||
|
var stateStack = [ state ];
|
||
|
|
||
|
// AST stack
|
||
|
this.yyastk = [];
|
||
|
|
||
|
// Current position in the stack(s)
|
||
|
this.stackPos = 0;
|
||
|
|
||
|
var yyn;
|
||
|
|
||
|
var origTokenId;
|
||
|
|
||
|
|
||
|
for (;;) {
|
||
|
|
||
|
if ( yybase[ state ] === 0 ) {
|
||
|
yyn = yydefault[ state ];
|
||
|
} else {
|
||
|
if (tokenId === this.TOKEN_NONE ) {
|
||
|
// fetch the next token id from the lexer and fetch additional info by-ref
|
||
|
origTokenId = this.getNextToken( );
|
||
|
|
||
|
// map the lexer token id to the internally used token id's
|
||
|
tokenId = (origTokenId >= 0 && origTokenId < this.TOKEN_MAP_SIZE) ? translate[ origTokenId ] : this.TOKEN_INVALID;
|
||
|
|
||
|
attributeStack[ this.stackPos ] = this.startAttributes;
|
||
|
}
|
||
|
|
||
|
if (((yyn = yybase[ state ] + tokenId) >= 0
|
||
|
&& yyn < this.YYLAST && yycheck[ yyn ] === tokenId
|
||
|
|| (state < this.YY2TBLSTATE
|
||
|
&& (yyn = yybase[state + this.YYNLSTATES] + tokenId) >= 0
|
||
|
&& yyn < this.YYLAST
|
||
|
&& yycheck[ yyn ] === tokenId))
|
||
|
&& (yyn = yyaction[ yyn ]) !== this.YYDEFAULT ) {
|
||
|
/*
|
||
|
* >= YYNLSTATE: shift and reduce
|
||
|
* > 0: shift
|
||
|
* = 0: accept
|
||
|
* < 0: reduce
|
||
|
* = -YYUNEXPECTED: error
|
||
|
*/
|
||
|
if (yyn > 0) {
|
||
|
/* shift */
|
||
|
++this.stackPos;
|
||
|
|
||
|
stateStack[ this.stackPos ] = state = yyn;
|
||
|
this.yyastk[ this.stackPos ] = this.tokenValue;
|
||
|
attributeStack[ this.stackPos ] = this.startAttributes;
|
||
|
tokenId = this.TOKEN_NONE;
|
||
|
|
||
|
if (yyn < this.YYNLSTATES)
|
||
|
continue;
|
||
|
|
||
|
/* $yyn >= YYNLSTATES means shift-and-reduce */
|
||
|
yyn -= this.YYNLSTATES;
|
||
|
} else {
|
||
|
yyn = -yyn;
|
||
|
}
|
||
|
} else {
|
||
|
yyn = yydefault[ state ];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for (;;) {
|
||
|
/* reduce/error */
|
||
|
|
||
|
if ( yyn === 0 ) {
|
||
|
/* accept */
|
||
|
return this.yyval;
|
||
|
} else if (yyn !== this.YYUNEXPECTED ) {
|
||
|
/* reduce */
|
||
|
for (var attr in this.endAttributes) {
|
||
|
attributeStack[ this.stackPos - yylen[ yyn ] ][ attr ] = this.endAttributes[ attr ];
|
||
|
}
|
||
|
try {
|
||
|
this['yyn' + yyn](attributeStack[ this.stackPos - yylen[ yyn ] ]);
|
||
|
} catch (e) {
|
||
|
/*
|
||
|
if (-1 === $e->getRawLine()) {
|
||
|
$e->setRawLine($startAttributes['startLine']);
|
||
|
}
|
||
|
*/
|
||
|
throw e;
|
||
|
}
|
||
|
|
||
|
/* Goto - shift nonterminal */
|
||
|
this.stackPos -= yylen[ yyn ];
|
||
|
yyn = yylhs[ yyn ];
|
||
|
if ((yyp = yygbase[ yyn ] + stateStack[ this.stackPos ]) >= 0
|
||
|
&& yyp < this.YYGLAST
|
||
|
&& yygcheck[ yyp ] === yyn) {
|
||
|
state = yygoto[ yyp ];
|
||
|
} else {
|
||
|
state = yygdefault[ yyn ];
|
||
|
}
|
||
|
|
||
|
++this.stackPos;
|
||
|
|
||
|
stateStack[ this.stackPos ] = state;
|
||
|
this.yyastk[ this.stackPos ] = this.yyval;
|
||
|
attributeStack[ this.stackPos ] = this.startAttributes;
|
||
|
} else {
|
||
|
/* error */
|
||
|
if (eval !== true) {
|
||
|
|
||
|
var expected = [];
|
||
|
|
||
|
for (var i = 0; i < this.TOKEN_MAP_SIZE; ++i) {
|
||
|
if ((yyn = yybase[ state ] + i) >= 0 && yyn < this.YYLAST && yycheck[ yyn ] == i
|
||
|
|| state < this.YY2TBLSTATE
|
||
|
&& (yyn = yybase[ state + this.YYNLSTATES] + i)
|
||
|
&& yyn < this.YYLAST && yycheck[ yyn ] == i
|
||
|
) {
|
||
|
if (yyaction[ yyn ] != this.YYUNEXPECTED) {
|
||
|
if (expected.length == 4) {
|
||
|
/* Too many expected tokens */
|
||
|
expected = [];
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
expected.push( this.terminals[ i ] );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var expectedString = '';
|
||
|
if (expected.length) {
|
||
|
expectedString = ', expecting ' + expected.join(' or ');
|
||
|
}
|
||
|
throw new PHP.ParseError('syntax error, unexpected ' + terminals[ tokenId ] + expectedString, this.startAttributes['startLine']);
|
||
|
} else {
|
||
|
return this.startAttributes['startLine'];
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
if (state < this.YYNLSTATES)
|
||
|
break;
|
||
|
/* >= YYNLSTATES means shift-and-reduce */
|
||
|
yyn = state - this.YYNLSTATES;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
PHP.ParseError = function( msg, line ) {
|
||
|
this.message = msg;
|
||
|
this.line = line;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.MODIFIER_PUBLIC = 1;
|
||
|
PHP.Parser.prototype.MODIFIER_PROTECTED = 2;
|
||
|
PHP.Parser.prototype.MODIFIER_PRIVATE = 4;
|
||
|
PHP.Parser.prototype.MODIFIER_STATIC = 8;
|
||
|
PHP.Parser.prototype.MODIFIER_ABSTRACT = 16;
|
||
|
PHP.Parser.prototype.MODIFIER_FINAL = 32;
|
||
|
|
||
|
PHP.Parser.prototype.getNextToken = function( ) {
|
||
|
|
||
|
this.startAttributes = {};
|
||
|
this.endAttributes = {};
|
||
|
|
||
|
var token,
|
||
|
tmp;
|
||
|
|
||
|
while (this.tokens[++this.pos] !== undefined) {
|
||
|
token = this.tokens[this.pos];
|
||
|
|
||
|
if (typeof token === "string") {
|
||
|
this.startAttributes['startLine'] = this.line;
|
||
|
this.endAttributes['endLine'] = this.line;
|
||
|
|
||
|
// bug in token_get_all
|
||
|
if ('b"' === token) {
|
||
|
this.tokenValue = 'b"';
|
||
|
return '"'.charCodeAt(0);
|
||
|
} else {
|
||
|
this.tokenValue = token;
|
||
|
return token.charCodeAt(0);
|
||
|
}
|
||
|
} else {
|
||
|
|
||
|
|
||
|
|
||
|
this.line += ((tmp = token[ 1 ].match(/\n/g)) === null) ? 0 : tmp.length;
|
||
|
|
||
|
if (PHP.Constants.T_COMMENT === token[0]) {
|
||
|
|
||
|
if (!Array.isArray(this.startAttributes['comments'])) {
|
||
|
this.startAttributes['comments'] = [];
|
||
|
}
|
||
|
|
||
|
this.startAttributes['comments'].push( {
|
||
|
type: "comment",
|
||
|
comment: token[1],
|
||
|
line: token[2]
|
||
|
});
|
||
|
|
||
|
} else if (PHP.Constants.T_DOC_COMMENT === token[0]) {
|
||
|
this.startAttributes['comments'].push( new PHPParser_Comment_Doc(token[1], token[2]) );
|
||
|
} else if (this.dropTokens[token[0]] === undefined) {
|
||
|
this.tokenValue = token[1];
|
||
|
this.startAttributes['startLine'] = token[2];
|
||
|
this.endAttributes['endLine'] = this.line;
|
||
|
|
||
|
return this.tokenMap[token[0]];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.startAttributes['startLine'] = this.line;
|
||
|
|
||
|
// 0 is the EOF token
|
||
|
return 0;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.tokenName = function( token ) {
|
||
|
var constants = ["T_INCLUDE","T_INCLUDE_ONCE","T_EVAL","T_REQUIRE","T_REQUIRE_ONCE","T_LOGICAL_OR","T_LOGICAL_XOR","T_LOGICAL_AND","T_PRINT","T_PLUS_EQUAL","T_MINUS_EQUAL","T_MUL_EQUAL","T_DIV_EQUAL","T_CONCAT_EQUAL","T_MOD_EQUAL","T_AND_EQUAL","T_OR_EQUAL","T_XOR_EQUAL","T_SL_EQUAL","T_SR_EQUAL","T_BOOLEAN_OR","T_BOOLEAN_AND","T_IS_EQUAL","T_IS_NOT_EQUAL","T_IS_IDENTICAL","T_IS_NOT_IDENTICAL","T_IS_SMALLER_OR_EQUAL","T_IS_GREATER_OR_EQUAL","T_SL","T_SR","T_INSTANCEOF","T_INC","T_DEC","T_INT_CAST","T_DOUBLE_CAST","T_STRING_CAST","T_ARRAY_CAST","T_OBJECT_CAST","T_BOOL_CAST","T_UNSET_CAST","T_NEW","T_CLONE","T_EXIT","T_IF","T_ELSEIF","T_ELSE","T_ENDIF","T_LNUMBER","T_DNUMBER","T_STRING","T_STRING_VARNAME","T_VARIABLE","T_NUM_STRING","T_INLINE_HTML","T_CHARACTER","T_BAD_CHARACTER","T_ENCAPSED_AND_WHITESPACE","T_CONSTANT_ENCAPSED_STRING","T_ECHO","T_DO","T_WHILE","T_ENDWHILE","T_FOR","T_ENDFOR","T_FOREACH","T_ENDFOREACH","T_DECLARE","T_ENDDECLARE","T_AS","T_SWITCH","T_ENDSWITCH","T_CASE","T_DEFAULT","T_BREAK","T_CONTINUE","T_GOTO","T_FUNCTION","T_CONST","T_RETURN","T_TRY","T_CATCH","T_THROW","T_USE","T_INSTEADOF","T_GLOBAL","T_STATIC","T_ABSTRACT","T_FINAL","T_PRIVATE","T_PROTECTED","T_PUBLIC","T_VAR","T_UNSET","T_ISSET","T_EMPTY","T_HALT_COMPILER","T_CLASS","T_TRAIT","T_INTERFACE","T_EXTENDS","T_IMPLEMENTS","T_OBJECT_OPERATOR","T_DOUBLE_ARROW","T_LIST","T_ARRAY","T_CALLABLE","T_CLASS_C","T_TRAIT_C","T_METHOD_C","T_FUNC_C","T_LINE","T_FILE","T_COMMENT","T_DOC_COMMENT","T_OPEN_TAG","T_OPEN_TAG_WITH_ECHO","T_CLOSE_TAG","T_WHITESPACE","T_START_HEREDOC","T_END_HEREDOC","T_DOLLAR_OPEN_CURLY_BRACES","T_CURLY_OPEN","T_PAAMAYIM_NEKUDOTAYIM","T_DOUBLE_COLON","T_NAMESPACE","T_NS_C","T_DIR","T_NS_SEPARATOR"];
|
||
|
var current = "UNKNOWN";
|
||
|
constants.some(function( constant ) {
|
||
|
if (PHP.Constants[ constant ] === token) {
|
||
|
current = constant;
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return current;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Creates the token map.
|
||
|
*
|
||
|
* The token map maps the PHP internal token identifiers
|
||
|
* to the identifiers used by the PHP.Parser. Additionally it
|
||
|
* maps T_OPEN_TAG_WITH_ECHO to T_ECHO and T_CLOSE_TAG to ';'.
|
||
|
*
|
||
|
* @return array The token map
|
||
|
*/
|
||
|
|
||
|
PHP.Parser.prototype.createTokenMap = function() {
|
||
|
var tokenMap = {},
|
||
|
name,
|
||
|
i;
|
||
|
var T_DOUBLE_COLON = PHP.Constants.T_PAAMAYIM_NEKUDOTAYIM;
|
||
|
// 256 is the minimum possible token number, as everything below
|
||
|
// it is an ASCII value
|
||
|
for ( i = 256; i < 1000; ++i ) {
|
||
|
// T_DOUBLE_COLON is equivalent to T_PAAMAYIM_NEKUDOTAYIM
|
||
|
if ( T_DOUBLE_COLON === i ) {
|
||
|
tokenMap[ i ] = this.T_PAAMAYIM_NEKUDOTAYIM;
|
||
|
// T_OPEN_TAG_WITH_ECHO with dropped T_OPEN_TAG results in T_ECHO
|
||
|
} else if( PHP.Constants.T_OPEN_TAG_WITH_ECHO === i ) {
|
||
|
tokenMap[ i ] = PHP.Constants.T_ECHO;
|
||
|
// T_CLOSE_TAG is equivalent to ';'
|
||
|
} else if( PHP.Constants.T_CLOSE_TAG === i ) {
|
||
|
tokenMap[ i ] = 59;
|
||
|
// and the others can be mapped directly
|
||
|
} else if ( 'UNKNOWN' !== (name = this.tokenName( i ) ) ) {
|
||
|
tokenMap[ i ] = this[name];
|
||
|
}
|
||
|
}
|
||
|
return tokenMap;
|
||
|
};
|
||
|
|
||
|
var yynStandard = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
// todo fix
|
||
|
|
||
|
PHP.Parser.prototype.MakeArray = function( arr ) {
|
||
|
return Array.isArray( arr ) ? arr : [ arr ];
|
||
|
}
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.parseString = function( str ) {
|
||
|
var bLength = 0;
|
||
|
if ('b' === str[0]) {
|
||
|
bLength = 1;
|
||
|
}
|
||
|
|
||
|
if ('\'' === str[ bLength ]) {
|
||
|
str = str.replace(
|
||
|
['\\\\', '\\\''],
|
||
|
[ '\\', '\'']);
|
||
|
} else {
|
||
|
|
||
|
str = this.parseEscapeSequences( str, '"');
|
||
|
|
||
|
}
|
||
|
|
||
|
return str;
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.parseEscapeSequences = function( str, quote ) {
|
||
|
|
||
|
|
||
|
|
||
|
if (undefined !== quote) {
|
||
|
str = str.replace(new RegExp('\\' + quote, "g"), quote);
|
||
|
}
|
||
|
|
||
|
var replacements = {
|
||
|
'\\': '\\',
|
||
|
'$': '$',
|
||
|
'n': "\n",
|
||
|
'r': "\r",
|
||
|
't': "\t",
|
||
|
'f': "\f",
|
||
|
'v': "\v",
|
||
|
'e': "\x1B"
|
||
|
};
|
||
|
|
||
|
return str.replace(
|
||
|
/~\\\\([\\\\$nrtfve]|[xX][0-9a-fA-F]{1,2}|[0-7]{1,3})~/g,
|
||
|
function ( matches ){
|
||
|
var str = matches[1];
|
||
|
|
||
|
if ( replacements[ str ] !== undefined ) {
|
||
|
return replacements[ str ];
|
||
|
} else if ('x' === str[ 0 ] || 'X' === str[ 0 ]) {
|
||
|
return chr(hexdec(str));
|
||
|
} else {
|
||
|
return chr(octdec(str));
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
|
||
|
return str;
|
||
|
};
|
||
|
|
||
|
/* This is an automatically GENERATED file, which should not be manually edited.
|
||
|
* Instead edit one of the following:
|
||
|
* * the grammar file grammar/zend_language_parser.jsy
|
||
|
* * the parser skeleton grammar/kymacc.js.parser
|
||
|
* * the preprocessing script grammar/rebuildParser.php
|
||
|
*
|
||
|
* The skeleton for this parser was written by Moriyoshi Koizumi and is based on
|
||
|
* the work by Masato Bito and is in the PUBLIC DOMAIN.
|
||
|
* Ported to JavaScript by Niklas von Hertzen
|
||
|
*/
|
||
|
|
||
|
PHP.Parser.prototype.TOKEN_NONE = -1;
|
||
|
PHP.Parser.prototype.TOKEN_INVALID = 149;
|
||
|
|
||
|
PHP.Parser.prototype.TOKEN_MAP_SIZE = 384;
|
||
|
|
||
|
PHP.Parser.prototype.YYLAST = 913;
|
||
|
PHP.Parser.prototype.YY2TBLSTATE = 328;
|
||
|
PHP.Parser.prototype.YYGLAST = 415;
|
||
|
PHP.Parser.prototype.YYNLSTATES = 544;
|
||
|
PHP.Parser.prototype.YYUNEXPECTED = 32767;
|
||
|
PHP.Parser.prototype.YYDEFAULT = -32766;
|
||
|
|
||
|
// {{{ Tokens
|
||
|
PHP.Parser.prototype.YYERRTOK = 256;
|
||
|
PHP.Parser.prototype.T_INCLUDE = 257;
|
||
|
PHP.Parser.prototype.T_INCLUDE_ONCE = 258;
|
||
|
PHP.Parser.prototype.T_EVAL = 259;
|
||
|
PHP.Parser.prototype.T_REQUIRE = 260;
|
||
|
PHP.Parser.prototype.T_REQUIRE_ONCE = 261;
|
||
|
PHP.Parser.prototype.T_LOGICAL_OR = 262;
|
||
|
PHP.Parser.prototype.T_LOGICAL_XOR = 263;
|
||
|
PHP.Parser.prototype.T_LOGICAL_AND = 264;
|
||
|
PHP.Parser.prototype.T_PRINT = 265;
|
||
|
PHP.Parser.prototype.T_PLUS_EQUAL = 266;
|
||
|
PHP.Parser.prototype.T_MINUS_EQUAL = 267;
|
||
|
PHP.Parser.prototype.T_MUL_EQUAL = 268;
|
||
|
PHP.Parser.prototype.T_DIV_EQUAL = 269;
|
||
|
PHP.Parser.prototype.T_CONCAT_EQUAL = 270;
|
||
|
PHP.Parser.prototype.T_MOD_EQUAL = 271;
|
||
|
PHP.Parser.prototype.T_AND_EQUAL = 272;
|
||
|
PHP.Parser.prototype.T_OR_EQUAL = 273;
|
||
|
PHP.Parser.prototype.T_XOR_EQUAL = 274;
|
||
|
PHP.Parser.prototype.T_SL_EQUAL = 275;
|
||
|
PHP.Parser.prototype.T_SR_EQUAL = 276;
|
||
|
PHP.Parser.prototype.T_BOOLEAN_OR = 277;
|
||
|
PHP.Parser.prototype.T_BOOLEAN_AND = 278;
|
||
|
PHP.Parser.prototype.T_IS_EQUAL = 279;
|
||
|
PHP.Parser.prototype.T_IS_NOT_EQUAL = 280;
|
||
|
PHP.Parser.prototype.T_IS_IDENTICAL = 281;
|
||
|
PHP.Parser.prototype.T_IS_NOT_IDENTICAL = 282;
|
||
|
PHP.Parser.prototype.T_IS_SMALLER_OR_EQUAL = 283;
|
||
|
PHP.Parser.prototype.T_IS_GREATER_OR_EQUAL = 284;
|
||
|
PHP.Parser.prototype.T_SL = 285;
|
||
|
PHP.Parser.prototype.T_SR = 286;
|
||
|
PHP.Parser.prototype.T_INSTANCEOF = 287;
|
||
|
PHP.Parser.prototype.T_INC = 288;
|
||
|
PHP.Parser.prototype.T_DEC = 289;
|
||
|
PHP.Parser.prototype.T_INT_CAST = 290;
|
||
|
PHP.Parser.prototype.T_DOUBLE_CAST = 291;
|
||
|
PHP.Parser.prototype.T_STRING_CAST = 292;
|
||
|
PHP.Parser.prototype.T_ARRAY_CAST = 293;
|
||
|
PHP.Parser.prototype.T_OBJECT_CAST = 294;
|
||
|
PHP.Parser.prototype.T_BOOL_CAST = 295;
|
||
|
PHP.Parser.prototype.T_UNSET_CAST = 296;
|
||
|
PHP.Parser.prototype.T_NEW = 297;
|
||
|
PHP.Parser.prototype.T_CLONE = 298;
|
||
|
PHP.Parser.prototype.T_EXIT = 299;
|
||
|
PHP.Parser.prototype.T_IF = 300;
|
||
|
PHP.Parser.prototype.T_ELSEIF = 301;
|
||
|
PHP.Parser.prototype.T_ELSE = 302;
|
||
|
PHP.Parser.prototype.T_ENDIF = 303;
|
||
|
PHP.Parser.prototype.T_LNUMBER = 304;
|
||
|
PHP.Parser.prototype.T_DNUMBER = 305;
|
||
|
PHP.Parser.prototype.T_STRING = 306;
|
||
|
PHP.Parser.prototype.T_STRING_VARNAME = 307;
|
||
|
PHP.Parser.prototype.T_VARIABLE = 308;
|
||
|
PHP.Parser.prototype.T_NUM_STRING = 309;
|
||
|
PHP.Parser.prototype.T_INLINE_HTML = 310;
|
||
|
PHP.Parser.prototype.T_CHARACTER = 311;
|
||
|
PHP.Parser.prototype.T_BAD_CHARACTER = 312;
|
||
|
PHP.Parser.prototype.T_ENCAPSED_AND_WHITESPACE = 313;
|
||
|
PHP.Parser.prototype.T_CONSTANT_ENCAPSED_STRING = 314;
|
||
|
PHP.Parser.prototype.T_ECHO = 315;
|
||
|
PHP.Parser.prototype.T_DO = 316;
|
||
|
PHP.Parser.prototype.T_WHILE = 317;
|
||
|
PHP.Parser.prototype.T_ENDWHILE = 318;
|
||
|
PHP.Parser.prototype.T_FOR = 319;
|
||
|
PHP.Parser.prototype.T_ENDFOR = 320;
|
||
|
PHP.Parser.prototype.T_FOREACH = 321;
|
||
|
PHP.Parser.prototype.T_ENDFOREACH = 322;
|
||
|
PHP.Parser.prototype.T_DECLARE = 323;
|
||
|
PHP.Parser.prototype.T_ENDDECLARE = 324;
|
||
|
PHP.Parser.prototype.T_AS = 325;
|
||
|
PHP.Parser.prototype.T_SWITCH = 326;
|
||
|
PHP.Parser.prototype.T_ENDSWITCH = 327;
|
||
|
PHP.Parser.prototype.T_CASE = 328;
|
||
|
PHP.Parser.prototype.T_DEFAULT = 329;
|
||
|
PHP.Parser.prototype.T_BREAK = 330;
|
||
|
PHP.Parser.prototype.T_CONTINUE = 331;
|
||
|
PHP.Parser.prototype.T_GOTO = 332;
|
||
|
PHP.Parser.prototype.T_FUNCTION = 333;
|
||
|
PHP.Parser.prototype.T_CONST = 334;
|
||
|
PHP.Parser.prototype.T_RETURN = 335;
|
||
|
PHP.Parser.prototype.T_TRY = 336;
|
||
|
PHP.Parser.prototype.T_CATCH = 337;
|
||
|
PHP.Parser.prototype.T_THROW = 338;
|
||
|
PHP.Parser.prototype.T_USE = 339;
|
||
|
PHP.Parser.prototype.T_INSTEADOF = 340;
|
||
|
PHP.Parser.prototype.T_GLOBAL = 341;
|
||
|
PHP.Parser.prototype.T_STATIC = 342;
|
||
|
PHP.Parser.prototype.T_ABSTRACT = 343;
|
||
|
PHP.Parser.prototype.T_FINAL = 344;
|
||
|
PHP.Parser.prototype.T_PRIVATE = 345;
|
||
|
PHP.Parser.prototype.T_PROTECTED = 346;
|
||
|
PHP.Parser.prototype.T_PUBLIC = 347;
|
||
|
PHP.Parser.prototype.T_VAR = 348;
|
||
|
PHP.Parser.prototype.T_UNSET = 349;
|
||
|
PHP.Parser.prototype.T_ISSET = 350;
|
||
|
PHP.Parser.prototype.T_EMPTY = 351;
|
||
|
PHP.Parser.prototype.T_HALT_COMPILER = 352;
|
||
|
PHP.Parser.prototype.T_CLASS = 353;
|
||
|
PHP.Parser.prototype.T_TRAIT = 354;
|
||
|
PHP.Parser.prototype.T_INTERFACE = 355;
|
||
|
PHP.Parser.prototype.T_EXTENDS = 356;
|
||
|
PHP.Parser.prototype.T_IMPLEMENTS = 357;
|
||
|
PHP.Parser.prototype.T_OBJECT_OPERATOR = 358;
|
||
|
PHP.Parser.prototype.T_DOUBLE_ARROW = 359;
|
||
|
PHP.Parser.prototype.T_LIST = 360;
|
||
|
PHP.Parser.prototype.T_ARRAY = 361;
|
||
|
PHP.Parser.prototype.T_CALLABLE = 362;
|
||
|
PHP.Parser.prototype.T_CLASS_C = 363;
|
||
|
PHP.Parser.prototype.T_TRAIT_C = 364;
|
||
|
PHP.Parser.prototype.T_METHOD_C = 365;
|
||
|
PHP.Parser.prototype.T_FUNC_C = 366;
|
||
|
PHP.Parser.prototype.T_LINE = 367;
|
||
|
PHP.Parser.prototype.T_FILE = 368;
|
||
|
PHP.Parser.prototype.T_COMMENT = 369;
|
||
|
PHP.Parser.prototype.T_DOC_COMMENT = 370;
|
||
|
PHP.Parser.prototype.T_OPEN_TAG = 371;
|
||
|
PHP.Parser.prototype.T_OPEN_TAG_WITH_ECHO = 372;
|
||
|
PHP.Parser.prototype.T_CLOSE_TAG = 373;
|
||
|
PHP.Parser.prototype.T_WHITESPACE = 374;
|
||
|
PHP.Parser.prototype.T_START_HEREDOC = 375;
|
||
|
PHP.Parser.prototype.T_END_HEREDOC = 376;
|
||
|
PHP.Parser.prototype.T_DOLLAR_OPEN_CURLY_BRACES = 377;
|
||
|
PHP.Parser.prototype.T_CURLY_OPEN = 378;
|
||
|
PHP.Parser.prototype.T_PAAMAYIM_NEKUDOTAYIM = 379;
|
||
|
PHP.Parser.prototype.T_NAMESPACE = 380;
|
||
|
PHP.Parser.prototype.T_NS_C = 381;
|
||
|
PHP.Parser.prototype.T_DIR = 382;
|
||
|
PHP.Parser.prototype.T_NS_SEPARATOR = 383;
|
||
|
// }}}
|
||
|
|
||
|
/* @var array Map of token ids to their respective names */
|
||
|
PHP.Parser.prototype.terminals = [
|
||
|
"$EOF",
|
||
|
"error",
|
||
|
"T_INCLUDE",
|
||
|
"T_INCLUDE_ONCE",
|
||
|
"T_EVAL",
|
||
|
"T_REQUIRE",
|
||
|
"T_REQUIRE_ONCE",
|
||
|
"','",
|
||
|
"T_LOGICAL_OR",
|
||
|
"T_LOGICAL_XOR",
|
||
|
"T_LOGICAL_AND",
|
||
|
"T_PRINT",
|
||
|
"'='",
|
||
|
"T_PLUS_EQUAL",
|
||
|
"T_MINUS_EQUAL",
|
||
|
"T_MUL_EQUAL",
|
||
|
"T_DIV_EQUAL",
|
||
|
"T_CONCAT_EQUAL",
|
||
|
"T_MOD_EQUAL",
|
||
|
"T_AND_EQUAL",
|
||
|
"T_OR_EQUAL",
|
||
|
"T_XOR_EQUAL",
|
||
|
"T_SL_EQUAL",
|
||
|
"T_SR_EQUAL",
|
||
|
"'?'",
|
||
|
"':'",
|
||
|
"T_BOOLEAN_OR",
|
||
|
"T_BOOLEAN_AND",
|
||
|
"'|'",
|
||
|
"'^'",
|
||
|
"'&'",
|
||
|
"T_IS_EQUAL",
|
||
|
"T_IS_NOT_EQUAL",
|
||
|
"T_IS_IDENTICAL",
|
||
|
"T_IS_NOT_IDENTICAL",
|
||
|
"'<'",
|
||
|
"T_IS_SMALLER_OR_EQUAL",
|
||
|
"'>'",
|
||
|
"T_IS_GREATER_OR_EQUAL",
|
||
|
"T_SL",
|
||
|
"T_SR",
|
||
|
"'+'",
|
||
|
"'-'",
|
||
|
"'.'",
|
||
|
"'*'",
|
||
|
"'/'",
|
||
|
"'%'",
|
||
|
"'!'",
|
||
|
"T_INSTANCEOF",
|
||
|
"'~'",
|
||
|
"T_INC",
|
||
|
"T_DEC",
|
||
|
"T_INT_CAST",
|
||
|
"T_DOUBLE_CAST",
|
||
|
"T_STRING_CAST",
|
||
|
"T_ARRAY_CAST",
|
||
|
"T_OBJECT_CAST",
|
||
|
"T_BOOL_CAST",
|
||
|
"T_UNSET_CAST",
|
||
|
"'@'",
|
||
|
"'['",
|
||
|
"T_NEW",
|
||
|
"T_CLONE",
|
||
|
"T_EXIT",
|
||
|
"T_IF",
|
||
|
"T_ELSEIF",
|
||
|
"T_ELSE",
|
||
|
"T_ENDIF",
|
||
|
"T_LNUMBER",
|
||
|
"T_DNUMBER",
|
||
|
"T_STRING",
|
||
|
"T_STRING_VARNAME",
|
||
|
"T_VARIABLE",
|
||
|
"T_NUM_STRING",
|
||
|
"T_INLINE_HTML",
|
||
|
"T_ENCAPSED_AND_WHITESPACE",
|
||
|
"T_CONSTANT_ENCAPSED_STRING",
|
||
|
"T_ECHO",
|
||
|
"T_DO",
|
||
|
"T_WHILE",
|
||
|
"T_ENDWHILE",
|
||
|
"T_FOR",
|
||
|
"T_ENDFOR",
|
||
|
"T_FOREACH",
|
||
|
"T_ENDFOREACH",
|
||
|
"T_DECLARE",
|
||
|
"T_ENDDECLARE",
|
||
|
"T_AS",
|
||
|
"T_SWITCH",
|
||
|
"T_ENDSWITCH",
|
||
|
"T_CASE",
|
||
|
"T_DEFAULT",
|
||
|
"T_BREAK",
|
||
|
"T_CONTINUE",
|
||
|
"T_GOTO",
|
||
|
"T_FUNCTION",
|
||
|
"T_CONST",
|
||
|
"T_RETURN",
|
||
|
"T_TRY",
|
||
|
"T_CATCH",
|
||
|
"T_THROW",
|
||
|
"T_USE",
|
||
|
"T_INSTEADOF",
|
||
|
"T_GLOBAL",
|
||
|
"T_STATIC",
|
||
|
"T_ABSTRACT",
|
||
|
"T_FINAL",
|
||
|
"T_PRIVATE",
|
||
|
"T_PROTECTED",
|
||
|
"T_PUBLIC",
|
||
|
"T_VAR",
|
||
|
"T_UNSET",
|
||
|
"T_ISSET",
|
||
|
"T_EMPTY",
|
||
|
"T_HALT_COMPILER",
|
||
|
"T_CLASS",
|
||
|
"T_TRAIT",
|
||
|
"T_INTERFACE",
|
||
|
"T_EXTENDS",
|
||
|
"T_IMPLEMENTS",
|
||
|
"T_OBJECT_OPERATOR",
|
||
|
"T_DOUBLE_ARROW",
|
||
|
"T_LIST",
|
||
|
"T_ARRAY",
|
||
|
"T_CALLABLE",
|
||
|
"T_CLASS_C",
|
||
|
"T_TRAIT_C",
|
||
|
"T_METHOD_C",
|
||
|
"T_FUNC_C",
|
||
|
"T_LINE",
|
||
|
"T_FILE",
|
||
|
"T_START_HEREDOC",
|
||
|
"T_END_HEREDOC",
|
||
|
"T_DOLLAR_OPEN_CURLY_BRACES",
|
||
|
"T_CURLY_OPEN",
|
||
|
"T_PAAMAYIM_NEKUDOTAYIM",
|
||
|
"T_NAMESPACE",
|
||
|
"T_NS_C",
|
||
|
"T_DIR",
|
||
|
"T_NS_SEPARATOR",
|
||
|
"';'",
|
||
|
"'{'",
|
||
|
"'}'",
|
||
|
"'('",
|
||
|
"')'",
|
||
|
"'$'",
|
||
|
"']'",
|
||
|
"'`'",
|
||
|
"'\"'"
|
||
|
, "???"
|
||
|
];
|
||
|
|
||
|
/* @var Map which translates lexer tokens to internal tokens */
|
||
|
PHP.Parser.prototype.translate = [
|
||
|
0, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 47, 148, 149, 145, 46, 30, 149,
|
||
|
143, 144, 44, 41, 7, 42, 43, 45, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 25, 140,
|
||
|
35, 12, 37, 24, 59, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 60, 149, 146, 29, 149, 147, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 141, 28, 142, 49, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
||
|
149, 149, 149, 149, 149, 149, 1, 2, 3, 4,
|
||
|
5, 6, 8, 9, 10, 11, 13, 14, 15, 16,
|
||
|
17, 18, 19, 20, 21, 22, 23, 26, 27, 31,
|
||
|
32, 33, 34, 36, 38, 39, 40, 48, 50, 51,
|
||
|
52, 53, 54, 55, 56, 57, 58, 61, 62, 63,
|
||
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
||
|
74, 149, 149, 75, 76, 77, 78, 79, 80, 81,
|
||
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
||
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
||
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
||
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
||
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 149,
|
||
|
149, 149, 149, 149, 149, 131, 132, 133, 134, 135,
|
||
|
136, 137, 138, 139
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yyaction = [
|
||
|
61, 62, 363, 63, 64,-32766,-32766,-32766, 509, 65,
|
||
|
708, 709, 710, 707, 706, 705,-32766,-32766,-32766,-32766,
|
||
|
-32766,-32766, 132,-32766,-32766,-32766,-32766,-32766,-32767,-32767,
|
||
|
-32767,-32767,-32766, 335,-32766,-32766,-32766,-32766,-32766, 66,
|
||
|
67, 351, 663, 664, 40, 68, 548, 69, 232, 233,
|
||
|
70, 71, 72, 73, 74, 75, 76, 77, 30, 246,
|
||
|
78, 336, 364, -112, 0, 469, 833, 834, 365, 641,
|
||
|
890, 436, 590, 41, 835, 53, 27, 366, 294, 367,
|
||
|
687, 368, 921, 369, 923, 922, 370,-32766,-32766,-32766,
|
||
|
42, 43, 371, 339, 126, 44, 372, 337, 79, 297,
|
||
|
349, 292, 293,-32766, 918,-32766,-32766, 373, 374, 375,
|
||
|
376, 377, 391, 199, 361, 338, 573, 613, 378, 379,
|
||
|
380, 381, 845, 839, 840, 841, 842, 836, 837, 253,
|
||
|
-32766, 87, 88, 89, 391, 843, 838, 338, 597, 519,
|
||
|
128, 80, 129, 273, 332, 257, 261, 47, 673, 90,
|
||
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
||
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
|
||
|
799, 247, 884, 108, 109, 110, 226, 247, 21,-32766,
|
||
|
310,-32766,-32766,-32766, 642, 548,-32766,-32766,-32766,-32766,
|
||
|
56, 353,-32766,-32766,-32766, 55,-32766,-32766,-32766,-32766,
|
||
|
-32766, 58,-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
|
||
|
-32766, 557,-32766,-32766, 518,-32766, 548, 890,-32766, 390,
|
||
|
-32766, 228, 252,-32766,-32766,-32766,-32766,-32766, 275,-32766,
|
||
|
234,-32766, 587, 588,-32766,-32766,-32766,-32766,-32766,-32766,
|
||
|
-32766, 46, 236,-32766,-32766, 281,-32766, 682, 348,-32766,
|
||
|
390,-32766, 346, 333, 521,-32766,-32766,-32766, 271, 911,
|
||
|
262, 237, 446, 911,-32766, 894, 59, 700, 358, 135,
|
||
|
548, 123, 538, 35,-32766, 333, 122,-32766,-32766,-32766,
|
||
|
271,-32766, 124,-32766, 692,-32766,-32766,-32766,-32766, 700,
|
||
|
273, 22,-32766,-32766,-32766,-32766, 239,-32766,-32766, 612,
|
||
|
-32766, 548, 134,-32766, 390,-32766, 462, 354,-32766,-32766,
|
||
|
-32766,-32766,-32766, 227,-32766, 238,-32766, 845, 542,-32766,
|
||
|
856, 611, 200,-32766,-32766,-32766, 259, 280,-32766,-32766,
|
||
|
201,-32766, 855, 129,-32766, 390, 130, 202, 333, 206,
|
||
|
-32766,-32766,-32766, 271,-32766,-32766,-32766, 125, 601,-32766,
|
||
|
136, 299, 700, 489, 28, 548, 105, 106, 107,-32766,
|
||
|
498, 499,-32766,-32766,-32766, 207,-32766, 133,-32766, 525,
|
||
|
-32766,-32766,-32766,-32766, 663, 664, 527,-32766,-32766,-32766,
|
||
|
-32766, 528,-32766,-32766, 610,-32766, 548, 427,-32766, 390,
|
||
|
-32766, 532, 539,-32766,-32766,-32766,-32766,-32766, 240,-32766,
|
||
|
247,-32766, 697, 543,-32766, 554, 523, 608,-32766,-32766,
|
||
|
-32766, 686, 535,-32766,-32766, 54,-32766, 57, 60,-32766,
|
||
|
390, 246, -155, 278, 345,-32766,-32766,-32766, 506, 347,
|
||
|
-152, 471, 402, 403,-32766, 405, 404, 272, 493, 416,
|
||
|
548, 318, 417, 505,-32766, 517, 548,-32766,-32766,-32766,
|
||
|
549,-32766, 562,-32766, 916,-32766,-32766,-32766,-32766, 564,
|
||
|
826, 848,-32766,-32766,-32766,-32766, 694,-32766,-32766, 485,
|
||
|
-32766, 548, 487,-32766, 390,-32766, 504, 802,-32766,-32766,
|
||
|
-32766,-32766,-32766, 279,-32766, 911,-32766, 502, 492,-32766,
|
||
|
413, 483, 269,-32766,-32766,-32766, 243, 337,-32766,-32766,
|
||
|
418,-32766, 454, 229,-32766, 390, 274, 373, 374, 344,
|
||
|
-32766,-32766,-32766, 360, 614,-32766, 573, 613, 378, 379,
|
||
|
-274, 548, 615, -332, 844,-32766, 258, 51,-32766,-32766,
|
||
|
-32766, 270,-32766, 346,-32766, 52,-32766, 260, 0,-32766,
|
||
|
-333,-32766,-32766,-32766,-32766,-32766,-32766, 205,-32766,-32766,
|
||
|
49,-32766, 548, 424,-32766, 390,-32766, -266, 264,-32766,
|
||
|
-32766,-32766,-32766,-32766, 409,-32766, 343,-32766, 265, 312,
|
||
|
-32766, 470, 513, -275,-32766,-32766,-32766, 920, 337,-32766,
|
||
|
-32766, 530,-32766, 531, 600,-32766, 390, 592, 373, 374,
|
||
|
578, 581,-32766,-32766, 644, 629,-32766, 573, 613, 378,
|
||
|
379, 635, 548, 636, 576, 627,-32766, 625, 693,-32766,
|
||
|
-32766,-32766, 691,-32766, 591,-32766, 582,-32766, 203, 204,
|
||
|
-32766, 584, 583,-32766,-32766,-32766,-32766, 586, 599,-32766,
|
||
|
-32766, 589,-32766, 690, 558,-32766, 390, 197, 683, 919,
|
||
|
86, 520, 522,-32766, 524, 833, 834, 529, 533,-32766,
|
||
|
534, 537, 541, 835, 48, 111, 112, 113, 114, 115,
|
||
|
116, 117, 118, 119, 120, 121, 127, 31, 633, 337,
|
||
|
330, 634, 585,-32766, 32, 291, 337, 330, 478, 373,
|
||
|
374, 917, 291, 891, 889, 875, 373, 374, 553, 613,
|
||
|
378, 379, 737, 739, 887, 553, 613, 378, 379, 824,
|
||
|
451, 675, 839, 840, 841, 842, 836, 837, 320, 895,
|
||
|
277, 885, 23, 33, 843, 838, 556, 277, 337, 330,
|
||
|
-32766, 34,-32766, 555, 291, 36, 37, 38, 373, 374,
|
||
|
39, 45, 50, 81, 82, 83, 84, 553, 613, 378,
|
||
|
379,-32767,-32767,-32767,-32767, 103, 104, 105, 106, 107,
|
||
|
337, 85, 131, 137, 337, 138, 198, 224, 225, 277,
|
||
|
373, 374, -332, 230, 373, 374, 24, 337, 231, 573,
|
||
|
613, 378, 379, 573, 613, 378, 379, 373, 374, 235,
|
||
|
248, 249, 250, 337, 251, 0, 573, 613, 378, 379,
|
||
|
276, 329, 331, 373, 374,-32766, 337, 574, 490, 792,
|
||
|
337, 609, 573, 613, 378, 379, 373, 374, 25, 300,
|
||
|
373, 374, 319, 337, 795, 573, 613, 378, 379, 573,
|
||
|
613, 378, 379, 373, 374, 516, 355, 359, 445, 482,
|
||
|
796, 507, 573, 613, 378, 379, 508, 548, 337, 890,
|
||
|
775, 791, 337, 604, 803, 808, 806, 698, 373, 374,
|
||
|
888, 807, 373, 374,-32766,-32766,-32766, 573, 613, 378,
|
||
|
379, 573, 613, 378, 379, 873, 832, 804, 872, 851,
|
||
|
-32766, 809,-32766,-32766,-32766,-32766, 805, 20, 26, 29,
|
||
|
298, 480, 515, 770, 778, 827, 457, 0, 900, 455,
|
||
|
774, 0, 0, 0, 874, 870, 886, 823, 915, 852,
|
||
|
869, 488, 0, 391, 793, 0, 338, 0, 0, 0,
|
||
|
340, 0, 273
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yycheck = [
|
||
|
2, 3, 4, 5, 6, 8, 9, 10, 70, 11,
|
||
|
104, 105, 106, 107, 108, 109, 8, 9, 10, 8,
|
||
|
9, 24, 60, 26, 27, 28, 29, 30, 31, 32,
|
||
|
33, 34, 24, 7, 26, 27, 28, 29, 30, 41,
|
||
|
42, 7, 123, 124, 7, 47, 70, 49, 50, 51,
|
||
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
||
|
62, 63, 64, 144, 0, 75, 68, 69, 70, 25,
|
||
|
72, 70, 74, 7, 76, 77, 78, 79, 7, 81,
|
||
|
142, 83, 70, 85, 72, 73, 88, 8, 9, 10,
|
||
|
92, 93, 94, 95, 7, 97, 98, 95, 100, 7,
|
||
|
7, 103, 104, 24, 142, 26, 27, 105, 106, 111,
|
||
|
112, 113, 136, 7, 7, 139, 114, 115, 116, 117,
|
||
|
122, 123, 132, 125, 126, 127, 128, 129, 130, 131,
|
||
|
8, 8, 9, 10, 136, 137, 138, 139, 140, 141,
|
||
|
25, 143, 141, 145, 142, 147, 148, 24, 72, 26,
|
||
|
27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
|
||
|
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
||
|
144, 48, 72, 44, 45, 46, 30, 48, 144, 64,
|
||
|
72, 8, 9, 10, 140, 70, 8, 9, 10, 74,
|
||
|
60, 25, 77, 78, 79, 60, 81, 24, 83, 26,
|
||
|
85, 60, 24, 88, 26, 27, 28, 92, 93, 94,
|
||
|
64, 140, 97, 98, 70, 100, 70, 72, 103, 104,
|
||
|
74, 145, 7, 77, 78, 79, 111, 81, 7, 83,
|
||
|
30, 85, 140, 140, 88, 8, 9, 10, 92, 93,
|
||
|
94, 133, 134, 97, 98, 145, 100, 140, 7, 103,
|
||
|
104, 24, 139, 96, 141, 140, 141, 111, 101, 75,
|
||
|
75, 30, 70, 75, 64, 70, 60, 110, 121, 12,
|
||
|
70, 141, 25, 143, 74, 96, 141, 77, 78, 79,
|
||
|
101, 81, 141, 83, 140, 85, 140, 141, 88, 110,
|
||
|
145, 144, 92, 93, 94, 64, 7, 97, 98, 142,
|
||
|
100, 70, 141, 103, 104, 74, 145, 141, 77, 78,
|
||
|
79, 111, 81, 7, 83, 30, 85, 132, 25, 88,
|
||
|
132, 142, 12, 92, 93, 94, 120, 60, 97, 98,
|
||
|
12, 100, 148, 141, 103, 104, 141, 12, 96, 12,
|
||
|
140, 141, 111, 101, 8, 9, 10, 141, 25, 64,
|
||
|
90, 91, 110, 65, 66, 70, 41, 42, 43, 74,
|
||
|
65, 66, 77, 78, 79, 12, 81, 25, 83, 25,
|
||
|
85, 140, 141, 88, 123, 124, 25, 92, 93, 94,
|
||
|
64, 25, 97, 98, 142, 100, 70, 120, 103, 104,
|
||
|
74, 25, 25, 77, 78, 79, 111, 81, 30, 83,
|
||
|
48, 85, 140, 141, 88, 140, 141, 30, 92, 93,
|
||
|
94, 140, 141, 97, 98, 60, 100, 60, 60, 103,
|
||
|
104, 61, 72, 75, 70, 140, 141, 111, 67, 70,
|
||
|
87, 99, 70, 70, 64, 70, 72, 102, 89, 70,
|
||
|
70, 71, 70, 70, 74, 70, 70, 77, 78, 79,
|
||
|
70, 81, 70, 83, 70, 85, 140, 141, 88, 70,
|
||
|
144, 70, 92, 93, 94, 64, 70, 97, 98, 72,
|
||
|
100, 70, 72, 103, 104, 74, 72, 72, 77, 78,
|
||
|
79, 111, 81, 75, 83, 75, 85, 89, 86, 88,
|
||
|
79, 101, 118, 92, 93, 94, 87, 95, 97, 98,
|
||
|
87, 100, 87, 87, 103, 104, 118, 105, 106, 95,
|
||
|
140, 141, 111, 95, 115, 64, 114, 115, 116, 117,
|
||
|
135, 70, 115, 120, 132, 74, 120, 140, 77, 78,
|
||
|
79, 119, 81, 139, 83, 140, 85, 120, -1, 88,
|
||
|
120, 140, 141, 92, 93, 94, 64, 121, 97, 98,
|
||
|
121, 100, 70, 122, 103, 104, 74, 135, 135, 77,
|
||
|
78, 79, 111, 81, 139, 83, 139, 85, 135, 135,
|
||
|
88, 135, 135, 135, 92, 93, 94, 142, 95, 97,
|
||
|
98, 140, 100, 140, 140, 103, 104, 140, 105, 106,
|
||
|
140, 140, 141, 111, 140, 140, 64, 114, 115, 116,
|
||
|
117, 140, 70, 140, 140, 140, 74, 140, 140, 77,
|
||
|
78, 79, 140, 81, 140, 83, 140, 85, 41, 42,
|
||
|
88, 140, 140, 141, 92, 93, 94, 140, 140, 97,
|
||
|
98, 140, 100, 140, 140, 103, 104, 60, 140, 142,
|
||
|
141, 141, 141, 111, 141, 68, 69, 141, 141, 72,
|
||
|
141, 141, 141, 76, 12, 13, 14, 15, 16, 17,
|
||
|
18, 19, 20, 21, 22, 23, 141, 143, 142, 95,
|
||
|
96, 142, 140, 141, 143, 101, 95, 96, 142, 105,
|
||
|
106, 142, 101, 142, 142, 142, 105, 106, 114, 115,
|
||
|
116, 117, 50, 51, 142, 114, 115, 116, 117, 142,
|
||
|
123, 142, 125, 126, 127, 128, 129, 130, 131, 142,
|
||
|
136, 142, 144, 143, 137, 138, 142, 136, 95, 96,
|
||
|
143, 143, 145, 142, 101, 143, 143, 143, 105, 106,
|
||
|
143, 143, 143, 143, 143, 143, 143, 114, 115, 116,
|
||
|
117, 35, 36, 37, 38, 39, 40, 41, 42, 43,
|
||
|
95, 143, 143, 143, 95, 143, 143, 143, 143, 136,
|
||
|
105, 106, 120, 143, 105, 106, 144, 95, 143, 114,
|
||
|
115, 116, 117, 114, 115, 116, 117, 105, 106, 143,
|
||
|
143, 143, 143, 95, 143, -1, 114, 115, 116, 117,
|
||
|
143, 143, 143, 105, 106, 143, 95, 142, 80, 146,
|
||
|
95, 142, 114, 115, 116, 117, 105, 106, 144, 144,
|
||
|
105, 106, 144, 95, 142, 114, 115, 116, 117, 114,
|
||
|
115, 116, 117, 105, 106, 82, 144, 144, 144, 144,
|
||
|
142, 84, 114, 115, 116, 117, 144, 70, 95, 72,
|
||
|
144, 144, 95, 142, 144, 146, 144, 142, 105, 106,
|
||
|
146, 144, 105, 106, 8, 9, 10, 114, 115, 116,
|
||
|
117, 114, 115, 116, 117, 144, 144, 144, 144, 144,
|
||
|
24, 104, 26, 27, 28, 29, 144, 144, 144, 144,
|
||
|
144, 144, 144, 144, 144, 144, 144, -1, 144, 144,
|
||
|
144, -1, -1, -1, 146, 146, 146, 146, 146, 146,
|
||
|
146, 146, -1, 136, 147, -1, 139, -1, -1, -1,
|
||
|
143, -1, 145
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yybase = [
|
||
|
0, 574, 581, 623, 655, 2, 718, 402, 747, 659,
|
||
|
672, 688, 743, 701, 705, 483, 483, 483, 483, 483,
|
||
|
351, 356, 366, 366, 367, 366, 344, -2, -2, -2,
|
||
|
200, 200, 231, 231, 231, 231, 231, 231, 231, 231,
|
||
|
200, 231, 451, 482, 532, 316, 370, 115, 146, 285,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 401,
|
||
|
401, 401, 401, 401, 401, 401, 401, 401, 401, 44,
|
||
|
474, 429, 476, 481, 487, 488, 739, 740, 741, 734,
|
||
|
733, 416, 736, 539, 541, 342, 542, 543, 552, 557,
|
||
|
559, 536, 567, 737, 755, 569, 735, 738, 123, 123,
|
||
|
123, 123, 123, 123, 123, 123, 123, 122, 11, 336,
|
||
|
336, 336, 336, 336, 336, 336, 336, 336, 336, 336,
|
||
|
336, 336, 336, 336, 227, 227, 173, 577, 577, 577,
|
||
|
577, 577, 577, 577, 577, 577, 577, 577, 79, 178,
|
||
|
846, 8, -3, -3, -3, -3, 642, 706, 706, 706,
|
||
|
706, 157, 179, 242, 431, 431, 360, 431, 525, 368,
|
||
|
767, 767, 767, 767, 767, 767, 767, 767, 767, 767,
|
||
|
767, 767, 350, 375, 315, 315, 652, 652, -81, -81,
|
||
|
-81, -81, 251, 185, 188, 184, -62, 348, 195, 195,
|
||
|
195, 408, 392, 410, 1, 192, 129, 129, 129, -24,
|
||
|
-24, -24, -24, 499, -24, -24, -24, 113, 108, 108,
|
||
|
12, 161, 349, 526, 271, 398, 529, 438, 130, 206,
|
||
|
265, 427, 76, 414, 427, 288, 295, 76, 166, 44,
|
||
|
262, 422, 141, 491, 372, 494, 413, 71, 92, 93,
|
||
|
267, 135, 100, 34, 415, 745, 746, 742, -38, 420,
|
||
|
-10, 135, 147, 744, 498, 107, 26, 493, 144, 377,
|
||
|
363, 369, 332, 363, 400, 377, 588, 377, 376, 377,
|
||
|
360, 37, 582, 376, 377, 374, 376, 388, 363, 364,
|
||
|
412, 369, 377, 441, 443, 390, 106, 332, 377, 390,
|
||
|
377, 400, 64, 590, 591, 323, 592, 589, 593, 649,
|
||
|
608, 362, 500, 399, 407, 620, 625, 636, 365, 354,
|
||
|
614, 524, 425, 359, 355, 423, 570, 578, 357, 406,
|
||
|
414, 394, 352, 403, 531, 433, 403, 653, 434, 385,
|
||
|
417, 411, 444, 310, 318, 501, 425, 668, 757, 380,
|
||
|
637, 684, 403, 609, 387, 87, 325, 638, 382, 403,
|
||
|
639, 403, 696, 503, 615, 403, 697, 384, 435, 425,
|
||
|
352, 352, 352, 700, 66, 699, 583, 702, 707, 704,
|
||
|
748, 721, 749, 584, 750, 358, 583, 722, 751, 682,
|
||
|
215, 613, 422, 436, 389, 447, 221, 257, 752, 403,
|
||
|
403, 506, 499, 403, 395, 685, 397, 426, 753, 392,
|
||
|
391, 647, 683, 403, 418, 754, 221, 723, 587, 724,
|
||
|
450, 568, 507, 648, 509, 327, 725, 353, 497, 610,
|
||
|
454, 622, 455, 461, 404, 510, 373, 732, 612, 247,
|
||
|
361, 664, 463, 405, 692, 641, 464, 465, 511, 343,
|
||
|
437, 335, 409, 396, 665, 293, 467, 468, 472, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, 0, 0, 0, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
||
|
-2, -2, -2, 123, 123, 123, 123, 123, 123, 123,
|
||
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
||
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
||
|
123, 123, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
||
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
||
|
123, 767, 767, 767, 767, 767, 767, 767, 767, 767,
|
||
|
767, 767, 123, 123, 123, 123, 123, 123, 123, 123,
|
||
|
0, 129, 129, 129, 129, -94, -94, -94, 767, 767,
|
||
|
767, 767, 767, 767, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, -94, -94, 129, 129,
|
||
|
767, 767, -24, -24, -24, -24, -24, 108, 108, 108,
|
||
|
-24, 108, 145, 145, 145, 108, 108, 108, 100, 100,
|
||
|
0, 0, 0, 0, 0, 0, 0, 145, 0, 0,
|
||
|
0, 376, 0, 0, 0, 145, 260, 260, 221, 260,
|
||
|
260, 135, 0, 0, 425, 376, 0, 364, 376, 0,
|
||
|
0, 0, 0, 0, 0, 531, 0, 87, 637, 241,
|
||
|
425, 0, 0, 0, 0, 0, 0, 0, 425, 289,
|
||
|
289, 306, 0, 358, 0, 0, 0, 306, 241, 0,
|
||
|
0, 221
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yydefault = [
|
||
|
3,32767,32767, 1,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767, 104, 96, 110, 95, 106,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
358, 358, 122, 122, 122, 122, 122, 122, 122, 122,
|
||
|
316,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
173, 173, 173,32767, 348, 348, 348, 348, 348, 348,
|
||
|
348,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767, 363,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767, 232, 233,
|
||
|
235, 236, 172, 125, 349, 362, 171, 199, 201, 250,
|
||
|
200, 177, 182, 183, 184, 185, 186, 187, 188, 189,
|
||
|
190, 191, 192, 176, 229, 228, 197, 313, 313, 316,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767, 198, 202,
|
||
|
204, 203, 219, 220, 217, 218, 175, 221, 222, 223,
|
||
|
224, 157, 157, 157, 357, 357,32767, 357,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767, 158,32767, 211, 212, 276, 276, 117, 117,
|
||
|
117, 117, 117,32767,32767,32767,32767, 284,32767,32767,
|
||
|
32767,32767,32767, 286,32767,32767, 206, 207, 205,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767, 285,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767, 334, 321, 272,
|
||
|
32767,32767,32767, 265,32767, 107, 109,32767,32767,32767,
|
||
|
32767, 302, 339,32767,32767,32767, 17,32767,32767,32767,
|
||
|
370, 334,32767,32767, 19,32767,32767,32767,32767, 227,
|
||
|
32767, 338, 332,32767,32767,32767,32767,32767,32767, 63,
|
||
|
32767,32767,32767,32767,32767, 63, 281, 63,32767, 63,
|
||
|
32767, 315, 287,32767, 63, 74,32767, 72,32767,32767,
|
||
|
76,32767, 63, 93, 93, 254, 315, 54, 63, 254,
|
||
|
63,32767,32767,32767,32767, 4,32767,32767,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767,32767, 267,32767, 323,32767, 337, 336, 324,32767,
|
||
|
265,32767, 215, 194, 266,32767, 196,32767,32767, 270,
|
||
|
273,32767,32767,32767, 134,32767, 268, 180,32767,32767,
|
||
|
32767,32767, 365,32767,32767, 174,32767,32767,32767, 130,
|
||
|
32767, 61, 332,32767,32767, 355,32767,32767, 332, 269,
|
||
|
208, 209, 210,32767, 121,32767, 310,32767,32767,32767,
|
||
|
32767,32767,32767, 327,32767, 333,32767,32767,32767,32767,
|
||
|
111,32767, 302,32767,32767,32767, 75,32767,32767, 178,
|
||
|
126,32767,32767, 364,32767,32767,32767, 320,32767,32767,
|
||
|
32767,32767,32767, 62,32767,32767, 77,32767,32767,32767,
|
||
|
32767, 332,32767,32767,32767, 115,32767, 169,32767,32767,
|
||
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
||
|
32767, 332,32767,32767,32767,32767,32767,32767,32767, 4,
|
||
|
32767, 151,32767,32767,32767,32767,32767,32767,32767, 25,
|
||
|
25, 3, 137, 3, 137, 25, 101, 25, 25, 137,
|
||
|
93, 93, 25, 25, 25, 144, 25, 25, 25, 25,
|
||
|
25, 25, 25, 25
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yygoto = [
|
||
|
141, 141, 173, 173, 173, 173, 173, 173, 173, 173,
|
||
|
141, 173, 142, 143, 144, 148, 153, 155, 181, 175,
|
||
|
172, 172, 172, 172, 174, 174, 174, 174, 174, 174,
|
||
|
174, 168, 169, 170, 171, 179, 757, 758, 392, 760,
|
||
|
781, 782, 783, 784, 785, 786, 787, 789, 725, 145,
|
||
|
146, 147, 149, 150, 151, 152, 154, 177, 178, 180,
|
||
|
196, 208, 209, 210, 211, 212, 213, 214, 215, 217,
|
||
|
218, 219, 220, 244, 245, 266, 267, 268, 430, 431,
|
||
|
432, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
||
|
191, 192, 156, 157, 158, 159, 176, 160, 194, 161,
|
||
|
162, 163, 164, 195, 165, 193, 139, 166, 167, 452,
|
||
|
452, 452, 452, 452, 452, 452, 452, 452, 452, 452,
|
||
|
453, 453, 453, 453, 453, 453, 453, 453, 453, 453,
|
||
|
453, 551, 551, 551, 464, 491, 394, 394, 394, 394,
|
||
|
394, 394, 394, 394, 394, 394, 394, 394, 394, 394,
|
||
|
394, 394, 394, 394, 407, 552, 552, 552, 810, 810,
|
||
|
662, 662, 662, 662, 662, 594, 283, 595, 510, 399,
|
||
|
399, 567, 679, 632, 849, 850, 863, 660, 714, 426,
|
||
|
222, 622, 622, 622, 622, 223, 617, 623, 494, 395,
|
||
|
395, 395, 395, 395, 395, 395, 395, 395, 395, 395,
|
||
|
395, 395, 395, 395, 395, 395, 395, 465, 472, 514,
|
||
|
904, 398, 398, 425, 425, 459, 425, 419, 322, 421,
|
||
|
421, 393, 396, 412, 422, 428, 460, 463, 473, 481,
|
||
|
501, 5, 476, 284, 327, 1, 15, 2, 6, 7,
|
||
|
550, 550, 550, 8, 9, 10, 668, 16, 11, 17,
|
||
|
12, 18, 13, 19, 14, 704, 328, 881, 881, 643,
|
||
|
628, 626, 626, 624, 626, 526, 401, 652, 647, 847,
|
||
|
847, 847, 847, 847, 847, 847, 847, 847, 847, 847,
|
||
|
437, 438, 441, 447, 477, 479, 497, 290, 910, 910,
|
||
|
400, 400, 486, 880, 880, 263, 913, 910, 303, 255,
|
||
|
723, 306, 822, 821, 306, 896, 896, 896, 861, 304,
|
||
|
323, 410, 913, 913, 897, 316, 420, 769, 658, 559,
|
||
|
879, 671, 536, 324, 466, 565, 311, 311, 311, 801,
|
||
|
241, 676, 496, 439, 440, 442, 444, 448, 475, 631,
|
||
|
858, 311, 285, 286, 603, 495, 712, 0, 406, 321,
|
||
|
0, 0, 0, 314, 0, 0, 429, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 411
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yygcheck = [
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 35,
|
||
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
||
|
86, 86, 86, 86, 86, 86, 86, 86, 86, 86,
|
||
|
86, 6, 6, 6, 21, 21, 35, 35, 35, 35,
|
||
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
||
|
35, 35, 35, 35, 71, 7, 7, 7, 35, 35,
|
||
|
35, 35, 35, 35, 35, 29, 44, 29, 35, 86,
|
||
|
86, 12, 12, 12, 12, 12, 12, 12, 12, 75,
|
||
|
40, 35, 35, 35, 35, 40, 35, 35, 35, 82,
|
||
|
82, 82, 82, 82, 82, 82, 82, 82, 82, 82,
|
||
|
82, 82, 82, 82, 82, 82, 82, 36, 36, 36,
|
||
|
104, 82, 82, 28, 28, 28, 28, 28, 28, 28,
|
||
|
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
||
|
28, 13, 42, 42, 42, 2, 13, 2, 13, 13,
|
||
|
5, 5, 5, 13, 13, 13, 54, 13, 13, 13,
|
||
|
13, 13, 13, 13, 13, 67, 67, 83, 83, 5,
|
||
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 93,
|
||
|
93, 93, 93, 93, 93, 93, 93, 93, 93, 93,
|
||
|
52, 52, 52, 52, 52, 52, 52, 4, 105, 105,
|
||
|
89, 89, 94, 84, 84, 92, 105, 105, 26, 92,
|
||
|
71, 4, 91, 91, 4, 84, 84, 84, 97, 30,
|
||
|
70, 30, 105, 105, 102, 27, 30, 72, 50, 10,
|
||
|
84, 55, 46, 9, 30, 11, 90, 90, 90, 80,
|
||
|
30, 56, 30, 85, 85, 85, 85, 85, 85, 43,
|
||
|
96, 90, 44, 44, 34, 77, 69, -1, 4, 90,
|
||
|
-1, -1, -1, 4, -1, -1, 4, -1, -1, -1,
|
||
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
|
-1, -1, -1, -1, 71
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yygbase = [
|
||
|
0, 0, -286, 0, 10, 239, 130, 154, 0, -10,
|
||
|
25, -23, -29, -289, 0, -30, 0, 0, 0, 0,
|
||
|
0, 83, 0, 0, 0, 0, 245, 84, -11, 142,
|
||
|
-28, 0, 0, 0, -13, -88, -42, 0, 0, 0,
|
||
|
-344, 0, -38, -12, -188, 0, 23, 0, 0, 0,
|
||
|
66, 0, 247, 0, 205, 24, -18, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 13, 0, -15,
|
||
|
85, 74, 70, 0, 0, 148, 0, -14, 0, 0,
|
||
|
-6, 0, -35, 11, 47, 278, -77, 0, 0, 44,
|
||
|
68, 43, 38, 72, 94, 0, -16, 109, 0, 0,
|
||
|
0, 0, 87, 0, 170, 34, 0
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yygdefault = [
|
||
|
-32768, 362, 3, 546, 382, 570, 571, 572, 307, 305,
|
||
|
560, 566, 467, 4, 568, 140, 295, 575, 296, 500,
|
||
|
577, 414, 579, 580, 308, 309, 415, 315, 216, 593,
|
||
|
503, 313, 596, 357, 602, 301, 449, 383, 350, 461,
|
||
|
221, 423, 456, 630, 282, 638, 540, 646, 649, 450,
|
||
|
657, 352, 433, 434, 667, 672, 677, 680, 334, 325,
|
||
|
474, 684, 685, 256, 689, 511, 512, 703, 242, 711,
|
||
|
317, 724, 342, 788, 790, 397, 408, 484, 797, 326,
|
||
|
800, 384, 385, 386, 387, 435, 818, 815, 289, 866,
|
||
|
287, 443, 254, 853, 468, 356, 903, 862, 288, 388,
|
||
|
389, 302, 898, 341, 905, 912, 458
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yylhs = [
|
||
|
0, 1, 2, 2, 4, 4, 3, 3, 3, 3,
|
||
|
3, 3, 3, 3, 3, 8, 8, 10, 10, 10,
|
||
|
10, 9, 9, 11, 13, 13, 14, 14, 14, 14,
|
||
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
||
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
||
|
5, 5, 5, 5, 5, 5, 5, 5, 33, 33,
|
||
|
34, 27, 27, 30, 30, 6, 7, 7, 7, 37,
|
||
|
37, 37, 38, 38, 41, 41, 39, 39, 42, 42,
|
||
|
22, 22, 29, 29, 32, 32, 31, 31, 43, 23,
|
||
|
23, 23, 23, 44, 44, 45, 45, 46, 46, 20,
|
||
|
20, 16, 16, 47, 18, 18, 48, 17, 17, 19,
|
||
|
19, 36, 36, 49, 49, 50, 50, 51, 51, 51,
|
||
|
51, 52, 52, 53, 53, 54, 54, 24, 24, 55,
|
||
|
55, 55, 25, 25, 56, 56, 40, 40, 57, 57,
|
||
|
57, 57, 62, 62, 63, 63, 64, 64, 64, 64,
|
||
|
65, 66, 66, 61, 61, 58, 58, 60, 60, 68,
|
||
|
68, 67, 67, 67, 67, 67, 67, 59, 59, 69,
|
||
|
69, 26, 26, 21, 21, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||
|
15, 15, 15, 71, 77, 77, 79, 79, 80, 81,
|
||
|
81, 81, 81, 81, 81, 86, 86, 35, 35, 35,
|
||
|
72, 72, 87, 87, 82, 82, 88, 88, 88, 88,
|
||
|
88, 73, 73, 73, 76, 76, 76, 78, 78, 93,
|
||
|
93, 93, 93, 93, 93, 93, 93, 93, 93, 93,
|
||
|
93, 93, 93, 12, 12, 12, 12, 12, 12, 74,
|
||
|
74, 74, 74, 94, 94, 96, 96, 95, 95, 97,
|
||
|
97, 28, 28, 28, 28, 99, 99, 98, 98, 98,
|
||
|
98, 98, 100, 100, 84, 84, 89, 89, 83, 83,
|
||
|
101, 101, 101, 101, 90, 90, 90, 90, 85, 85,
|
||
|
91, 91, 91, 70, 70, 102, 102, 102, 75, 75,
|
||
|
103, 103, 104, 104, 104, 104, 92, 92, 92, 92,
|
||
|
105, 105, 105, 105, 105, 105, 105, 106, 106, 106
|
||
|
];
|
||
|
|
||
|
PHP.Parser.prototype.yylen = [
|
||
|
1, 1, 2, 0, 1, 3, 1, 1, 1, 1,
|
||
|
3, 5, 4, 3, 3, 3, 1, 1, 3, 2,
|
||
|
4, 3, 1, 3, 2, 0, 1, 1, 1, 1,
|
||
|
3, 7, 10, 5, 7, 9, 5, 2, 3, 2,
|
||
|
3, 2, 3, 3, 3, 3, 1, 2, 5, 7,
|
||
|
8, 10, 5, 1, 5, 3, 3, 2, 1, 2,
|
||
|
8, 1, 3, 0, 1, 9, 7, 6, 5, 1,
|
||
|
2, 2, 0, 2, 0, 2, 0, 2, 1, 3,
|
||
|
1, 4, 1, 4, 1, 4, 1, 3, 3, 3,
|
||
|
4, 4, 5, 0, 2, 4, 3, 1, 1, 1,
|
||
|
4, 0, 2, 5, 0, 2, 6, 0, 2, 0,
|
||
|
3, 1, 0, 1, 3, 3, 5, 0, 1, 1,
|
||
|
1, 1, 0, 1, 3, 1, 2, 3, 1, 1,
|
||
|
2, 4, 3, 1, 1, 3, 2, 0, 3, 3,
|
||
|
8, 3, 1, 3, 0, 2, 4, 5, 4, 4,
|
||
|
3, 1, 1, 1, 3, 1, 1, 0, 1, 1,
|
||
|
2, 1, 1, 1, 1, 1, 1, 1, 3, 1,
|
||
|
3, 3, 1, 0, 1, 1, 6, 3, 4, 4,
|
||
|
1, 2, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
|
3, 3, 3, 2, 2, 2, 2, 3, 3, 3,
|
||
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
|
3, 3, 3, 2, 2, 2, 2, 3, 3, 3,
|
||
|
3, 3, 3, 3, 3, 3, 3, 3, 5, 4,
|
||
|
4, 4, 2, 2, 4, 2, 2, 2, 2, 2,
|
||
|
2, 2, 2, 2, 2, 2, 1, 4, 3, 3,
|
||
|
2, 9, 10, 3, 0, 4, 1, 3, 2, 4,
|
||
|
6, 8, 4, 4, 4, 1, 1, 1, 2, 3,
|
||
|
1, 1, 1, 1, 1, 1, 0, 3, 3, 4,
|
||
|
4, 0, 2, 3, 0, 1, 1, 0, 3, 1,
|
||
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
|
3, 2, 1, 1, 3, 2, 2, 4, 3, 1,
|
||
|
3, 3, 3, 0, 2, 0, 1, 3, 1, 3,
|
||
|
1, 1, 1, 1, 1, 6, 4, 3, 6, 4,
|
||
|
4, 4, 1, 3, 1, 2, 1, 1, 4, 1,
|
||
|
3, 6, 4, 4, 4, 4, 1, 4, 0, 1,
|
||
|
1, 3, 1, 3, 1, 1, 4, 0, 0, 2,
|
||
|
3, 1, 3, 1, 4, 2, 2, 2, 1, 2,
|
||
|
1, 4, 3, 3, 3, 6, 3, 1, 1, 1
|
||
|
];
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.yyn0 = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn1 = function ( attributes ) {
|
||
|
this.yyval = this.Stmt_Namespace_postprocess(this.yyastk[ this.stackPos-(1-1) ]);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn2 = function ( attributes ) {
|
||
|
if (Array.isArray(this.yyastk[ this.stackPos-(2-2) ])) { this.yyval = this.yyastk[ this.stackPos-(2-1) ].concat( this.yyastk[ this.stackPos-(2-2) ]); } else { this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ]; };
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn3 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn4 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn5 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn6 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn7 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn8 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn9 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_HaltCompiler(attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn10 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Namespace(this.Node_Name(this.yyastk[ this.stackPos-(3-2) ], attributes), null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn11 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Namespace(this.Node_Name(this.yyastk[ this.stackPos-(5-2) ], attributes), this.yyastk[ this.stackPos-(5-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn12 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Namespace(null, this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn13 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Use(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn14 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Const(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn15 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn16 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn17 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_UseUse(this.Node_Name(this.yyastk[ this.stackPos-(1-1) ], attributes), null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn18 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_UseUse(this.Node_Name(this.yyastk[ this.stackPos-(3-1) ], attributes), this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn19 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_UseUse(this.Node_Name(this.yyastk[ this.stackPos-(2-2) ], attributes), null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn20 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_UseUse(this.Node_Name(this.yyastk[ this.stackPos-(4-2) ], attributes), this.yyastk[ this.stackPos-(4-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn21 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn22 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn23 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Const(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn24 = function ( attributes ) {
|
||
|
if (Array.isArray(this.yyastk[ this.stackPos-(2-2) ])) { this.yyval = this.yyastk[ this.stackPos-(2-1) ].concat( this.yyastk[ this.stackPos-(2-2) ]); } else { this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ]; };
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn25 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn26 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn27 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn28 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn29 = function ( attributes ) {
|
||
|
throw new Error('__halt_compiler() can only be used from the outermost scope');
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn30 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn31 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_If(this.yyastk[ this.stackPos-(7-3) ], {'stmts': Array.isArray(this.yyastk[ this.stackPos-(7-5) ]) ? this.yyastk[ this.stackPos-(7-5) ] : [this.yyastk[ this.stackPos-(7-5) ]], 'elseifs': this.yyastk[ this.stackPos-(7-6) ], 'Else': this.yyastk[ this.stackPos-(7-7) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn32 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_If(this.yyastk[ this.stackPos-(10-3) ], {'stmts': this.yyastk[ this.stackPos-(10-6) ], 'elseifs': this.yyastk[ this.stackPos-(10-7) ], 'else': this.yyastk[ this.stackPos-(10-8) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn33 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_While(this.yyastk[ this.stackPos-(5-3) ], this.yyastk[ this.stackPos-(5-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn34 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Do(this.yyastk[ this.stackPos-(7-5) ], Array.isArray(this.yyastk[ this.stackPos-(7-2) ]) ? this.yyastk[ this.stackPos-(7-2) ] : [this.yyastk[ this.stackPos-(7-2) ]], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn35 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_For({'init': this.yyastk[ this.stackPos-(9-3) ], 'cond': this.yyastk[ this.stackPos-(9-5) ], 'loop': this.yyastk[ this.stackPos-(9-7) ], 'stmts': this.yyastk[ this.stackPos-(9-9) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn36 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Switch(this.yyastk[ this.stackPos-(5-3) ], this.yyastk[ this.stackPos-(5-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn37 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Break(null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn38 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Break(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn39 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Continue(null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn40 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Continue(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn41 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Return(null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn42 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Return(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn43 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Global(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn44 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Static(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn45 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Echo(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn46 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_InlineHTML(this.yyastk[ this.stackPos-(1-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn47 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn48 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Unset(this.yyastk[ this.stackPos-(5-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn49 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Foreach(this.yyastk[ this.stackPos-(7-3) ], this.yyastk[ this.stackPos-(7-5) ], {'keyVar': null, 'byRef': false, 'stmts': this.yyastk[ this.stackPos-(7-7) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn50 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Foreach(this.yyastk[ this.stackPos-(8-3) ], this.yyastk[ this.stackPos-(8-6) ], {'keyVar': null, 'byRef': true, 'stmts': this.yyastk[ this.stackPos-(8-8) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn51 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Foreach(this.yyastk[ this.stackPos-(10-3) ], this.yyastk[ this.stackPos-(10-8) ], {'keyVar': this.yyastk[ this.stackPos-(10-5) ], 'byRef': this.yyastk[ this.stackPos-(10-7) ], 'stmts': this.yyastk[ this.stackPos-(10-10) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn52 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Declare(this.yyastk[ this.stackPos-(5-3) ], this.yyastk[ this.stackPos-(5-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn53 = function ( attributes ) {
|
||
|
this.yyval = []; /* means: no statement */
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn54 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_TryCatch(this.yyastk[ this.stackPos-(5-3) ], this.yyastk[ this.stackPos-(5-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn55 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Throw(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn56 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Goto(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn57 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Label(this.yyastk[ this.stackPos-(2-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn58 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn59 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn60 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Catch(this.yyastk[ this.stackPos-(8-3) ], this.yyastk[ this.stackPos-(8-4) ].substring( 1 ), this.yyastk[ this.stackPos-(8-7) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn61 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn62 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn63 = function ( attributes ) {
|
||
|
this.yyval = false;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn64 = function ( attributes ) {
|
||
|
this.yyval = true;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn65 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Function(this.yyastk[ this.stackPos-(9-3) ], {'byRef': this.yyastk[ this.stackPos-(9-2) ], 'params': this.yyastk[ this.stackPos-(9-5) ], 'stmts': this.yyastk[ this.stackPos-(9-8) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn66 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Class(this.yyastk[ this.stackPos-(7-2) ], {'type': this.yyastk[ this.stackPos-(7-1) ], 'Extends': this.yyastk[ this.stackPos-(7-3) ], 'Implements': this.yyastk[ this.stackPos-(7-4) ], 'stmts': this.yyastk[ this.stackPos-(7-6) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn67 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Interface(this.yyastk[ this.stackPos-(6-2) ], {'Extends': this.yyastk[ this.stackPos-(6-3) ], 'stmts': this.yyastk[ this.stackPos-(6-5) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn68 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Trait(this.yyastk[ this.stackPos-(5-2) ], this.yyastk[ this.stackPos-(5-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn69 = function ( attributes ) {
|
||
|
this.yyval = 0;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn70 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_ABSTRACT;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn71 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_FINAL;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn72 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn73 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(2-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn74 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn75 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(2-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn76 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn77 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(2-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn78 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn79 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn80 = function ( attributes ) {
|
||
|
this.yyval = Array.isArray(this.yyastk[ this.stackPos-(1-1) ]) ? this.yyastk[ this.stackPos-(1-1) ] : [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn81 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn82 = function ( attributes ) {
|
||
|
this.yyval = Array.isArray(this.yyastk[ this.stackPos-(1-1) ]) ? this.yyastk[ this.stackPos-(1-1) ] : [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn83 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn84 = function ( attributes ) {
|
||
|
this.yyval = Array.isArray(this.yyastk[ this.stackPos-(1-1) ]) ? this.yyastk[ this.stackPos-(1-1) ] : [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn85 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn86 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn87 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn88 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_DeclareDeclare(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn89 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn90 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-3) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn91 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn92 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(5-3) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn93 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn94 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn95 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Case(this.yyastk[ this.stackPos-(4-2) ], this.yyastk[ this.stackPos-(4-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn96 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Case(null, this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn97 = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn98 = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn99 = function ( attributes ) {
|
||
|
this.yyval = Array.isArray(this.yyastk[ this.stackPos-(1-1) ]) ? this.yyastk[ this.stackPos-(1-1) ] : [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn100 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn101 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn102 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn103 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_ElseIf(this.yyastk[ this.stackPos-(5-3) ], Array.isArray(this.yyastk[ this.stackPos-(5-5) ]) ? this.yyastk[ this.stackPos-(5-5) ] : [this.yyastk[ this.stackPos-(5-5) ]], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn104 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn105 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn106 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_ElseIf(this.yyastk[ this.stackPos-(6-3) ], this.yyastk[ this.stackPos-(6-6) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn107 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn108 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Else(Array.isArray(this.yyastk[ this.stackPos-(2-2) ]) ? this.yyastk[ this.stackPos-(2-2) ] : [this.yyastk[ this.stackPos-(2-2) ]], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn109 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn110 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Else(this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn111 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn112 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn113 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn114 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn115 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Param(this.yyastk[ this.stackPos-(3-3) ].substring( 1 ), null, this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn116 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Param(this.yyastk[ this.stackPos-(5-3) ].substring( 1 ), this.yyastk[ this.stackPos-(5-5) ], this.yyastk[ this.stackPos-(5-1) ], this.yyastk[ this.stackPos-(5-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn117 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn118 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn119 = function ( attributes ) {
|
||
|
this.yyval = 'array';
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn120 = function ( attributes ) {
|
||
|
this.yyval = 'callable';
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn121 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn122 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn123 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn124 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn125 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Arg(this.yyastk[ this.stackPos-(1-1) ], false, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn126 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Arg(this.yyastk[ this.stackPos-(2-2) ], true, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn127 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn128 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn129 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(1-1) ].substring( 1 ), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn130 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn131 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn132 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn133 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn134 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_StaticVar(this.yyastk[ this.stackPos-(1-1) ].substring( 1 ), null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn135 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_StaticVar(this.yyastk[ this.stackPos-(3-1) ].substring( 1 ), this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn136 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn137 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn138 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_Property(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn139 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_ClassConst(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn140 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_ClassMethod(this.yyastk[ this.stackPos-(8-4) ], {'type': this.yyastk[ this.stackPos-(8-1) ], 'byRef': this.yyastk[ this.stackPos-(8-3) ], 'params': this.yyastk[ this.stackPos-(8-6) ], 'stmts': this.yyastk[ this.stackPos-(8-8) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn141 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_TraitUse(this.yyastk[ this.stackPos-(3-2) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn142 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn143 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn144 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn145 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn146 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_TraitUseAdaptation_Precedence(this.yyastk[ this.stackPos-(4-1) ][0], this.yyastk[ this.stackPos-(4-1) ][1], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn147 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_TraitUseAdaptation_Alias(this.yyastk[ this.stackPos-(5-1) ][0], this.yyastk[ this.stackPos-(5-1) ][1], this.yyastk[ this.stackPos-(5-3) ], this.yyastk[ this.stackPos-(5-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn148 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_TraitUseAdaptation_Alias(this.yyastk[ this.stackPos-(4-1) ][0], this.yyastk[ this.stackPos-(4-1) ][1], this.yyastk[ this.stackPos-(4-3) ], null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn149 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_TraitUseAdaptation_Alias(this.yyastk[ this.stackPos-(4-1) ][0], this.yyastk[ this.stackPos-(4-1) ][1], null, this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn150 = function ( attributes ) {
|
||
|
this.yyval = array(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ]);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn151 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn152 = function ( attributes ) {
|
||
|
this.yyval = array(null, this.yyastk[ this.stackPos-(1-1) ]);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn153 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn154 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn155 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn156 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_PUBLIC;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn157 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_PUBLIC;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn158 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn159 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn160 = function ( attributes ) {
|
||
|
this.Stmt_Class_verifyModifier(this.yyastk[ this.stackPos-(2-1) ], this.yyastk[ this.stackPos-(2-2) ]); this.yyval = this.yyastk[ this.stackPos-(2-1) ] | this.yyastk[ this.stackPos-(2-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn161 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_PUBLIC;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn162 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_PROTECTED;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn163 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_PRIVATE;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn164 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_STATIC;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn165 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_ABSTRACT;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn166 = function ( attributes ) {
|
||
|
this.yyval = this.MODIFIER_FINAL;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn167 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn168 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn169 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_PropertyProperty(this.yyastk[ this.stackPos-(1-1) ].substring( 1 ), null, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn170 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Stmt_PropertyProperty(this.yyastk[ this.stackPos-(3-1) ].substring( 1 ), this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn171 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn172 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn173 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn174 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn175 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn176 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignList(this.yyastk[ this.stackPos-(6-3) ], this.yyastk[ this.stackPos-(6-6) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn177 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Assign(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn178 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignRef(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn179 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignRef(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn180 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn181 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Clone(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn182 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignPlus(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn183 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignMinus(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn184 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignMul(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn185 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignDiv(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn186 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignConcat(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn187 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignMod(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn188 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignBitwiseAnd(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn189 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignBitwiseOr(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn190 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignBitwiseXor(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn191 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignShiftLeft(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn192 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_AssignShiftRight(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn193 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PostInc(this.yyastk[ this.stackPos-(2-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn194 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PreInc(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn195 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PostDec(this.yyastk[ this.stackPos-(2-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn196 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PreDec(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn197 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BooleanOr(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn198 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BooleanAnd(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn199 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_LogicalOr(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn200 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_LogicalAnd(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn201 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_LogicalXor(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn202 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BitwiseOr(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn203 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BitwiseAnd(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn204 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BitwiseXor(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn205 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Concat(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn206 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Plus(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn207 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Minus(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn208 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Mul(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn209 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Div(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn210 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Mod(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn211 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ShiftLeft(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn212 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ShiftRight(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn213 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_UnaryPlus(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn214 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_UnaryMinus(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn215 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BooleanNot(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn216 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_BitwiseNot(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn217 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Identical(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn218 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_NotIdentical(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn219 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Equal(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn220 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_NotEqual(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn221 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Smaller(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn222 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_SmallerOrEqual(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn223 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Greater(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn224 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_GreaterOrEqual(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn225 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Instanceof(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn226 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn227 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn228 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Ternary(this.yyastk[ this.stackPos-(5-1) ], this.yyastk[ this.stackPos-(5-3) ], this.yyastk[ this.stackPos-(5-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn229 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Ternary(this.yyastk[ this.stackPos-(4-1) ], null, this.yyastk[ this.stackPos-(4-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn230 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Isset(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn231 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Empty(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn232 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Include(this.yyastk[ this.stackPos-(2-2) ], "Node_Expr_Include", attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn233 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Include(this.yyastk[ this.stackPos-(2-2) ], "Node_Expr_IncludeOnce", attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn234 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Eval(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn235 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Include(this.yyastk[ this.stackPos-(2-2) ], "Node_Expr_Require", attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn236 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Include(this.yyastk[ this.stackPos-(2-2) ], "Node_Expr_RequireOnce", attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn237 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_Int(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn238 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_Double(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn239 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_String(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn240 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_Array(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn241 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_Object(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn242 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_Bool(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn243 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Cast_Unset(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn244 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Exit(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn245 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ErrorSuppress(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn246 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn247 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Array(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn248 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Array(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn249 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ShellExec(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn250 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Print(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn251 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Closure({'static': false, 'byRef': this.yyastk[ this.stackPos-(9-2) ], 'params': this.yyastk[ this.stackPos-(9-4) ], 'uses': this.yyastk[ this.stackPos-(9-6) ], 'stmts': this.yyastk[ this.stackPos-(9-8) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn252 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Closure({'static': true, 'byRef': this.yyastk[ this.stackPos-(10-3) ], 'params': this.yyastk[ this.stackPos-(10-5) ], 'uses': this.yyastk[ this.stackPos-(10-7) ], 'stmts': this.yyastk[ this.stackPos-(10-9) ]}, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn253 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_New(this.yyastk[ this.stackPos-(3-2) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn254 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn255 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-3) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn256 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn257 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn258 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ClosureUse(this.yyastk[ this.stackPos-(2-2) ].substring( 1 ), this.yyastk[ this.stackPos-(2-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn259 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_FuncCall(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn260 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_StaticCall(this.yyastk[ this.stackPos-(6-1) ], this.yyastk[ this.stackPos-(6-3) ], this.yyastk[ this.stackPos-(6-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn261 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_StaticCall(this.yyastk[ this.stackPos-(8-1) ], this.yyastk[ this.stackPos-(8-4) ], this.yyastk[ this.stackPos-(8-7) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn262 = function ( attributes ) {
|
||
|
|
||
|
if (this.yyastk[ this.stackPos-(4-1) ].type === "Node_Expr_StaticPropertyFetch") {
|
||
|
this.yyval = this.Node_Expr_StaticCall(this.yyastk[ this.stackPos-(4-1) ].Class, this.Node_Expr_Variable(this.yyastk[ this.stackPos-(4-1) ].name, attributes), this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
} else if (this.yyastk[ this.stackPos-(4-1) ].type === "Node_Expr_ArrayDimFetch") {
|
||
|
var tmp = this.yyastk[ this.stackPos-(4-1) ];
|
||
|
while (tmp.variable.type === "Node_Expr_ArrayDimFetch") {
|
||
|
tmp = tmp.variable;
|
||
|
}
|
||
|
|
||
|
this.yyval = this.Node_Expr_StaticCall(tmp.variable.Class, this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
tmp.variable = this.Node_Expr_Variable(tmp.variable.name, attributes);
|
||
|
} else {
|
||
|
throw new Exception;
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn263 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_FuncCall(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn264 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn265 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Name('static', attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn266 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn267 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Name(this.yyastk[ this.stackPos-(1-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn268 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Name_FullyQualified(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn269 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Name_Relative(this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn270 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn271 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn272 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn273 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn274 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn275 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn276 = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn277 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PropertyFetch(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn278 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PropertyFetch(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn279 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn280 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn281 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn282 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn283 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn284 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn285 = function ( attributes ) {
|
||
|
this.yyval = [this.Scalar_String_parseEscapeSequences(this.yyastk[ this.stackPos-(1-1) ], '`')];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn286 = function ( attributes ) {
|
||
|
; this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn287 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn288 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn289 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Scalar_LNumber(this.Scalar_LNumber_parse(this.yyastk[ this.stackPos-(1-1) ]), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn290 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Scalar_DNumber(this.Scalar_DNumber_parse(this.yyastk[ this.stackPos-(1-1) ]), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn291 = function ( attributes ) {
|
||
|
this.yyval = this.Scalar_String_create(this.yyastk[ this.stackPos-(1-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn292 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_LineConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn293 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_FileConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn294 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_DirConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn295 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_ClassConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn296 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_TraitConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn297 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_MethodConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn298 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_FuncConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn299 = function ( attributes ) {
|
||
|
this.yyval = {type: "Node_Scalar_NSConst", attributes: attributes};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn300 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Scalar_String(this.Scalar_String_parseDocString(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-2) ]), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn301 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Scalar_String('', attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn302 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ConstFetch(this.yyastk[ this.stackPos-(1-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn303 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn304 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ClassConstFetch(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn305 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_UnaryPlus(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn306 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_UnaryMinus(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn307 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Array(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn308 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Array(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn309 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn310 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ClassConstFetch(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn311 = function ( attributes ) {
|
||
|
; this.yyval = this.Node_Scalar_Encapsed(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn312 = function ( attributes ) {
|
||
|
; this.yyval = this.Node_Scalar_Encapsed(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn313 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn314 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn315 = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn316 = function () {
|
||
|
this.yyval = this.yyastk[ this.stackPos ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn317 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn318 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn319 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayItem(this.yyastk[ this.stackPos-(3-3) ], this.yyastk[ this.stackPos-(3-1) ], false, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn320 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayItem(this.yyastk[ this.stackPos-(1-1) ], null, false, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn321 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn322 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn323 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn324 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn325 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(6-2) ], this.yyastk[ this.stackPos-(6-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn326 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn327 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PropertyFetch(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn328 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_MethodCall(this.yyastk[ this.stackPos-(6-1) ], this.yyastk[ this.stackPos-(6-3) ], this.yyastk[ this.stackPos-(6-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn329 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_FuncCall(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn330 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn331 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn332 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn333 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn334 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn335 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(2-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn336 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn337 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn338 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_StaticPropertyFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn339 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn340 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_StaticPropertyFetch(this.yyastk[ this.stackPos-(3-1) ], this.yyastk[ this.stackPos-(3-3) ].substring( 1 ), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn341 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_StaticPropertyFetch(this.yyastk[ this.stackPos-(6-1) ], this.yyastk[ this.stackPos-(6-5) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn342 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn343 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn344 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn345 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.yyastk[ this.stackPos-(4-1) ], this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn346 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(1-1) ].substring( 1 ), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn347 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn348 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn349 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn350 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn351 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn352 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn353 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn354 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn355 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(1-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn356 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(4-3) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn357 = function ( attributes ) {
|
||
|
this.yyval = null;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn358 = function ( attributes ) {
|
||
|
this.yyval = [];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn359 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn360 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(3-1) ].push( this.yyastk[ this.stackPos-(3-3) ] ); this.yyval = this.yyastk[ this.stackPos-(3-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn361 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn362 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayItem(this.yyastk[ this.stackPos-(3-3) ], this.yyastk[ this.stackPos-(3-1) ], false, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn363 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayItem(this.yyastk[ this.stackPos-(1-1) ], null, false, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn364 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayItem(this.yyastk[ this.stackPos-(4-4) ], this.yyastk[ this.stackPos-(4-1) ], true, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn365 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayItem(this.yyastk[ this.stackPos-(2-2) ], null, true, attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn366 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn367 = function ( attributes ) {
|
||
|
this.yyastk[ this.stackPos-(2-1) ].push( this.yyastk[ this.stackPos-(2-2) ] ); this.yyval = this.yyastk[ this.stackPos-(2-1) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn368 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(1-1) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn369 = function ( attributes ) {
|
||
|
this.yyval = [this.yyastk[ this.stackPos-(2-1) ], this.yyastk[ this.stackPos-(2-2) ]];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn370 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(1-1) ].substring( 1 ), attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn371 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.Node_Expr_Variable(this.yyastk[ this.stackPos-(4-1) ].substring( 1 ), attributes), this.yyastk[ this.stackPos-(4-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn372 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_PropertyFetch(this.Node_Expr_Variable(this.yyastk[ this.stackPos-(3-1) ].substring( 1 ), attributes), this.yyastk[ this.stackPos-(3-3) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn373 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn374 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(3-2) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn375 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_ArrayDimFetch(this.Node_Expr_Variable(this.yyastk[ this.stackPos-(6-2) ], attributes), this.yyastk[ this.stackPos-(6-4) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn376 = function ( attributes ) {
|
||
|
this.yyval = this.yyastk[ this.stackPos-(3-2) ];
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn377 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Scalar_String(this.yyastk[ this.stackPos-(1-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn378 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Scalar_String(this.yyastk[ this.stackPos-(1-1) ], attributes);
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.yyn379 = function ( attributes ) {
|
||
|
this.yyval = this.Node_Expr_Variable(this.yyastk[ this.stackPos-(1-1) ].substring( 1 ), attributes);
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* @author Niklas von Hertzen <niklas at hertzen.com>
|
||
|
* @created 20.7.2012
|
||
|
* @website http://hertzen.com
|
||
|
*/
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Stmt_Namespace_postprocess = function( a ) {
|
||
|
return a;
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Echo = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Echo",
|
||
|
exprs: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_If = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_If",
|
||
|
cond: arguments[ 0 ],
|
||
|
stmts: arguments[ 1 ].stmts,
|
||
|
elseifs: arguments[ 1 ].elseifs,
|
||
|
Else: arguments[ 1 ].Else || null,
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_For = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Stmt_For",
|
||
|
init: arguments[ 0 ].init,
|
||
|
cond: arguments[ 0 ].cond,
|
||
|
loop: arguments[ 0 ].loop,
|
||
|
stmts: arguments[ 0 ].stmts,
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Function = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Function",
|
||
|
name: arguments[ 0 ],
|
||
|
byRef: arguments[ 1 ].byRef,
|
||
|
params: arguments[ 1 ].params,
|
||
|
stmts: arguments[ 1 ].stmts,
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Stmt_Class_verifyModifier = function() {
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Namespace = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Namespace",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Use = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Use",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_UseUse = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_UseUse",
|
||
|
name: arguments[ 0 ],
|
||
|
as: arguments[1],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_TraitUseAdaptation_Precedence = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_TraitUseAdaptation_Precedence",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_TraitUseAdaptation_Alias = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_TraitUseAdaptation_Alias",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Trait = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Trait",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_TraitUse = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_TraitUse",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Class = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Class",
|
||
|
name: arguments[ 0 ],
|
||
|
Type: arguments[ 1 ].type,
|
||
|
Extends: arguments[ 1 ].Extends,
|
||
|
Implements: arguments[ 1 ].Implements,
|
||
|
stmts: arguments[ 1 ].stmts,
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_ClassMethod = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_ClassMethod",
|
||
|
name: arguments[ 0 ],
|
||
|
Type: arguments[ 1 ].type,
|
||
|
byRef: arguments[ 1 ].byRef,
|
||
|
params: arguments[ 1 ].params,
|
||
|
stmts: arguments[ 1 ].stmts,
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_ClassConst = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_ClassConst",
|
||
|
consts: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Interface = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Interface",
|
||
|
name: arguments[ 0 ],
|
||
|
Extends: arguments[ 1 ].Extends,
|
||
|
stmts: arguments[ 1 ].stmts,
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Throw = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Throw",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Catch = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Catch",
|
||
|
Type: arguments[ 0 ],
|
||
|
variable: arguments[ 1 ],
|
||
|
stmts: arguments[ 2 ],
|
||
|
attributes: arguments[ 3 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_TryCatch = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_TryCatch",
|
||
|
stmts: arguments[ 0 ],
|
||
|
catches: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Foreach = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Foreach",
|
||
|
expr: arguments[ 0 ],
|
||
|
valueVar: arguments[ 1 ],
|
||
|
keyVar: arguments[ 2 ].keyVar,
|
||
|
byRef: arguments[ 2 ].byRef,
|
||
|
stmts: arguments[ 2 ].stmts,
|
||
|
attributes: arguments[ 3 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_While = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_While",
|
||
|
cond: arguments[ 0 ],
|
||
|
stmts: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Do = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Do",
|
||
|
cond: arguments[ 0 ],
|
||
|
stmts: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Break = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Break",
|
||
|
num: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Continue = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Continue",
|
||
|
num: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Return = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Return",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Case = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Case",
|
||
|
cond: arguments[ 0 ],
|
||
|
stmts: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Switch = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Switch",
|
||
|
cond: arguments[ 0 ],
|
||
|
cases: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Else = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Stmt_Else",
|
||
|
stmts: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_ElseIf = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_ElseIf",
|
||
|
cond: arguments[ 0 ],
|
||
|
stmts: arguments[ 1 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_InlineHTML = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_InlineHTML",
|
||
|
value: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_StaticVar = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_StaticVar",
|
||
|
name: arguments[ 0 ],
|
||
|
def: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Static = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Static",
|
||
|
vars: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Global = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Global",
|
||
|
vars: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_PropertyProperty = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_PropertyProperty",
|
||
|
name: arguments[ 0 ],
|
||
|
def: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Property = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Property",
|
||
|
Type: arguments[ 0 ],
|
||
|
props: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Stmt_Unset = function() {
|
||
|
return {
|
||
|
type: "Node_Stmt_Unset",
|
||
|
variables: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
/*
|
||
|
* @author Niklas von Hertzen <niklas at hertzen.com>
|
||
|
* @created 20.7.2012
|
||
|
* @website http://hertzen.com
|
||
|
*/
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Variable = function( a ) {
|
||
|
return {
|
||
|
type: "Node_Expr_Variable",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_FuncCall = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_FuncCall",
|
||
|
func: arguments[ 0 ],
|
||
|
args: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_MethodCall = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_MethodCall",
|
||
|
variable: arguments[ 0 ],
|
||
|
name: arguments[ 1 ],
|
||
|
args: arguments[ 2 ],
|
||
|
attributes: arguments[ 3 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_StaticCall = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_StaticCall",
|
||
|
Class: arguments[ 0 ],
|
||
|
func: arguments[ 1 ],
|
||
|
args: arguments[ 2 ],
|
||
|
attributes: arguments[ 3 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Ternary = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Ternary",
|
||
|
cond: arguments[ 0 ],
|
||
|
If: arguments[ 1 ],
|
||
|
Else: arguments[ 2 ],
|
||
|
attributes: arguments[ 3 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignList = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignList",
|
||
|
assignList: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Assign = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Assign",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignConcat = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignConcat",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignMinus = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignMinus",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignPlus = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignPlus",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignDiv = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignDiv",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignRef = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignRef",
|
||
|
variable: arguments[ 0 ],
|
||
|
refVar: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignMul = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignMul",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_AssignMod = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_AssignMod",
|
||
|
variable: arguments[ 0 ],
|
||
|
expr: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Plus = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Plus",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Minus = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Minus",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Mul = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Mul",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Div = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Div",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Mod = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Mod",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Greater = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Greater",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Equal = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Equal",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_NotEqual = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_NotEqual",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Identical = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Identical",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_NotIdentical = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_NotIdentical",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_GreaterOrEqual = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_GreaterOrEqual",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_SmallerOrEqual = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_SmallerOrEqual",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Concat = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Concat",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Smaller = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Smaller",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_PostInc = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_PostInc",
|
||
|
variable: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_PostDec = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_PostDec",
|
||
|
variable: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_PreInc = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_PreInc",
|
||
|
variable: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_PreDec = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_PreDec",
|
||
|
variable: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Include = function() {
|
||
|
return {
|
||
|
expr: arguments[ 0 ],
|
||
|
type: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_ArrayDimFetch = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_ArrayDimFetch",
|
||
|
variable: arguments[ 0 ],
|
||
|
dim: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_StaticPropertyFetch = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_StaticPropertyFetch",
|
||
|
Class: arguments[ 0 ],
|
||
|
name: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_ClassConstFetch = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_ClassConstFetch",
|
||
|
Class: arguments[ 0 ],
|
||
|
name: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_StaticPropertyFetch = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_StaticPropertyFetch",
|
||
|
Class: arguments[ 0 ],
|
||
|
name: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_ConstFetch = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_ConstFetch",
|
||
|
name: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_ArrayItem = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_ArrayItem",
|
||
|
value: arguments[ 0 ],
|
||
|
key: arguments[ 1 ],
|
||
|
byRef: arguments[ 2 ],
|
||
|
attributes: arguments[ 3 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Array = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Array",
|
||
|
items: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_PropertyFetch = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_PropertyFetch",
|
||
|
variable: arguments[ 0 ],
|
||
|
name: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_New = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_New",
|
||
|
Class: arguments[ 0 ],
|
||
|
args: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Print = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Print",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Exit = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Exit",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Cast_Bool = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Cast_Bool",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Cast_Int = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Cast_Int",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Cast_String = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Cast_String",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Cast_Double = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Cast_Double",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Cast_Array = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Cast_Array",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Cast_Object = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Cast_Object",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_ErrorSuppress = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_ErrorSuppress",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Isset = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Isset",
|
||
|
variables: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_UnaryMinus = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_UnaryMinus",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_UnaryPlus = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_UnaryPlus",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Empty = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_Empty",
|
||
|
variable: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_BooleanOr = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_BooleanOr",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_LogicalOr = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_LogicalOr",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_LogicalAnd = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_LogicalAnd",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_LogicalXor = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_LogicalXor",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_BitwiseAnd = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_BitwiseAnd",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_BitwiseOr = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_BitwiseOr",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_BitwiseNot = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_BitwiseNot",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_BooleanNot = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_BooleanNot",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_BooleanAnd = function() {
|
||
|
return {
|
||
|
type: "Node_Expr_BooleanAnd",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Instanceof = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Instanceof",
|
||
|
left: arguments[ 0 ],
|
||
|
right: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Expr_Clone = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Expr_Clone",
|
||
|
expr: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
/*
|
||
|
* @author Niklas von Hertzen <niklas at hertzen.com>
|
||
|
* @created 20.7.2012
|
||
|
* @website http://hertzen.com
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Scalar_LNumber_parse = function( a ) {
|
||
|
|
||
|
return a;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Scalar_DNumber_parse = function( a ) {
|
||
|
|
||
|
return a;
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Scalar_String_parseDocString = function() {
|
||
|
|
||
|
return '"' + arguments[ 1 ].replace(/([^"\\]*(?:\\.[^"\\]*)*)"/g, '$1\\"') + '"';
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Scalar_String = function( ) {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Scalar_String",
|
||
|
value: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Scalar_String_create = function( ) {
|
||
|
return {
|
||
|
type: "Node_Scalar_String",
|
||
|
value: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Scalar_LNumber = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Scalar_LNumber",
|
||
|
value: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Scalar_DNumber = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Scalar_DNumber",
|
||
|
value: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
PHP.Parser.prototype.Node_Scalar_Encapsed = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Scalar_Encapsed",
|
||
|
parts: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Name = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Name",
|
||
|
parts: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Name_FullyQualified = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Name_FullyQualified",
|
||
|
parts: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Name_Relative = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Name_Relative",
|
||
|
parts: arguments[ 0 ],
|
||
|
attributes: arguments[ 1 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Param = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Param",
|
||
|
name: arguments[ 0 ],
|
||
|
def: arguments[ 1 ],
|
||
|
Type: arguments[ 2 ],
|
||
|
byRef: arguments[ 3 ],
|
||
|
attributes: arguments[ 4 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Arg = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Name",
|
||
|
value: arguments[ 0 ],
|
||
|
byRef: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
PHP.Parser.prototype.Node_Const = function() {
|
||
|
|
||
|
return {
|
||
|
type: "Node_Const",
|
||
|
name: arguments[ 0 ],
|
||
|
value: arguments[ 1 ],
|
||
|
attributes: arguments[ 2 ]
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
exports.PHP = PHP;
|
||
|
});
|