Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This project consists of developing an interpreter for a minimal form (subset) of the Lua language. This minimal form of Lua has only 1 data

This project consists of developing an interpreter for a minimal form (subset) of the Lua language. This minimal form of Lua has only 1 data type, integer, and the only identifiers are single letters. Lua is not case sensitive. The specification of the grammar is given below.

Download Lua http://www.lua.org/download.html Reference Manual http://www.lua.org/manual/5.1/manual.html

The interpreter will process a Lua program and build some intermediate data structures. These data structures will then be interpreted to execute the program. All tokens in this language are separated by white space. The parsing algorithm should detect any syntactical or semantic error. The first such error discovered should cause an appropriate error message to be printed, and then the interpreter should terminate. Run-time errors should also be detected with appropriate error messages being printed.

Question:

Develop a complete parser in C++ that executes with the scanner. You must show the execution of this program by using a relevant source line as input, the program must show the corresponding statement recognized. Write a short report describing the work performed.

Grammar for the (subset of Lua) language Syntax Analyzer function id ( ) end | | | | | if then else end while do end -> id -> repeat until print ( ) le_operator | lt_operator | ge_operator | gt_operator | eq_operator | ne_operator | | add_operator | sub_operator | mul_operator | div_operator

Lexical Analyzer id letter literal_integer digit literal_integer | digit

assignment_operator = le_operator <=

lt_operator <

ge_operator >= gt_operator >

eq_operator = =

ne_operator ~=

add_operator +

sub_operator -

mul_operator *

div_operator /

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Mike Morrison, Joline Morrison

1st Edition

061901556X, 978-0619015565

More Books

Students also viewed these Databases questions

Question

Understand how customers respond to effective service recovery.

Answered: 1 week ago

Question

Know the principles of effective service recovery systems.

Answered: 1 week ago