Project: Construction of a Simple Parser

profilemanastasiou

You will illustrate the basic phases of the compilation process (lexical, syntax, and

semantic analysis) through a simple compiler for a programming language model

“NEWLANG”.

The programming language “NEWLANG” is very simple.

A. Lexical Conventions of NEWLANG

1. The keywords of the language are the following:

declare read write

All keywords are reserved, and must be written in lower case.

2. Special symbols are the following:

{ } ( ) = + - ;

3. Other tokens are NAME that represents a string of letters and numbers, starting with a

letter, and NUMBER that represents a sequence of digits.

Lower and upper case letters are distinct.

4. White space consists of blanks, newlines, and tabs. White space is ignored except it

must separate NAME’s, NUMBER’s, and keywords.

  • 11 years ago
  • 20
Answer(0)
Bids(0)