1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
|
-------------------------------------------------------------------------------
-- SPDX-FileCopyrightText: 2008 Niko Sams <niko.sams@gmail.com>
--
-- SPDX-License-Identifier: LGPL-2.0-or-later
-----------------------------------------------------------
-----------------------------------------------------------
-- Grammar for PHP 5.2
-- Modelled after the Zend Grammar shipped with PHP5.2
-- source, the PHP Language Reference documentation,
-- and parts taken from KDevelop Java Grammar
-----------------------------------------------------------
-- 4 first/first conflicts:
-- - var_expression: variable vs. varExpressionNormal
-- no problem because of ifs that allow always just one rule
-- - classNameReference: STRING vs. staticMember (foo vs. foo::$bar)
-- resolved by LA()
-- - encapsVar: STRING_VARNAME LBRACKET vs. expr (expr allows STRING_VARNAME too - but not LBRACKET)
-- resolved by LA()
-- - constantOrClassConst: constant vs. class constant (FOO v.s Cls::FOO)
-- resolved by LA() (could be avoided, but the Ast is much cleaner that way)
-- 1 first/follow conflicts:
-- - elseifList: dangling-else conflict - should be ok
-- TODO: (post 1.0.0 release)
-- 1) decrease memory consumption
-- 1.1) use quint32 instead of qint64 for end/start tokens
-- 1.2) investigate whether using a map/hash for the ducontext member of all
-- ast nodes gives a significant memory decrease while not hampering performance
-- 1.3) investigate how unions could be used for exclusive AST node members
-- 1.4) see whether we can always use the expression lists instead of both
-- single member pointer and list of members, esp. in expressions
-- 2) better cope with invalid code, have at least a partial AST
-- 3) investigate whether expanding the visitor lookup to a
-- (albeit huge) switch() in KDev-PG-Qt gives a significant performance gain
-- I have the gut feeling that the current lookup takes unnecessary much time
--
------------------------------------------------------------
-- Forward declaration in phpast.h
------------------------------------------------------------
[:
#include <QtCore/QRegularExpression>
namespace KDevelop
{
class DUContext;
}
:]
------------------------------------------------------------
-- Additional includes for the parser
------------------------------------------------------------
%parser_declaration_header "parser/tokenstream.h"
%parser_declaration_header "QtCore/QString"
%parser_declaration_header "language/duchain/problem.h"
%parser_declaration_header "parser/phplexer.h"
%parser_bits_header "parserdebug.h"
------------------------------------------------------------
-- Export macro to use the parser in a shared lib
------------------------------------------------------------
%export_macro "KDEVPHPPARSER_EXPORT"
%export_macro_header "parserexport.h"
------------------------------------------------------------
-- Enumeration types for additional AST members,
-- in the global "Php" namespace
------------------------------------------------------------
%namespace
[:
class Lexer;
enum ModifierFlags {
ModifierPrivate = 1,
ModifierPublic = 1 << 1,
ModifierProtected = 1 << 2,
ModifierStatic = 1 << 3,
ModifierFinal = 1 << 4,
ModifierAbstract = 1 << 5
};
enum ClassModifier {
NormalClass,
AbstractClass,
FinalClass
};
enum ScalarTypes {
ScalarTypeInt,
ScalarTypeFloat,
ScalarTypeString
};
enum CastType {
CastInt,
CastDouble,
CastString,
CastArray,
CastObject,
CastBool,
CastUnset
};
enum OperationType {
OperationPlus = 1,
OperationMinus,
OperationConcat,
OperationMul,
OperationDiv,
OperationExp,
OperationMod,
OperationAnd,
OperationOr,
OperationXor,
OperationSl,
OperationSr,
OperationSpaceship,
};
enum UseImportType {
NamespaceOrClassImport,
ConstantImport,
FunctionImport
};
:]
------------------------------------------------------------
-- Ast Node class members
------------------------------------------------------------
%ast_extra_members
[:
KDevelop::DUContext* ducontext;
:]
------------------------------------------------------------
-- Parser class members
------------------------------------------------------------
%parserclass (public declaration)
[:
/**
* Transform the raw input into tokens.
* When this method returns, the parser's token stream has been filled
* and any parse*() method can be called.
*/
void tokenize(const QString& contents, int initialState = Lexer::HtmlState);
enum ProblemType {
Error,
Warning,
Info,
Todo
};
KDevelop::ProblemPointer reportProblem( Parser::ProblemType type, const QString& message, int tokenOffset = -1 );
QList<KDevelop::ProblemPointer> problems() {
return m_problems;
}
QString tokenText(qint64 begin, qint64 end);
void setDebug(bool debug);
void setCurrentDocument(KDevelop::IndexedString url);
void setTodoMarkers(const QStringList& markers);
void extractTodosFromComment(const QString& comment, qint64 offset);
enum InitialLexerState {
HtmlState = 0,
DefaultState = 1
};
enum ParserUseImportType {
NamespaceOrClassImport,
ConstantImport,
FunctionImport
};
ParserUseImportType m_useImportType;
ParserUseImportType m_useCompoundImportType;
:]
%parserclass (private declaration)
[:
enum VarExpressionState {
Normal,
OnlyVariable,
OnlyNewObject
};
QString m_contents;
bool m_debug;
KDevelop::IndexedString m_currentDocument;
QList<KDevelop::ProblemPointer> m_problems;
struct ParserState {
VarExpressionState varExpressionState;
bool varExpressionIsVariable;
};
ParserState m_state;
QRegularExpression m_todoMarkers;
:]
%parserclass (constructor)
[:
m_state.varExpressionState = Normal;
m_state.varExpressionIsVariable = false;
:]
%token_stream TokenStream ;;
-----------------------------------------------------------
-- List of defined tokens
-----------------------------------------------------------
-- keywords:
%token ABSTRACT ("abstract"), BREAK ("break"), CASE ("case"), CATCH ("catch"),
CLASS ("class"), CONST ("const"), CONTINUE ("continue"),
DEFAULT ("default"), DO ("do"), ELSE ("else"), EXTENDS ("extends"),
FINAL ("final"), FOR ("for"), IF ("if"),
IMPLEMENTS ("implements"), INSTANCEOF ("instanceof"), INTERFACE ("interface"),
NEW ("new"), PRIVATE ("private"), PROTECTED ("protected"), PUBLIC ("public"),
RETURN ("return"), STATIC ("static"), SWITCH ("switch"), THROW ("throw"),
TRY ("try"), WHILE ("while"), ECHO ("echo"), PRINT ("print"), FINALLY ("finally"),
CLONE ("clone"), EXIT ("exit"), ELSEIF ("elseif"), ENDIF ("endif"),
ENDWHILE ("endwhile"), ENDFOR ("endfor"), FOREACH ("foreach"), ENDFOREACH ("endforeach"),
DECLARE ("declare"), ENDDECLARE ("enddeclare"), AS ("as"), ENDSWITCH ("endswitch"),
FUNCTION ("function"), USE ("use"), GLOBAL ("global"), VAR ("var "), UNSET ("unset"),
ISSET ("isset"), EMPTY ("empty"), HALT_COMPILER ("halt compiler"),
DOUBLE_ARROW ("=>"), LIST ("list"), ARRAY ("array"), CLASS_C ("__CLASS__"),
METHOD_C ("__METHOD__"), FUNC_C ("__FUNCTION__"), LINE ("__LINE__"),
FILE ("__FILE__"), COMMENT ("comment"), DOC_COMMENT ("doc comment"), PAAMAYIM_NEKUDOTAYIM ("::"),
INCLUDE ("include"), INCLUDE_ONCE ("include_once"), EVAL ("eval"), REQUIRE ("require"),
REQUIRE_ONCE ("require_once"), NAMESPACE ("namespace"), NAMESPACE_C("__NAMESPACE__"), USE("use"),
GOTO ("goto"), TRAIT ("trait"), INSTEADOF ("insteadof"), CALLABLE ("callable"),
VOID ("void"), DIR ("__DIR__"), TRAIT_C ("__TRAIT__"), YIELD ("yield"), YIELD_FROM("yield from") ;;
-- casts:
%token INT_CAST ("int cast"), DOUBLE_CAST ("double cast"), STRING_CAST ("string cast"),
ARRAY_CAST ("array cast"), OBJECT_CAST ("object cast"), BOOL_CAST ("bool cast"),
UNSET_CAST ("unset cast") ;;
-- seperators:
%token SEMICOLON (";"), DOUBLE_QUOTE ("\""), LBRACKET ("["),
RBRACKET ("]"),
LPAREN ("("), RPAREN (")"), LBRACE ("{"), RBRACE ("}"),
COMMA (","), AT ("@"),
CURLY_OPEN ("curly open"), -- { in "{$foo}"; not the same as LBRACE
DOLLAR_OPEN_CURLY_BRACES ("${"),
START_HEREDOC ("start heredoc"), END_HEREDOC ("end heredoc"),
BACKTICK ("`"), BACKSLASH ("\\"),
START_NOWDOC("start nowdoc"), END_NOWDOC("end nowdoc") ;;
-- operators:
%token IS_EQUAL ("=="), IS_NOT_EQUAL ("!="), IS_IDENTICAL ("==="),
IS_NOT_IDENTICAL ("!=="), IS_SMALLER ("<"), IS_GREATER (">"),
IS_SMALLER_OR_EQUAL ("<="), IS_GREATER_OR_EQUAL (">="),
BOOLEAN_OR ("||"), BOOLEAN_AND ("&&"), ASSIGN ("="), EXP_ASSIGN("**="),
PLUS_ASSIGN ("+="), MINUS_ASSIGN ("-="), MUL_ASSIGN ("*="), DIV_ASSIGN ("/="),
CONCAT_ASSIGN (".="), MOD_ASSIGN ("%="), AND_ASSIGN ("&="), OR_ASSIGN ("|="),
XOR_ASSIGN ("^="), SL_ASSIGN ("<<="), SR_ASSIGN (">>="), OBJECT_OPERATOR ("->"),
PLUS ("+"), MINUS("-"), CONCAT("."),
INC ("++"), DEC ("--"), BANG ("!"), QUESTION ("?"), COLON (":"),
BIT_AND ("&"), BIT_OR("|"), BIT_XOR ("^"),
SL ("<<"), SR (">>"), MUL("*"), DIV("/"), MOD ("%"),
TILDE ("~"), DOLLAR ("$"), EXP ("**"), ELLIPSIS ("..."),
NULL_COALESCE ("??"), SPACESHIP ("<=>"),
LOGICAL_OR ("logical or"), LOGICAL_AND ("logical and"), LOGICAL_XOR ("logical xor") ;;
-- literals and identifiers:
%token INLINE_HTML ("inline html"), WHITESPACE ("whitespace"),
CONSTANT_ENCAPSED_STRING ("constant encapsed string"),
VARIABLE ("variable"), ENCAPSED_AND_WHITESPACE ("encapsed and whitespace"),
DNUMBER ("double number"), LNUMBER ("long number"),
NUM_STRING ("num string"), STRING ("string"),
STRING_VARNAME ("string varname") ;; -- when in "${varname}"
-- open/close tags
%token OPEN_TAG ("<?"), CLOSE_TAG ("?>"), OPEN_TAG_WITH_ECHO ("<?=");;
-- token that makes the parser fail in any case:
%token INVALID ("invalid token") ;;
-- The actual grammar starts here.
#statements=outerTopStatement*
-> start ;;
namespaceDeclaration=namespaceDeclarationStatement
| statement=topStatement
-> outerTopStatement ;;
-- first/first conflict for FUNCTION
(?[: (LA(1).kind == Token_FUNCTION && ((LA(2).kind == Token_BIT_AND && LA(3).kind == Token_LPAREN)
|| LA(2).kind == Token_LPAREN))
|| LA(1).kind != Token_FUNCTION :]
statement=statement )
| functionDeclaration=functionDeclarationStatement
| classDeclaration=classDeclarationStatement
| traitDeclaration=traitDeclarationStatement
| interfaceDeclaration=interfaceDeclarationStatement
| HALT_COMPILER LPAREN RPAREN SEMICOLON -- Lexer stops allready
-> topStatement ;;
[: bool reported = false; while ( true ) { :]
try/recover(#statements=topStatement)*
[: if (yytoken != Token_RBRACE && yytoken != Token_EOF && yytoken != Token_CLOSE_TAG
&& yytoken != Token_ELSEIF && yytoken != Token_ELSE
&& yytoken != Token_ENDIF && yytoken != Token_ENDFOREACH && yytoken != Token_ENDFOR
&& yytoken != Token_ENDWHILE && yytoken != Token_ENDSWITCH && yytoken != Token_ENDDECLARE
&& yytoken != Token_CASE && yytoken != Token_DEFAULT) {
if (!reported) {
qint64 index = tokenStream->index() - 1;
Token &token = tokenStream->at(index);
QString tokenValue = token.kind != 0 ? tokenText(token.begin, token.end) : QStringLiteral("EOF");
reportProblem(Error, QStringLiteral("Unexpected token \"%1\".").arg(tokenValue));
reported = true;
}
yylex();
} else {
break;
}
} :]
-> innerStatementList ;;
--Operator Precedence, from PHP Manual
--left or
--left xor
--left and
--right print
--right = += -= *= /= .= %= &= |= ^= <<= >>= assignment
--left ? : ternary
--right ?? comparison
--left || logical
--left && logical
--left | bitwise
--left ^ bitwise
--left & bitwise and references
--non-associative == != === !== <=> comparison
--non-associative < <= > >= comparison
--left << >> bitwise
--left + - . arithmetic and string
--left * / % arithmetic
--non-associative ! ~ - (int) (float) (string) (array) (object) @ types
--non-associative ++ -- increment/decrement
--left [ array()
--non-associative new new
expression=logicalOrExpression
-> expr ;;
#expression=logicalXorExpression @ LOGICAL_OR
-> logicalOrExpression ;;
#expression=logicalAndExpression @ LOGICAL_XOR
-> logicalXorExpression ;;
#expression=printExpression @ LOGICAL_AND
-> logicalAndExpression ;;
(print=PRINT | 0) expression=assignmentExpression
-> printExpression ;;
-- leftside must me a variable, we check afterwards if it was a variable and
-- if not we report an error
0 --needed for line below
[: m_state.varExpressionIsVariable = false; :] --reset flag
expression=conditionalExpression
(
assignmentExpressionEqual=assignmentExpressionEqual | (
(
PLUS_ASSIGN [: (*yynode)->operation = OperationPlus; :]
| MINUS_ASSIGN [: (*yynode)->operation = OperationMinus; :]
| MUL_ASSIGN [: (*yynode)->operation = OperationMul; :]
| EXP_ASSIGN [: (*yynode)->operation = OperationExp; :]
| DIV_ASSIGN [: (*yynode)->operation = OperationDiv; :]
| CONCAT_ASSIGN [: (*yynode)->operation = OperationConcat; :]
| MOD_ASSIGN [: (*yynode)->operation = OperationMod; :]
| AND_ASSIGN [: (*yynode)->operation = OperationAnd; :]
| OR_ASSIGN [: (*yynode)->operation = OperationOr; :]
| XOR_ASSIGN [: (*yynode)->operation = OperationXor; :]
| SL_ASSIGN [: (*yynode)->operation = OperationSl; :]
| SR_ASSIGN [: (*yynode)->operation = OperationSr; :]
)
assignmentExpressionCheckIfVariable
assignmentExpression=assignmentExpression)
| 0)
-> assignmentExpression [
member variable operation: OperationType;
];;
--=& is special:
-- $foo =& $var; is allowed but not $foo =& 'static';
-- $foo =& new bar(); is allowed too but deprecated and reports a warning
--we set a flag (varExpressionState) with that var_expression accepts only valid parts
--this is done in such a strage way because we need the full expression to allow
--things like $foo =& $bar || e();
ASSIGN
assignmentExpressionCheckIfVariable --as in assignmentExpression
(BIT_AND [: if (yytoken == Token_NEW) {
reportProblem(Warning, QStringLiteral("=& new foo() is deprecated"), -2);
m_state.varExpressionState = OnlyNewObject;
} else {
m_state.varExpressionState = OnlyVariable;
}:]
| 0) assignmentExpression=assignmentExpression [: m_state.varExpressionState = Normal; :]
-> assignmentExpressionEqual ;;
-- check if var_expression was a variable, if not report an error
-- varExpressionIsVariable is set in var_expression
0 --to allow cpp-code
[:
if (!m_state.varExpressionIsVariable) {
reportProblem(Error, QStringLiteral("Left side is not a variable"));
return false;
}
:]
-> assignmentExpressionCheckIfVariable ;;
expression=nullCoalesceExpression
( QUESTION (ifExpression=expr|0)
COLON elseExpression=conditionalExpression
| 0
)
-> conditionalExpression ;;
#expression=booleanOrExpression @ NULL_COALESCE
-> nullCoalesceExpression ;;
#expression=booleanAndExpression @ BOOLEAN_OR
-> booleanOrExpression ;;
#expression=bitOrExpression @ BOOLEAN_AND
-> booleanAndExpression ;;
#expression=bitXorExpression @ BIT_OR
-> bitOrExpression ;;
#expression=bitAndExpression @ BIT_XOR
-> bitXorExpression ;;
#expression=equalityExpression @ BIT_AND
-> bitAndExpression ;;
expression=relationalExpression
(additionalExpression=equalityExpressionRest | 0)
-> equalityExpression ;;
( IS_EQUAL | IS_NOT_EQUAL | IS_IDENTICAL | IS_NOT_IDENTICAL | SPACESHIP [: (*yynode)->operation = OperationSpaceship; :] )
expression=relationalExpression
-> equalityExpressionRest [
member variable operation: OperationType;
];;
expression=shiftExpression
( additionalExpression=relationalExpressionRest
--instanceof as in java.g (correct??)
| INSTANCEOF instanceofType=classNameReference
| 0
)
-> relationalExpression ;;
( IS_SMALLER | IS_GREATER | IS_SMALLER_OR_EQUAL | IS_GREATER_OR_EQUAL )
expression=shiftExpression
-> relationalExpressionRest ;;
expression=additiveExpression
(#additionalExpression=shiftExpressionRest)*
-> shiftExpression ;;
( SL | SR )
expression=additiveExpression
-> shiftExpressionRest ;;
expression=multiplicativeExpression
(#additionalExpression=additiveExpressionRest)*
-> additiveExpression ;;
(
PLUS [: (*yynode)->operation = OperationPlus; :]
| MINUS [: (*yynode)->operation = OperationMinus; :]
| CONCAT [: (*yynode)->operation = OperationConcat; :]
)
expression=multiplicativeExpression
-> additiveExpressionRest [
member variable operation: OperationType;
];;
expression=unaryExpression
(#additionalExpression=multiplicativeExpressionRest)*
-> multiplicativeExpression ;;
(
MUL [: (*yynode)->operation = OperationMul; :]
| DIV [: (*yynode)->operation = OperationDiv; :]
| EXP [: (*yynode)->operation = OperationExp; :]
| MOD [: (*yynode)->operation = OperationMod; :]
)
expression=unaryExpression
-> multiplicativeExpressionRest [
member variable operation: OperationType;
];;
(
MINUS unaryExpression=unaryExpression
| PLUS unaryExpression=unaryExpression
| BANG unaryExpression=unaryExpression
| TILDE unaryExpression=unaryExpression
| INT_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastInt; :]
| DOUBLE_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastDouble; :]
| STRING_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastString; :]
| ARRAY_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastArray; :]
| OBJECT_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastObject; :]
| BOOL_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastBool; :]
| UNSET_CAST unaryExpression=unaryExpression [: (*yynode)->castType = CastUnset; :]
| AT unaryExpression=unaryExpression
| LIST LPAREN assignmentList=assignmentList RPAREN ASSIGN unaryExpression=unaryExpression
| EXIT (LPAREN (expression=expr | 0) RPAREN | 0)
| EVAL LPAREN expression=expr RPAREN
| INCLUDE includeExpression=unaryExpression
| INCLUDE_ONCE includeExpression=unaryExpression
| REQUIRE includeExpression=unaryExpression
| REQUIRE_ONCE includeExpression=unaryExpression
| unaryExpressionNotPlusminus=unaryExpressionNotPlusminus
)
-> unaryExpression [
member variable castType: CastType;
];;
(#prefixOperator=postprefixOperator)*
varExpression=varExpression
(#postfixOperator=postprefixOperator)*
-> unaryExpressionNotPlusminus ;;
op=INC | op=DEC
-> postprefixOperator ;;
-- 10 first follow conflicts because we go back up the chain (affects both print and yield)
(print=PRINT+) printExpression=assignmentExpression
| isGenerator=YIELD (generatorExpression=printExpression ( DOUBLE_ARROW generatorValueExpr=printExpression | 0 ) | 0)
| isGenerator=YIELD_FROM generatorExpression=printExpression
--first/first conflict - no problem because of ifs
| ?[: m_state.varExpressionState == OnlyVariable :] 0 [: m_state.varExpressionState = Normal; :] variable=variable
| ?[: m_state.varExpressionState == OnlyNewObject :] 0 [: m_state.varExpressionState = Normal; :] newObject=varExpressionNewObject
| varExpressionNormal=varExpressionNormal
| varExpressionArray=varExpressionArray arrayIndex=arrayIndexSpecifier*
-> varExpression ;;
(?[: LA(1).kind == Token_LPAREN && LA(2).kind == Token_FUNCTION && LA(3).kind == Token_LPAREN :] iife=iifeSyntax )
| LPAREN try/rollback (newObject=varExpressionNewObject RPAREN (#variableProperties=instantiationAccess*))
catch (expression=expr RPAREN)
| BACKTICK encapsList=encapsList BACKTICK
--try/rollback resolves conflict scalar vs. staticMember (foo::bar vs. foo::$bar)
--varExpressionIsVariable flag is needed for assignmentExpression
| try/rollback (variable=variable [: m_state.varExpressionIsVariable = true; :])
catch (scalar=scalar)
| ISSET LPAREN (#issetVariable=variable @ COMMA) RPAREN
| EMPTY LPAREN emptyExpression=expr RPAREN
| newObject=varExpressionNewObject
| CLONE cloneCar=varExpressionNormal
| closure=closure
-> varExpressionNormal ;;
ARRAY LPAREN
(#arrayValues=arrayPairValue
-- break because array(1,) is allowed (solves FIRST/FOLLOW conflict)
@ (COMMA [: if (yytoken == Token_RPAREN) { break; } :] ) | 0)
RPAREN
| LBRACKET
(#arrayValues=arrayPairValue
-- break because [1,] is allowed (solves FIRST/FOLLOW conflict)
@ (COMMA [: if (yytoken == Token_RBRACKET) { break; } :] ) | 0)
RBRACKET
-> varExpressionArray ;;
-- https://wiki.php.net/rfc/closures
FUNCTION (isRef=BIT_AND|0) LPAREN parameters=parameterList RPAREN
( USE LPAREN lexicalVars=lexicalVarList RPAREN | 0)
( COLON returnType=returnType | 0)
LBRACE try/recover(functionBody=innerStatementList) RBRACE
-> closure ;;
LPAREN try/rollback (closure=closure RPAREN LPAREN parameterList=functionCallParameterList RPAREN)
catch (expression=expr RPAREN)
-> iifeSyntax ;;
(#lexicalVars=lexicalVar
-- break because (1,) is allowed
@ (COMMA [: if (yytoken == Token_RPAREN) { break; } :] ) | 0 [: reportProblem(Error, QStringLiteral("Use list of closure must not be empty.")); :])
-> lexicalVarList ;;
(isRef=BIT_AND | 0) variable=variableIdentifier
-> lexicalVar ;;
NEW classNameReference=classNameReference ctor=ctorArguments
-> varExpressionNewObject ;;
LPAREN parameterList=functionCallParameterList RPAREN
| 0
-> ctorArguments ;;
(#parameters=functionCallParameterListElement
-- break because (1,) is allowed
@ (COMMA [: if (yytoken == Token_RPAREN) { break; } :] ) | 0)
-> functionCallParameterList ;;
(BIT_AND variable=variable) | (isVariadic=ELLIPSIS | 0) expr=expr
-> functionCallParameterListElement ;;
#element=assignmentListElement @COMMA
-> assignmentList ;;
variable=variable
| LIST LPAREN assignmentList=assignmentList RPAREN
| 0
-> assignmentListElement ;;
expr=expr (DOUBLE_ARROW (exprValue=expr | BIT_AND varValue=variable) | 0)
| BIT_AND variable=variable
-> arrayPairValue ;;
var=baseVariableWithFunctionCalls (#variableProperties=variableObjectProperty*)
-> variable ;;
OBJECT_OPERATOR
| PAAMAYIM_NEKUDOTAYIM
-> objectOperator ;;
( ?[: LA(1).kind == Token_DOLLAR:] LBRACE variable=variable RBRACE | objectProperty=objectProperty )
(isFunctionCall=LPAREN parameterList=functionCallParameterList RPAREN arrayIndex=arrayIndexSpecifier* | 0)
-> variableProperty ;;
objectOperator variableProperty=variableProperty
-> variableObjectProperty ;;
OBJECT_OPERATOR variableProperty=variableProperty
-> instantiationAccess ;;
--Conflict
-- foo::$bar[0] (=baseVariable-staticMember)
--vs.foo::$bar[0](); (=static function call)
try/rollback (functionCall=functionCall arrayIndex=arrayIndexSpecifier*)
catch (baseVariable=baseVariable)
-> baseVariableWithFunctionCalls ;;
LBRACKET (expr=expr | 0) RBRACKET
-> arrayIndexSpecifier ;;
LBRACKET (expr=expr) RBRACKET
-> stringIndexSpecifier ;;
stringFunctionNameOrClass=namespacedIdentifier (
LPAREN stringParameterList=functionCallParameterList RPAREN
| PAAMAYIM_NEKUDOTAYIM
(
stringFunctionName=semiReservedIdentifier LPAREN stringParameterList=functionCallParameterList RPAREN
| varFunctionName=variableWithoutObjects LPAREN stringParameterList=functionCallParameterList RPAREN
| LBRACE (expr=expr) RBRACE LPAREN stringParameterList=functionCallParameterList RPAREN
)
)
| varFunctionName=variableWithoutObjects LPAREN varParameterList=functionCallParameterList RPAREN
-> functionCall ;;
var=compoundVariableWithSimpleIndirectReference #offsetItems=dimListItem*
| staticMember=staticMember
-> baseVariable ;;
variable=variableIdentifier
| DOLLAR LBRACE expr=expr RBRACE
-> compoundVariable ;;
( DOLLAR ( DOLLAR+ | 0 ) ( indirectVariable=variableIdentifier | LBRACE expr=expr RBRACE ) | variable=variableIdentifier )
-> compoundVariableWithSimpleIndirectReference ;;
className=namespacedIdentifier staticProperty=staticProperty
-> staticMember ;;
LBRACE try/recover(statements=innerStatementList) RBRACE
| IF LPAREN ifExpr=expr RPAREN
( COLON statements=innerStatementList newElseifList newElseSingle ENDIF semicolonOrCloseTag
| ifStatement=statement elseifList=elseifList elseSingle=elseSingle
)
| WHILE LPAREN whileExpr=expr RPAREN whileStatement=whileStatement
| FOR LPAREN forExpr1=forExpr SEMICOLON forExpr2=forExpr
SEMICOLON forExpr3=forExpr RPAREN forStatement=forStatement
| SWITCH LPAREN swtichExpr=expr RPAREN switchCaseList=switchCaseList
| FOREACH LPAREN (
-- allow $var as &$i and not expr() as &$i
try/rollback(foreachVar=variable AS foreachVarAsVar=foreachVariable)
catch(foreachExpr=expr AS foreachExprAsVar=variable))
(DOUBLE_ARROW foreachVariable=foreachVariable | 0) RPAREN
foreachStatement=foreachStatement
| DECLARE LPAREN declareItem=declareItem @ COMMA RPAREN declareStatement
| SEMICOLON -- empty statement
| TRY LBRACE try/recover(statements=innerStatementList) RBRACE
#catches=catchItem*
(FINALLY LBRACE finallyBody=innerStatementList RBRACE | 0)
| UNSET LPAREN #unsetVariables=variable @ COMMA RPAREN semicolonOrCloseTag
-- fix first/follow with goto target
| ( ?[: LA(1).kind != Token_STRING || LA(2).kind != Token_COLON :] expr=expr semicolonOrCloseTag )
| DO doStatement=statement WHILE LPAREN whileExpr=expr RPAREN semicolonOrCloseTag
| BREAK (breakExpr=expr | 0) semicolonOrCloseTag
| CONTINUE (continueExpr=expr | 0) semicolonOrCloseTag
| RETURN (returnExpr=expr | 0) semicolonOrCloseTag
| GLOBAL #globalVars=globalVar @ COMMA semicolonOrCloseTag
| STATIC #staticVars=staticVar @ COMMA semicolonOrCloseTag
| ECHO #echoExprs=expr @ COMMA semicolonOrCloseTag
| THROW throwExpr=expr semicolonOrCloseTag
-- throws error in zend parser, so ignored | USE use_filename semicolonOrCloseTag
| CLOSE_TAG
| OPEN_TAG
| OPEN_TAG_WITH_ECHO expr=expr semicolonOrCloseTag
| INLINE_HTML
| CONST #consts=constantDeclaration @ COMMA SEMICOLON
| USE useStatement=useStatement
| GOTO gotoLabel=STRING SEMICOLON
| gotoTarget=STRING COLON
-> statement ;;
( useFunction=FUNCTION [: m_useImportType = FunctionImport; :]
| useConst=CONST [: m_useImportType = ConstantImport; :]
| 0 [: m_useImportType = NamespaceOrClassImport; :]
) #useNamespace=useNamespaceOrUseGroupedNamespace @ COMMA SEMICOLON
-> useStatement ;;
[: (*yynode)->useImportType = (UseImportType)(int)m_useImportType; :]
identifier=namespacedIdentifierBeforeGroupedNamespace
(AS aliasIdentifier=identifier | compoundNamespace=compoundNamespace | 0)
-> useNamespaceOrUseGroupedNamespace [
member variable useImportType: UseImportType;
] ;;
LBRACE
#compoundNamespaceStatement=compoundNamespaceStatement
-- break because "use Foo\{bar1,}" is allowed (solves FIRST/FOLLOW conflict)
@ (COMMA [: if (yytoken == Token_RBRACE) { break; } :] )
RBRACE
-> compoundNamespace ;;
( useFunction=FUNCTION [: m_useCompoundImportType = FunctionImport; :]
| useConst=CONST [: m_useCompoundImportType = ConstantImport; :]
| 0 [: m_useCompoundImportType = NamespaceOrClassImport; :]
)
[:
if (m_useImportType != NamespaceOrClassImport && m_useCompoundImportType != NamespaceOrClassImport)
{
reportProblem(Error, QStringLiteral("Can't use mixed import."), -2);
}
:]
#useNamespace=innerUseNamespace
-> compoundNamespaceStatement ;;
[:
if (m_useCompoundImportType != NamespaceOrClassImport) {
(*yynode)->useImportType = (UseImportType)(int)m_useCompoundImportType;
} else {
(*yynode)->useImportType = (UseImportType)(int)m_useImportType;
}
:]
#namespaceName=identifier+ @ BACKSLASH
(AS aliasIdentifier=identifier | 0)
-> innerUseNamespace [
member variable useImportType: UseImportType;
] ;;
identifier=identifier ASSIGN scalar=expr
-> constantDeclaration ;;
identifier=semiReservedIdentifier ASSIGN scalar=expr
-> classConstantDeclaration ;;
SEMICOLON | CLOSE_TAG
-> semicolonOrCloseTag ;;
LBRACE (SEMICOLON | 0) try/recover(caseList=caseList) RBRACE
| COLON (SEMICOLON | 0) caseList=caseList ENDSWITCH semicolonOrCloseTag
-> switchCaseList ;;
#caseItems=case_item*
-> caseList ;;
CASE expr=expr (COLON | SEMICOLON) statements=innerStatementList
| def=DEFAULT (COLON | SEMICOLON) statements=innerStatementList
-> case_item ;;
CATCH LPAREN #catchClass=namespacedIdentifier @ BIT_OR var=variableIdentifier RPAREN
LBRACE try/recover(statements=innerStatementList) RBRACE
-> catchItem ;;
statement=statement
| COLON statements=innerStatementList ENDDECLARE semicolonOrCloseTag
-> declareStatement ;;
STRING ASSIGN scalar=staticScalar
-> declareItem ;;
(BIT_AND | 0) variable=variable
-> foreachVariable ;;
statement=statement
| COLON statements=innerStatementList ENDFOREACH semicolonOrCloseTag
-> foreachStatement ;;
var=variableIdentifier (ASSIGN value=staticScalar | 0)
-> staticVar ;;
var=variableIdentifier
| DOLLAR (dollarVar=variable | LBRACE expr=expr RBRACE)
-> globalVar ;;
#exprs=expr @ COMMA | 0
-> forExpr ;;
statement=statement
| COLON statements=innerStatementList ENDFOR semicolonOrCloseTag
-> forStatement ;;
statement=statement
| COLON statements=innerStatementList ENDWHILE semicolonOrCloseTag
-> whileStatement ;;
--first/follow conflict; todo check if this is a problem
#elseifListItem=elseifListItem*
-> elseifList ;;
ELSEIF LPAREN expr=expr RPAREN statement=statement
-> elseifListItem ;;
ELSE statement=statement | 0
-> elseSingle ;;
#newElseifListItem=newelseifListItem*
-> newElseifList ;;
ELSEIF LPAREN expr=expr RPAREN COLON statements=innerStatementList
-> newelseifListItem ;;
ELSE COLON statements=innerStatementList | 0
-> newElseSingle ;;
className=className (staticProperty=staticProperty #properties=classProperty* | 0)
| baseVariable=variableWithoutObjects #properties=classProperty*
-> classNameReference ;;
identifier=namespacedIdentifier
| staticIdentifier = STATIC
-> className ;;
PAAMAYIM_NEKUDOTAYIM staticProperty=compoundVariableWithSimpleIndirectReference #offsetItems=dimListItem*
-> staticProperty ;;
(staticProperty=staticProperty | OBJECT_OPERATOR property=objectProperty)
-> classProperty ;;
objectDimList=objectDimList
| variableWithoutObjects=variableWithoutObjects
-> objectProperty ;;
variableName=variableName #offsetItems=dimListItem*
-> objectDimList ;;
variable=compoundVariableWithSimpleIndirectReference #offsetItems=dimListItem*
-> variableWithoutObjects ;;
arrayIndex=arrayIndexSpecifier | LBRACE expr=expr RBRACE
-> dimListItem ;;
name=identifier
| LBRACE expr=expr RBRACE
-> variableName ;;
commonScalar=commonScalar
| constantOrClassConst=constantOrClassConst #offsetItem=dimListItem*
| varname=STRING_VARNAME
| DOUBLE_QUOTE encapsList=encapsList DOUBLE_QUOTE stringIndex=stringIndexSpecifier*
| START_HEREDOC encapsList=encapsList END_HEREDOC
-> scalar ;;
constant=namespacedIdentifier
( PAAMAYIM_NEKUDOTAYIM classConstant=classConstant | 0 )
-> constantOrClassConst ;;
semiReservedIdentifier
-> classConstant ;;
#encaps=encaps*
-> encapsList ;;
var=encapsVar | value=ENCAPSED_AND_WHITESPACE
-> encaps ;;
-- first/first conflict resolved by LA(2)
--(expr allows STRING_VARNAME too - but without [expr])
DOLLAR_OPEN_CURLY_BRACES ( ?[: LA(2).kind == Token_LBRACKET:] STRING_VARNAME arrayIndex=arrayIndexSpecifier RBRACE
| expr=expr RBRACE )
| variable=variableIdentifier (OBJECT_OPERATOR propertyIdentifier=identifier | LBRACKET offset=encapsVarOffset RBRACKET | 0)
| CURLY_OPEN expr=expr RBRACE
-> encapsVar ;;
STRING
| NUM_STRING
| variableIdentifier
-> encapsVarOffset ;;
LNUMBER [: (*yynode)->scalarType = ScalarTypeInt; :]
| DNUMBER [: (*yynode)->scalarType = ScalarTypeFloat; :]
| string=CONSTANT_ENCAPSED_STRING [: (*yynode)->scalarType = ScalarTypeString; :] stringIndex=stringIndexSpecifier*
| LINE [: (*yynode)->scalarType = ScalarTypeInt; :]
| DIR [: (*yynode)->scalarType = ScalarTypeString; :]
| FILE [: (*yynode)->scalarType = ScalarTypeString; :]
| CLASS_C [: (*yynode)->scalarType = ScalarTypeString; :]
| TRAIT_C [: (*yynode)->scalarType = ScalarTypeString; :]
| METHOD_C [: (*yynode)->scalarType = ScalarTypeString; :]
| FUNC_C [: (*yynode)->scalarType = ScalarTypeString; :]
| NAMESPACE_C [: (*yynode)->scalarType = ScalarTypeString; :]
| START_NOWDOC STRING END_NOWDOC [: (*yynode)->scalarType = ScalarTypeString; :]
-> commonScalar [
member variable scalarType: ScalarTypes;
] ;;
FUNCTION (BIT_AND | 0) functionName=identifier
LPAREN parameters=parameterList RPAREN (COLON returnType=returnType | 0)
LBRACE try/recover(functionBody=innerStatementList) RBRACE
-> functionDeclarationStatement ;;
(#parameters=parameter
-- break because (1,) is allowed
@ (COMMA [: if (yytoken == Token_RPAREN) { break; } :] ) | 0)
-> parameterList ;;
(parameterType=parameterType | 0) (isRef=BIT_AND | 0)
(isVariadic=ELLIPSIS | 0) variable=variableIdentifier (ASSIGN defaultValue=expr | 0)
-> parameter ;;
genericType=namespacedIdentifier
| arrayType=ARRAY
-> genericTypeHint ;;
(isNullable=QUESTION | 0) (
genericType=genericTypeHint
| callableType=CALLABLE
)
[: (*yynode)->voidType = -1; :]
-> parameterTypeHint[
member variable voidType: int;
] ;;
(isNullable=QUESTION | 0) (
genericType=genericTypeHint
| callableType=CALLABLE
| voidType=VOID
)
-> returnTypeHint ;;
(isNullable=QUESTION | 0)
genericType=genericTypeHint
[: (*yynode)->callableType = -1; :]
[: (*yynode)->voidType = -1; :]
-> propertyTypeHint[
member variable callableType: int;
member variable voidType: int;
] ;;
#unionType=parameterTypeHint @ BIT_OR
-> unionParameterType ;;
typehint=unionParameterType
-> parameterType ;;
#unionType=returnTypeHint @ BIT_OR
-> unionReturnType ;;
typehint=unionReturnType
-> returnType ;;
#unionType=propertyTypeHint @ BIT_OR
-> unionPropertyType ;;
typehint=unionPropertyType
-> propertyType ;;
value=commonScalar
| constantOrClassConst=constantOrClassConst
| PLUS plusValue=staticScalar
| MINUS minusValue=staticScalar
| array=ARRAY LPAREN
(#arrayValues=staticArrayPairValue
-- break because array(1,) is allowed
@ (COMMA [: if (yytoken == Token_RPAREN) { break; } :] ) | 0)
RPAREN
| array=LBRACKET
(#arrayValues=staticArrayPairValue
-- break because [1,] is allowed
@ (COMMA [: if (yytoken == Token_RBRACKET) { break; } :] ) | 0)
RBRACKET
-> staticScalar ;;
#val1=staticScalar (DOUBLE_ARROW #val2=staticScalar | 0)
-> staticArrayPairValue ;;
(isGlobal=BACKSLASH | 0)
#namespaceName=identifier+ @ BACKSLASH
-> namespacedIdentifier ;;
(isGlobal=BACKSLASH | 0)
#namespaceName=identifier+ @ ( BACKSLASH [: if (yytoken == Token_LBRACE) { break; } :] )
-> namespacedIdentifierBeforeGroupedNamespace ;;
string=STRING
-> identifier ;;
INCLUDE | INCLUDE_ONCE | EVAL | REQUIRE | REQUIRE_ONCE | LOGICAL_OR | LOGICAL_XOR | LOGICAL_AND
| INSTANCEOF | NEW | CLONE | EXIT | IF | ELSEIF | ELSE | ENDIF | ECHO | DO | WHILE | ENDWHILE
| FOR | ENDFOR | FOREACH | ENDFOREACH | DECLARE | ENDDECLARE | AS | TRY | CATCH | FINALLY
| THROW | USE | INSTEADOF | GLOBAL | VAR | UNSET | ISSET | EMPTY | CONTINUE | GOTO
| FUNCTION | CONST | RETURN | PRINT | YIELD | LIST | SWITCH | ENDSWITCH | CASE | DEFAULT | BREAK
| ARRAY | CALLABLE | EXTENDS | IMPLEMENTS | NAMESPACE | TRAIT | INTERFACE | CLASS
| CLASS_C | TRAIT_C | FUNC_C | METHOD_C | LINE | FILE | DIR | NAMESPACE_C
-> reservedNonModifiers ;;
reservedNonModifiers
| STATIC | ABSTRACT | FINAL | PRIVATE | PROTECTED | PUBLIC
-> semiReserved ;;
identifier
[:
qint64 index = tokenStream->index() - 2;
(*yynode)->string = index;
:]
| semiReserved
[:
qint64 index = tokenStream->index() - 2;
(*yynode)->string = index;
:]
-> semiReservedIdentifier [
member variable string: qint64;
] ;;
identifier
[:
qint64 index = tokenStream->index() - 2;
(*yynode)->string = index;
:]
| reservedNonModifiers
[:
qint64 index = tokenStream->index() - 2;
(*yynode)->string = index;
:]
-> reservedNonModifierIdentifier [
member variable string: qint64;
] ;;
variable=VARIABLE
-> variableIdentifier ;;
NAMESPACE #namespaceName=identifier* @ BACKSLASH
(
-- the semicolon case needs at least one namespace identifier, the {...} case not...
SEMICOLON [: if (!(*yynode)->namespaceNameSequence) { reportProblem(Error, QStringLiteral("Missing namespace identifier."), -2); } :]
| LBRACE try/recover(body=innerStatementList) RBRACE )
-> namespaceDeclarationStatement ;;
INTERFACE interfaceName=identifier (EXTENDS extends=classImplements | 0)
LBRACE try/recover(body=classBody) RBRACE
-> interfaceDeclarationStatement ;;
TRAIT traitName=identifier
LBRACE body=classBody RBRACE
-> traitDeclarationStatement ;;
modifier=optionalClassModifier CLASS className=identifier
(EXTENDS extends=classExtends | 0)
(IMPLEMENTS implements=classImplements | 0)
LBRACE body=classBody RBRACE
-> classDeclarationStatement ;;
identifier=namespacedIdentifier
-> classExtends ;;
#implements=namespacedIdentifier @ COMMA
-> classImplements ;;
-- error recovery, to understand it you probably have to look at the generated code ;-)
[: bool reported = false; while ( true ) { :]
try/recover(#classStatements=classStatement)*
[: if (yytoken != Token_RBRACE && yytoken != Token_EOF && yytoken != Token_CLOSE_TAG) {
if (!reported) {
reportProblem(Error, QStringLiteral("Unexpected token in class context."));
reported = true;
}
yylex();
} else {
break;
}
} :]
RBRACE [: rewind(tokenStream->index() - 2); :]
-> classBody ;;
VAR variable=classVariableDeclaration SEMICOLON
| modifiers=optionalModifiers
( (propertyType=propertyType | 0) variable=classVariableDeclaration SEMICOLON
| FUNCTION (BIT_AND | 0) methodName=semiReservedIdentifier LPAREN parameters=parameterList RPAREN
( COLON returnType=returnType | 0)
methodBody=methodBody
| CONST #consts=classConstantDeclaration @ COMMA SEMICOLON
)
| USE #traits=namespacedIdentifier @ COMMA (imports=traitAliasDeclaration|SEMICOLON)
-> classStatement ;;
LBRACE #statements=traitAliasStatement
@ (SEMICOLON [: if (yytoken == Token_RBRACE) { break; } :]) RBRACE
-> traitAliasDeclaration ;;
importIdentifier=traitAliasIdentifier
-- first/first conflict resolved by LA(2)
-- We can either have a single token (modifier or identifier), or a combination
( AS (?[: LA(2).kind == Token_SEMICOLON :]
(modifiers=traitVisibilityModifiers | aliasNonModifierIdentifier=reservedNonModifierIdentifier)
| modifiers=traitVisibilityModifiers aliasIdentifier=semiReservedIdentifier
)
| INSTEADOF #conflictIdentifier=namespacedIdentifier @ COMMA
)
-> traitAliasStatement ;;
identifier=namespacedIdentifier PAAMAYIM_NEKUDOTAYIM methodIdentifier=semiReservedIdentifier
-> traitAliasIdentifier ;;
SEMICOLON -- abstract method
| LBRACE try/recover(statements=innerStatementList) RBRACE
-> methodBody ;;
#vars=classVariable @ COMMA
-> classVariableDeclaration ;;
variable=variableIdentifier (ASSIGN value=staticScalar | 0)
-> classVariable ;;
PUBLIC [: (*yynode)->modifiers |= ModifierPublic; :]
| PROTECTED [: (*yynode)->modifiers |= ModifierProtected; :]
| PRIVATE [: (*yynode)->modifiers |= ModifierPrivate; :]
| STATIC [: (*yynode)->modifiers |= ModifierStatic; :]
| ABSTRACT [: (*yynode)->modifiers |= ModifierAbstract; :]
| FINAL [: (*yynode)->modifiers |= ModifierFinal; :]
-> traitVisibilityModifiers[
member variable modifiers: unsigned int;
] ;;
(
PUBLIC [: (*yynode)->modifiers |= ModifierPublic; :]
| PROTECTED [: (*yynode)->modifiers |= ModifierProtected; :]
| PRIVATE [: (*yynode)->modifiers |= ModifierPrivate; :]
| STATIC [: (*yynode)->modifiers |= ModifierStatic; :]
| ABSTRACT [: (*yynode)->modifiers |= ModifierAbstract; :]
| FINAL [: (*yynode)->modifiers |= ModifierFinal; :]
| 0
)*
-> optionalModifiers[
member variable modifiers: unsigned int;
] ;;
(
ABSTRACT [: (*yynode)->modifier = AbstractClass; :]
| FINAL [: (*yynode)->modifier = FinalClass; :]
| 0
)
-> optionalClassModifier[
member variable modifier: ClassModifier;
] ;;
-----------------------------------------------------------------
-- Code segments copied to the implementation (.cpp) file.
-- If existent, kdevelop-pg's current syntax requires this block
-- to occur at the end of the file.
-----------------------------------------------------------------
[:
#include <QtCore/QDebug>
#include <language/editor/documentrange.h>
namespace Php
{
void Parser::tokenize(const QString& contents, int initialState)
{
m_contents = contents;
Lexer lexer(tokenStream, contents, initialState);
int kind = Parser::Token_EOF;
int lastDocCommentBegin;
int lastDocCommentEnd;
do
{
lastDocCommentBegin = 0;
lastDocCommentEnd = 0;
kind = lexer.nextTokenKind();
while (kind == Parser::Token_WHITESPACE || kind == Parser::Token_COMMENT || kind == Parser::Token_DOC_COMMENT) {
if (kind == Parser::Token_COMMENT || kind == Parser::Token_DOC_COMMENT) {
extractTodosFromComment(tokenText(lexer.tokenBegin(), lexer.tokenEnd()), lexer.tokenBegin());
}
if (kind == Parser::Token_DOC_COMMENT) {
lastDocCommentBegin = lexer.tokenBegin();
lastDocCommentEnd = lexer.tokenEnd();
}
kind = lexer.nextTokenKind();
}
if ( !kind ) // when the lexer returns 0, the end of file is reached
{
kind = Parser::Token_EOF;
}
Parser::Token &t = tokenStream->push();
t.begin = lexer.tokenBegin();
t.end = lexer.tokenEnd();
t.kind = kind;
t.docCommentBegin = lastDocCommentBegin;
t.docCommentEnd = lastDocCommentEnd;
//if ( m_debug ) qDebug() << kind << tokenText(t.begin,t.end) << t.begin << t.end;
}
while ( kind != Parser::Token_EOF );
yylex(); // produce the look ahead token
}
void Parser::extractTodosFromComment(const QString& comment, qint64 startPosition)
{
auto i = m_todoMarkers.globalMatch(comment);
while (i.hasNext()) {
auto match = i.next();
auto p = reportProblem(Todo, match.captured(1), 0);
if (!p) {
continue;
}
qint64 line = 0;
qint64 column = 0;
tokenStream->locationTable()->positionAt(startPosition, &line, &column);
auto location = p->finalLocation();
location.setStart(KTextEditor::Cursor(line, column + match.capturedStart(1)));
location.setEnd(KTextEditor::Cursor(line, column + match.capturedEnd(1)));
p->setFinalLocation(location);
};
}
void Parser::setTodoMarkers(const QStringList& markers)
{
QString pattern = QStringLiteral("^(?:[/\\*\\s]*)(.*(?:");
bool first = true;
foreach(const QString& marker, markers) {
if (!first) {
pattern += '|';
}
pattern += QRegularExpression::escape(marker);
first = false;
}
pattern += QStringLiteral(").*?)(?:[/\\*\\s]*)$");
m_todoMarkers.setPatternOptions(QRegularExpression::MultilineOption);
m_todoMarkers.setPattern(pattern);
}
QString Parser::tokenText(qint64 begin, qint64 end)
{
return m_contents.mid(begin,end-begin+1);
}
KDevelop::ProblemPointer Parser::reportProblem( Parser::ProblemType type, const QString& message, int offset )
{
qint64 sLine;
qint64 sCol;
qint64 index = tokenStream->index() + offset;
if (index >= tokenStream->size()) {
return {};
}
tokenStream->startPosition(index, &sLine, &sCol);
qint64 eLine;
qint64 eCol;
tokenStream->endPosition(index, &eLine, &eCol);
auto p = KDevelop::ProblemPointer(new KDevelop::Problem());
p->setSource(KDevelop::IProblem::Parser);
switch ( type ) {
case Error:
p->setSeverity(KDevelop::IProblem::Error);
break;
case Warning:
p->setSeverity(KDevelop::IProblem::Warning);
break;
case Info:
p->setSeverity(KDevelop::IProblem::Hint);
break;
case Todo:
p->setSeverity(KDevelop::IProblem::Hint);
p->setSource(KDevelop::IProblem::ToDo);
break;
}
p->setDescription(message);
KTextEditor::Range range(sLine, sCol, eLine, eCol + 1);
p->setFinalLocation(KDevelop::DocumentRange(m_currentDocument, range));
m_problems << p;
return p;
}
// custom error recovery
void Parser::expectedToken(int /*expected*/, qint64 /*where*/, const QString& name)
{
reportProblem( Parser::Error, QStringLiteral("Expected token \"%1\"").arg(name));
}
void Parser::expectedSymbol(int /*expectedSymbol*/, const QString& name)
{
qint64 line;
qint64 col;
qint64 index = tokenStream->index()-1;
Token &token = tokenStream->at(index);
qCDebug(PARSER) << "token starts at:" << token.begin;
qCDebug(PARSER) << "index is:" << index;
tokenStream->startPosition(index, &line, &col);
QString tokenValue = tokenText(token.begin, token.end);
qint64 eLine;
qint64 eCol;
tokenStream->endPosition(index, &eLine, &eCol);
reportProblem( Parser::Error,
QStringLiteral("Expected symbol \"%1\" (current token: \"%2\" [%3] at %4:%5 - %6:%7)")
.arg(name,
token.kind != 0 ? tokenValue : QStringLiteral("EOF"))
.arg(token.kind)
.arg(line)
.arg(col)
.arg(eLine)
.arg(eCol));
}
void Parser::setDebug( bool debug )
{
m_debug = debug;
}
void Parser::setCurrentDocument(KDevelop::IndexedString url)
{
m_currentDocument = url;
}
Parser::ParserState *Parser::copyCurrentState()
{
ParserState *state = new ParserState();
state->varExpressionState = m_state.varExpressionState;
state->varExpressionIsVariable = m_state.varExpressionIsVariable;
return state;
}
void Parser::restoreState( Parser::ParserState* state)
{
m_state.varExpressionState = state->varExpressionState;
m_state.varExpressionIsVariable = state->varExpressionIsVariable;
}
} // end of namespace Php
:]
-- kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on; auto-insert-doxygen on; mode KDevelop-PG[-Qt]
|