LANGUAGE CORRECTION: the originally posted version forgot to mention
that an expression can be simply an identifier or a literal (string or number)
SPECIAL NOTE FOR CSCI 439 STUDENTS: Students who are also taking CSCI 439 (Compilers) this term have just completed a pair of lex/yacc labs similar to 330's labs 4 and 5 but dealing with a different language. As an alternative to repeating the process with yet another language, you have the following option to get credit for the 330 labs 4 and 5:
|
make ./lab4x < valid/simple.lisc # tries parsing the simple.lisc code exampleThe lab4x executable processes the specified file content, and displays error messages if it detects any syntax errors, otherwise it displays a final "Parsing complete." message. The error messages, if any, are accompanied by a row and column number indicating where in the source file the parser recognized it was in an error state, and an indication of what statement type it last entered and where (to the best of its knowledge).
lisc token types, comments, and delimiters
All tokens must be whitespace delimited (spaces, tabs, newlines).
Comments begin with a semicolon (;) and continue to the end of the line (newline: not Windows
compatible), and must be stripped out by the tokenizer
The supported token types are:
lisc grammar rules A lisc program consists of one or more statements of the following forms:
lisc declaration, type, and scope rules Note that we won't be carrying out type and declaration checking in lab4, but they will be a part of lab5.
|
; program 1: your finished lab4x should accept this ; a couple of declarations var abc var Xafoo_123__Yep ; try some assignments abc = 1230 abc = 98.7654 abc = "hello there!" ; try some expressions and operators abc = ( 5 + 6.78 ) abc = ( abc + abc ) abc = ( 1 + ( abc * ( 3 ^ ( 4 / 5.678 ) ) ) ) abc = ( "foo" + "blah" ) abc = ( abc - "foo" ) abc = ( ( abc + abc ) - ( abc - "f" ) ) ; try some I/O read abc write abc write "blah blah blah\n" write ( ( 123 + 456 ) * 27 ) ; try some loops and nesting if ( isnum abc ) { var userVal write "Enter a number" read userVal if ( isnum userVal ) { while ( userVal < abc ) { write "current value is " write x x = ( 1 + x ) } write "ended with" write userVal } else { write "that was not a number" } } else { write "oops, started with a bad abc value:" write abc } |