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
|
header{
package tinybasic;
import java.util.*;
}
class TinyBasicParser extends Parser;
options {
k = 4; // two token lookahead
exportVocab=TinyBasic; // Call its vocabulary "TinyBasic"
//codeGenMakeSwitchThreshold = 2; // Some optimizations
//codeGenBitsetTestThreshold = 3;
defaultErrorHandler = false; // Don't generate parser error handlers
//analyzerDebug=true;
buildAST = true;
}
{
Context theContext=null;
}
imaginaryTokenDefinitions
:
SLIST
TYPE
PROGRAM_DEF SUBROUTINE_DEF FUNCTION_DEF
EXIT_MODULE
PARAMETERS PARAMETER_DEF
LABELED_STAT NUMBERED_STAT
UNARY_MINUS UNARY_PLUS
CASE_GROUP ARGLIST
FOR_LOOP FOR_FROM FOR_TO
FOR_BY FOR_BY_ONE FOR_BODY
INT_FN_EXECUTE FLT_FN_EXECUTE STR_FN_EXECUTE
SUB_EXECUTE
EQ_COMP
INDEX_OP SUBSTRING_OP DOT
ARRAY1D ARRAY2D ARRAY3D
ARRAY1D_PROXY ARRAY2D_PROXY ARRAY3D_PROXY
VAR_PROXY
WHEN_ERROR_CALL WHEN_ERROR_IN
PRINT_ASCII PRINT_TAB
PRINT_NUMERIC PRINT_STRING
PRINT_COMMA PRINT_SEMI
IF_THEN_BLOCK IF_BLOCK ELSE_IF_BLOCK ELSE_BLOCK
CODE_BLOCK CONDITION
;
// Compilation Unit: In TinyBasic, this is a single file. This is the start
// rule for this parser
compilationUnit[Context context]
{
theContext=context; //new Context();
}
:
// A compilation unit starts with an optional program definition
( programDefinition
| /* nothing */
)
// Next we have a series of zero or more sub/function blocks
( subroutineDefinition
| functionDefinition
)*
EOF!
;
// PROGRAM ( parameter, parameter)
programDefinition
options {defaultErrorHandler = true;} // let ANTLR handle errors
{ Vector pVector=null; }
: "program"!
{
//#p.setType(PROGRAM_DEF,"PROGRAM_DEF");
theContext.setProgramScope(new ProgramScope(theContext.getCurrentScope()));
}
pVector=parameters eol!
// now parse the body
cb:procedureBlock
quit:"end" eol!
{
#quit.setType(EXIT_MODULE);
#programDefinition = #(#[PROGRAM_DEF,"PROGRAM_DEF"],#programDefinition);
theContext.popScope();
}
;
// SUB IDENT ( parameter)*
subroutineDefinition
options {defaultErrorHandler = true;} // let ANTLR handle errors
{ Vector pVector=null; }
: p:"sub"! n:subName
{
theContext.pushScope(new SubroutineScope(theContext.getCurrentScope()));
}
pVector=params:parameters eol!
// now parse the body of the class
cb:procedureBlock
quit:"end" "sub"! eol!
{
#quit.setType(EXIT_MODULE);
DTCodeType sub;
#subroutineDefinition = #(#[SUBROUTINE_DEF,"SUBROUTINE_DEF"],#subroutineDefinition);
sub=new DTSubroutine(#subroutineDefinition,
#cb,theContext.getCurrentScope(),pVector,#n.getText());
theContext.popScope();
theContext.insertSubroutine(#n.getText(),sub);
}
;
// FUNCTION IDENT ( parameter)*
functionDefinition
options {defaultErrorHandler = true;} // let ANTLR handle errors
{
int fnType=0;
Vector pVector=null;
}
: p:"function"^ fnType=n:newFunction {#p.setType(FUNCTION_DEF);}
{
theContext.pushScope(new FunctionScope(theContext.getCurrentScope()));
}
pVector=params:parameters eol!
// now parse the body of the class
cb:procedureBlock
quit:"end" "function"! eol!
{
#quit.setType(EXIT_MODULE);
DTCodeType fnc;
fnc=new DTFunction(fnType,#params,#cb,theContext.getCurrentScope(),pVector,#n.getText());
#functionDefinition = #(#[FUNCTION_DEF,"FUNCTION_DEF"],#functionDefinition);
theContext.popScope();
theContext.insertFunction(#n.getText(),fnc);
}
;
//funcName
// :
// INT_FN
// | FLT_FN
// | STR_FN
// ;
newFunction returns [int t]
{ t=0;}
:
INT_FN { t=INT_FN; }
| STR_FN { t=STR_FN; }
| FLT_FN { t=FLT_FN; }
;
// This is the body of a procedure.
procedureBlock
:
codeBlock
//{#procedureBlock = #([OBJBLOCK, "OBJBLOCK"], #procedureBlock);}
;
statement
:
nl
(
singleStatement
| ifStatements
| compoundStatement
)
;
parameters returns [ Vector v ]
{ v=new Vector(); }
:
( (LPAREN)=>
LPAREN! parameterDeclarationList[v] RPAREN!
|
)
;
// A list of formal parameters
parameterDeclarationList [ Vector v]
{ DTDataType tbd=null; }
: tbd=parameterDeclaration
{
v.addElement(tbd);
}
( COMMA! tbd=parameterDeclaration
{
v.addElement(tbd);
}
)*
{#parameterDeclarationList = #(#[PARAMETERS,"PARAMETERS"],
#parameterDeclarationList);}
;
parameterDeclaration returns [DTDataType arg]
{
int varType=0;
arg=null;
}
:
varType=v:newVariable
( LPAREN! //d1:integerExpression
(
COMMA! //d2:integerExpression
(
COMMA! //d3:integerExpression
{
arg=new DTDataTypeProxy(varType,theContext.getCurrentScope(),3);
//arg=new DTArray3DProxy(varType,theContext.getCurrentScope());
//#parameterDeclaration = #([ARRAY3D_PROXY], #parameterDeclaration);
}
|
{
arg=new DTDataTypeProxy(varType,theContext.getCurrentScope(),2);
//arg=new DTArray2DProxy(varType,theContext.getCurrentScope());
//#parameterDeclaration = #([ARRAY2D_PROXY], #parameterDeclaration);
}
)
|
{
arg=new DTDataTypeProxy(varType,theContext.getCurrentScope(),1);
//arg=new DTArray1DProxy(varType,theContext.getCurrentScope());
//#parameterDeclaration = #([ARRAY1D_PROXY], #parameterDeclaration);
}
) RPAREN!
|
{
arg=new DTDataTypeProxy(varType,theContext.getCurrentScope(),0);
//#parameterDeclaration = #([VAR_PROXY], #parameterDeclaration);
}
)
{
#parameterDeclaration = #([VAR_PROXY], #parameterDeclaration);
theContext.insertVariable(#v.getText(),arg);
}
;
compoundStatement
:
forNextBlock
| doUntilLoopBlock
| doLoopUntilBlock
| selectCaseBlock
| eventCompoundStatements
;
ifThenBlock
:
ifBlock
(
options {
warnWhenFollowAmbig = false;
}
:
elseIfBlock
)*
(
options {
warnWhenFollowAmbig = false;
}
:
elseBlock
)?
endIfBlock
{ #ifThenBlock = #(#[IF_THEN_BLOCK,"IF_THEN_BLOCK"],#ifThenBlock);}
;
ifStatements
:
(ifStatement)=> ifStatement
| ifThenBlock
;
ifStatement
:
"if"! condition "then"! singleStatement eol!
;
ifBlock
:
"if"! condition "then"! eol!
codeBlock
{ #ifBlock = #(#[IF_BLOCK,"IF_BLOCK"],#ifBlock);}
;
elseIfBlock
:
nl ("else"! "if"! | "elseif"! ) condition "then"! eol!
codeBlock
{ #elseIfBlock = #(#[ELSE_IF_BLOCK,"ELSE_IF_BLOCK"],#elseIfBlock);}
;
elseBlock
:
nl "else"! eol!
codeBlock
{ #elseBlock = #(#[ELSE_BLOCK,"ELSE_BLOCK"],#elseBlock);}
;
endIfBlock
:
nl ("end"! "if"! | "endif"! ) eol!
;
condition
:
relationalExpression
{ #condition = #(#[CONDITION,"CONDITION"],#condition);}
;
codeBlock
:
(
options {
warnWhenFollowAmbig = false;
}
:
statement
)*
{#codeBlock = #(#[CODE_BLOCK,"CODE_BLOCK"],#codeBlock);}
;
forNextBlock
:
"for"! (
// I=1 TO 2 (BY 1)?
forFrom forTo forBy eol!
forBody
)
{#forNextBlock = #(#[FOR_LOOP,"FOR_LOOP"],#forNextBlock);}
;
// The initializer for a for loop
forFrom
: numericStore EQ^ numericExpression
{#forFrom = #(#[FOR_FROM,"FOR_FROM"],#forFrom);}
;
forTo
: "to"! numericExpression
{#forTo = #(#[FOR_TO,"FOR_TO"],#forTo);}
;
forBy
:
( "by"! numericExpression
{#forBy = #(#[FOR_BY,"FOR_BY"],#forBy);}
|
{#forBy = #(#[FOR_BY_ONE,"FOR_BY_ONE"],#forBy);}
)
;
forBody
:
codeBlock
nextStatement!
{#forBody = #(#[FOR_BODY,"FOR_BODY"],#forBody);}
;
nextStatement
:
nl "next" numericStore eol!
;
doUntilLoopBlock
:
"do"! "until"^ condition eol!
codeBlock
nl "loop"! eol!
;
doLoopUntilBlock
:
"do"^ eol!
codeBlock
nl "loop"! "until"! condition eol!
;
selectCaseBlock
:
"select"^ "case"! expression eol
(casesGroup)*
nl "end" "select" eol!
;
singleStatement
:
(
"library"^ STR_CONST
| "dim"^ dimensionedVariables
| "global"^ parameterDeclarationList[new Vector()]
| "beep"
| "chain"^ stringExpression ("with" LPAREN! argList RPAREN!)?
| "gosub"^ lineLabel
| "goto"^ lineLabel
| callSubroutineStatement
| "return"^ (expression)?
| ex:"exit"^ "sub"! {#ex.setType(EXIT_MODULE);}
| ("let"!)? assignmentExpression
| ("on" numericExpression)=>
"on"^ numericExpression ("goto"^ | "gosub"^ ) lineLabel (COMMA! lineLabel)*
| eventSingleStatements
| "option"^ "base" INT_CONST
| "out"^ integerExpression COMMA! integerExpression
| "pause"^ (numericExpression)?
| "redim"^ dimensionedVariables
| "poke"^
integerExpression COMMA!
integerExpression COMMA!
integerExpression
| "randomize"^ integerExpression
| graphicsOutput
| inputOutput
| line_stuff
| set_stuff
) eol!
;
callSubroutineStatement
:
call:"call"^ subName (LPAREN! argList RPAREN!)?
{ #call.setType(SUB_EXECUTE); }
;
dimensionedVariables
{ DTDataType av=null; int varType=0;}
:
(
varType=v:newVariable LPAREN! d1:integerExpression
(
COMMA! d2:integerExpression
(
COMMA! d3:integerExpression
{
av=new DTArray3D(varType,theContext.getCurrentScope());
#dimensionedVariables = #([ARRAY3D, "ARRAY3D"], #dimensionedVariables);
}
|
{
av=new DTArray2D(varType,theContext.getCurrentScope());
#dimensionedVariables = #([ARRAY2D, "ARRAY2D"], #dimensionedVariables);
}
)
|
{
av=new DTArray1D(varType,theContext.getCurrentScope());
#dimensionedVariables = #([ARRAY1D, "ARRAY1D"], #dimensionedVariables);
}
) RPAREN!
{ theContext.insertVariable(#v.getText(),av);}
)
(
COMMA dimensionedVariables
)?
;
lineLabel
:
INT_CONST
| IDENT
;
nl
:
(
options {
warnWhenFollowAmbig = false;
}
:
IDENT^ c:COLON! {#c.setType(LABELED_STAT);}
| INT_CONST^ {#c.setType(NUMBERED_STAT);}
)?
;
constant
:
stringConstant
| floatNumber
;
binaryReadVariables
:
( numericStore
| stringStore "until" integerExpression
) (COMMA binaryReadVariables)?
;
printList
:
(
tabExpression
| printString
| printNumeric
) (
( c:COMMA { #c.setType(PRINT_COMMA);}
| s:SEMI { #s.setType(PRINT_SEMI);}
) (printList)?
)?
;
tabExpression
:
"tab"! LPAREN! numericExpression RPAREN!
{ #tabExpression = #(#[PRINT_TAB,"PRINT_TAB"],#tabExpression);}
;
printString
:
stringExpression { #printString = #(#[PRINT_STRING,"PRINT_STRING"],#printString);}
;
printNumeric
:
numericExpression { #printNumeric = #(#[PRINT_NUMERIC,"PRINT_NUMERIC"],#printNumeric);}
;
inputList
:
( numericStore
| stringStore
) (COMMA inputList)?
;
inputOutput
:
"close"^ (POUND! integerExpression)?
//| "cominfo"
| "data"^ constant (COMMA! constant)*
| "deletefile" stringExpression
//| "fileinfo"
| "input"
(
"binary" (chanNumber)? binaryReadVariables
| chanAndPrompt inputList
)
| "open" chanNumber stringExpression
(
COMMA
(
"access"
(
"input"
| "output"
| "outin"
| "append"
)
| "organization"
(
"sequential"
| "random"
| "stream"
| "append"
)
| "recsize" integerExpression
)
)+
//| "output"
| print_ascii
| "print" "binary" (chanNumber)? printList
| "read" inputList
| "restore"
;
set_stuff
:
"set"
(
"timer" numericExpression
| "loc" LPAREN integerExpression COMMA integerExpression RPAREN
| (chanNumber)? specifier integerExpression
)
;
print_ascii
:
"print"! (chanNumber)? ("using" stringExpression)? printList
{#print_ascii = #([PRINT_ASCII, "PRINT_ASCII"], #print_ascii);}
;
specifier
:
"margin"
| "zonewidth"
| "address"
| "record"
;
chanNumber
:
POUND integerExpression COLON
;
prompt
:
"prompt" stringExpression COLON
;
chanAndPrompt
:
(chanNumber)? (prompt)?
;
casesGroup
:
aCase
codeBlock
{#casesGroup = #([CASE_GROUP, "CASE_GROUP"], #casesGroup);}
;
integerArray
:
argArray
;
symbolicAddress
:
stringExpression
;
deviceAddress
:
(adapterAddress COMMA!)? primaryAddress (COMMA! secondaryAddress)?
;
primaryAddress
:
integerExpression
;
secondaryAddress
:
integerExpression
;
adapterAddress
:
stringExpression
| "@" integerExpression
;
combinationAddress
:
(deviceAddress)=> deviceAddress
| adapterAddress
;
aCase
: "case"^ expression (COMMA! expression)* eol!
;
integerArrayVariable
:
integerVariable
;
stringArrayVariable
:
stringVariable
;
floatArrayVariable
:
floatVariable
;
arrayVariable
:
integerArrayVariable
| stringArrayVariable
| floatArrayVariable
;
graphicsOutput
:
"brush"^ integerExpression
| "circle"^ LPAREN! integerExpression COMMA integerExpression RPAREN!
COMMA integerExpression ( COMMA integerExpression )?
| "clear"^ ("metafileon" | "metafileoff" )?
| "ellipse"^ LPAREN! integerExpression COMMA integerExpression RPAREN!
MINUS LPAREN! integerExpression COMMA integerExpression RPAREN!
( COMMA integerExpression )?
| "font"^ integerExpression
( COMMA integerExpression ( COMMA integerExpression )? )?
| "loc"^ integerStore COMMA integerStore
| "pen"^ integerExpression COMMA integerExpression COMMA integerExpression
| "picture"^ stringExpression
COMMA LPAREN! integerExpression COMMA integerExpression RPAREN!
( COMMA integerExpression )?
| "polyline"^ integerArrayVariable LPAREN COMMA RPAREN
( COMMA integerExpression )?
| "rectangle"^ LPAREN! integerExpression COMMA integerExpression RPAREN!
MINUS LPAREN! integerExpression COMMA integerExpression RPAREN!
( COMMA integerExpression )?
| "screen"^ ( "normal" | "condensed" | "display" | "zoom" | "unzoom" | "close_basic" )
;
line_stuff // ambiguity forced left factoring
:
"line"
(
"input" (chanNumber)? stringStore
| "enter" combinationAddress
(prompt)? stringStore ("until" integerExpression)?
| (LPAREN! integerExpression COMMA integerExpression RPAREN!)?
MINUS LPAREN! integerExpression COMMA integerExpression RPAREN!
( COMMA integerExpression )?
)
;
eventSingleStatements
:
"cause" ("error")? integerExpression
| "cause" "event" integerExpression
| ("disable" | "enable") ("srq"|"timer"|"gpib") ("discard")?
| ("disable" | "enable") "event" integerExpression ("discard")?
| "error"
(
"abort" integerExpression
| "retry"
| "continue"
| "stop"
)
| "on"
(
"event" integerExpression
| "srq"
| "timer"
| "gpib"
) "call" subName
;
eventCompoundStatements
:
w:"when"^ "error"
(
"call"^ subName (LPAREN! argList RPAREN!)? eol!
{#w.setType(WHEN_ERROR_CALL);}
| "in"! eol!
{#w.setType(WHEN_ERROR_IN);}
(singleStatement)+
"use"^ eol!
(singleStatement)+
("end"! "when"! | "endwhen"!) eol
)
;
subName
:
IDENT
;
expression
:
numericExpression
| stringExpression
;
argList
: arg ( COMMA! arg )*
{#argList = #(#[ARGLIST,"ARGLIST"], argList);}
;
arg
:
//(variable LPAREN COMMA)=>
//variable LPAREN COMMA {dimCount=2;} ( COMMA {dimCount++;} )* RPAREN
(argArray)=>argArray
//| (variable LPAREN RPAREN)=>
//variable LPAREN RPAREN
| expression
;
argArray
:
(variable LPAREN COMMA)=>
v23:variable LPAREN! COMMA!
( COMMA!
{ #v23.setType(ARRAY3D); }
|
{ #v23.setType(ARRAY2D); }
) RPAREN!
| //(variable LPAREN RPAREN)=>
v1:variable LPAREN RPAREN
{ #v1.setType(ARRAY1D); }
;
// assignment expression (level 13)
assignmentExpression
:
stringStore EQ^ stringExpression
| integerStore EQ^ integerExpression
| floatStore EQ^ numericExpression
;
stringStore
:
(stringVariable LPAREN)=>
{theContext.isArrayVariable(LT(1).getText())}?
stringVariable lp:LPAREN^ {#lp.setType(INDEX_OP);}
indices
RPAREN
| (stringVariable LBRACK)=>
stringVariable lb:LBRACK^ {#lb.setType(SUBSTRING_OP);}
integerExpression COLON! integerExpression
RBRACK!
| stringVariable
;
integerStore
:
( integerVariable LPAREN )=>
{theContext.isArrayVariable(LT(1).getText())}?
integerVariable lp:LPAREN^ {#lp.setType(INDEX_OP);}
indices
RPAREN!
| integerVariable
;
floatStore
:
( floatVariable LPAREN )=>
{theContext.isArrayVariable(LT(1).getText())}?
floatVariable lp:LPAREN^ {#lp.setType(INDEX_OP);}
indices
RPAREN!
| floatVariable
;
numericStore
:
integerStore
| floatStore
;
stringVariable
:
STR_VAR
;
integerVariable
:
INT_VAR
;
floatVariable
:
(
FLT_VAR
| IDENT
)
;
// boolean relational expressions (level 5)
relationalExpression
: relationalXORExpression
;
relationalXORExpression
: relationalORExpression ( "xor"^ relationalORExpression )*
;
relationalORExpression
: relationalANDExpression ( "or"^ relationalANDExpression )*
;
relationalANDExpression
: relationalNOTExpression ( "and"^ relationalNOTExpression )*
;
relationalNOTExpression
: ("not"^)? primaryRelationalExpression
;
primaryRelationalExpression
:
(numericExpression)=>
numericExpression
( LT^
| GT^
| LE^
| GE^
| e1:EQ^ {#e1.setType( EQ_COMP );}
| NE_COMP^
)
numericExpression
| stringExpression
( LT^
| GT^
| LE^
| GE^
| e2:EQ^ {#e2.setType( EQ_COMP );}
| NE_COMP^
)
stringExpression
| LPAREN! relationalExpression RPAREN!
;
numericValuedFunctionExpression
:
"abs"^ LPAREN! numericExpression RPAREN!
| "acos"^ LPAREN! numericExpression RPAREN!
| "asc"^ LPAREN! stringExpression RPAREN!
| "atn"^ LPAREN! numericExpression RPAREN!
| "cos"^ LPAREN! numericExpression RPAREN!
| "dround"^ LPAREN! numericExpression COMMA! integerExpression RPAREN!
| "errl"^
| "errn"^
| "exp"^ LPAREN! numericExpression RPAREN!
| "fract"^ LPAREN! numericExpression RPAREN!
| "get_event"^ LPAREN! numericExpression RPAREN!
| "in"^ LPAREN! numericExpression RPAREN!
| "instr"^ LPAREN! stringExpression COMMA! stringExpression RPAREN!
| "int"^ LPAREN! numericExpression RPAREN!
| "ival"^ LPAREN! stringExpression RPAREN!
| "len"^ LPAREN! stringExpression RPAREN!
| "lgt"^ LPAREN! numericExpression RPAREN!
| "log"^ LPAREN! numericExpression RPAREN!
| "max"^ LPAREN! (numericExpression)+ RPAREN!
| "min"^ LPAREN! (numericExpression)+ RPAREN!
| "peek"^ LPAREN! numericExpression COMMA! integerExpression RPAREN!
| "pi"^
| "rnd"^
| "sgn"^ LPAREN! numericExpression RPAREN!
| "signed"^ LPAREN! integerExpression RPAREN!
| "sin"^ LPAREN! numericExpression RPAREN!
| "sqr"^ LPAREN! numericExpression RPAREN!
| "tan"^ LPAREN! numericExpression RPAREN!
| "time"^
| "ubound"^ LPAREN! stringExpression COMMA! integerExpression RPAREN!
| "val"^ LPAREN! stringExpression RPAREN!
// BIT Functions
| "andb"^ LPAREN! integerExpression COMMA! integerExpression RPAREN!
| "orb"^ LPAREN! integerExpression COMMA! integerExpression RPAREN!
| "notb"^ LPAREN! integerExpression RPAREN!
| "shiftb"^ LPAREN! integerExpression COMMA! integerExpression RPAREN!
| "xorb"^ LPAREN! integerExpression COMMA! integerExpression RPAREN!
;
integerExpression
:
numericExpression
;
stringValuedFunctionExpression
:
"chr$"^ LPAREN! integerExpression RPAREN!
| "date$"^
| "dround$"^ LPAREN! numericExpression COMMA! integerExpression RPAREN!
| "errl$"^
| "errn$"^ LPAREN! integerExpression RPAREN!
| "inchr$"^
| "ival$"^ LPAREN! integerExpression COMMA! integerExpression RPAREN!
| "lwc$"^ LPAREN! stringExpression RPAREN!
| "rpt$"^ LPAREN! stringExpression COMMA! integerExpression RPAREN!
| "time$"^
| "upc$"^ LPAREN! stringExpression RPAREN!
| "val$"^ LPAREN! numericExpression RPAREN!
;
//numericExpression
// : numericAdditiveExpression
// ;
// binary addition/subtraction (level 3)
numericExpression
:
numericMultiplicativeExpression
(
options {
warnWhenFollowAmbig = false;
}
:
(PLUS^ | MINUS^) numericMultiplicativeExpression
)*
;
// multiplication/division/modulo (level 2)
numericMultiplicativeExpression
: numericExponentialExpression ((STAR^ | "div"^ | "mod"^ | SLASH^ ) numericExponentialExpression)*
;
numericExponentialExpression
: numericUnaryExpression ( EXPO^ numericUnaryExpression)*
;
numericUnaryExpression
:
(
p:PLUS^ {#p.setType(UNARY_PLUS);}
| m:MINUS^ {#m.setType(UNARY_PLUS);}
)? numericPrimaryExpression
;
numericPrimaryExpression
:
floatNumber
| numericStore
| //(FLT_FN|INT_FN)=>
( FLT_FN^ {#FLT_FN.setType(FLT_FN_EXECUTE);}
| INT_FN^ {#INT_FN.setType(INT_FN_EXECUTE);}
)
(
(LPAREN)=>
LPAREN argList RPAREN
|
)
| numericValuedFunctionExpression
| e:LPAREN! numericExpression RPAREN!
;
floatNumber
:
integerNumber
| FLT_CONST
;
stringExpression
: stringConcatanateExpression
;
// binary addition/subtraction (level 3)
stringConcatanateExpression
: stringPrimaryExpression ( AMPERSAND^ stringConcatanateExpression)?
;
stringPrimaryExpression
:
stringStore
| stringConstant
| STR_FN^ ((LPAREN)=>LPAREN! argList RPAREN!)? {#STR_FN.setType(STR_FN_EXECUTE);}
| stringValuedFunctionExpression
;
indices
:
numericExpression (COMMA! indices)?
;
stringConstant
:
STR_CONST
;
integerNumber
:
INT_CONST
| BINARY_INTEGER
| OCTAL_INTEGER
| HEXADECIMAL_INTEGER
;
newVariable returns [int t]
{ t=0;}
:
INT_VAR { t=INT_VAR; }
| STR_VAR { t=STR_VAR; }
| FLT_VAR { t=FLT_VAR; }
| IDENT { t=FLT_VAR; }
;
variable
:
numericStore
| stringStore
;
eol!
:
(
options {
warnWhenFollowAmbig = false;
}
:
EOL!
)+
;
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// The TinyBasic scanner
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
class TinyBasicLexer extends Lexer;
options {
importVocab=TinyBasic; // call the vocabulary "TinyBasic"
testLiterals=true; // automatically test for literals
k=6; // four characters of lookahead
caseSensitive=false;
caseSensitiveLiterals = false;
}
// OPERATORS
AMPERSAND : '&' ;
LPAREN : '(' ;
RPAREN : ')' ;
LBRACK : '[' ;
RBRACK : ']' ;
COLON : ':' ;
COMMA : ',' ;
//DOT : '.' ;
EQ : '=' ;
NE_COMP : "<>" ;
//BNOT : '~' ;
SLASH : '/' ;
PLUS : '+' ;
MINUS : '-' ;
STAR : '*' ;
GE : ">=" ;
GT : ">" ;
LE : "<=" ;
LT : '<' ;
SEMI : ';' ;
POUND : '#' ;
BINARY_INTEGER
:
"&b" ('0' | '1' ) +
;
OCTAL_INTEGER
:
"&o" ('0'..'7' ) +
;
HEXADECIMAL_INTEGER
:
"&h" ('0'..'9' | 'a'..'f' ) +
;
// Whitespace -- ignored
WS :
( ' '
| '\t'
| '\f'
)
{ _ttype = Token.SKIP; }
;
EOL
:
( "\r\n" // Evil DOS
| '\r' // Macintosh
| '\n' // Unix (the right way)
)
{ newline(); }
;
// Single-line comments
SL_COMMENT
: '!'
(~('\n'|'\r'))*
//('\n'|'\r'('\n')?)
{
$setType(Token.SKIP);
//newline();
}
;
// character literals
CHAR_LITERAL
: '\'' ( (ESCc)=> ESCc | ~'\'' ) '\''
;
// string literals
STR_CONST
: '"'! ( (ESCs)=> ESCs | (ESCqs)=> ESCqs | ~('"'))* '"'!
;
protected
ESCc
: '<' ('0'..'9')+ '>'
;
protected
ESCs
: "<<" ('0'..'9')+ ">>"
;
protected
ESCqs
:
'"' '"'!
;
// hexadecimal digit (again, note it's protected!)
protected
HEX_DIGIT
: ('0'..'9'|'a'..'f')
;
// a dummy rule to force vocabulary to be all characters (except special
// ones that ANTLR uses internally (0 to 2)
protected
VOCAB
: '\3'..'\377'
;
// an identifier. Note that testLiterals is set to true! This means
// that after we match the rule, we look in the literals table to see
// if it's a literal or really an identifer
IDENT
options {testLiterals=true;}
: ('a'..'z') ('a'..'z'|'0'..'9'|'_'|'.')*
(
'$'
{
if($getText.substring(0,2).toLowerCase().equals("fn")){
_ttype=STR_FN;
} else {
_ttype=STR_VAR;
}
}
| '%'
{
if($getText.substring(0,2).toLowerCase().equals("fn")){
_ttype=INT_FN;
} else {
_ttype=INT_VAR;
}
}
| '#'
{
if($getText.substring(0,2).toLowerCase().equals("fn")){
_ttype=FLT_FN;
} else {
_ttype=FLT_VAR;
}
}
|
{
if($getText.substring(0,2).toLowerCase().equals("fn")){
_ttype=FLT_FN;
//} else {
// _ttype=FLT_VAR;
}
}
)
;
// a numeric literal
INT_CONST
{boolean isDecimal=false;}
: '.' {_ttype = DOT;}
(('0'..'9')+ (EXPONENT)? (FLT_SUFFIX)? { _ttype = FLT_CONST; })?
| ( '0' {isDecimal = true;} // special case for just '0'
( ('x')
( // hex
// the 'e'|'E' and float suffix stuff look
// like hex digits, hence the (...)+ doesn't
// know when to stop: ambig. ANTLR resolves
// it correctly by matching immediately. It
// is therefor ok to hush warning.
options {
warnWhenFollowAmbig=false;
}
: HEX_DIGIT
)+
| ('0'..'7')+ // octal
)?
| ('1'..'9') ('0'..'9')* {isDecimal=true;} // non-zero decimal
)
( ('l')
// only check to see if it's a float if looks like decimal so far
| {isDecimal}?
( '.' ('0'..'9')* (EXPONENT)? (FLT_SUFFIX)?
| EXPONENT (FLT_SUFFIX)?
| FLT_SUFFIX
)
{ _ttype = FLT_CONST; }
)?
;
// a couple protected methods to assist in matching floating point numbers
protected
EXPONENT
: ('e') ('+'|'-')? ('0'..'9')+
;
protected
FLT_SUFFIX
: 'f'|'d'
;
|