Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I. Functions with Multiple Arguments Start with the FWAE interpreter, and extend the implementation to support any number of arguments to a function (including zero),

I. Functions with Multiple Arguments Start with the FWAE interpreter, and extend the implementation to support any number of arguments to a function (including zero), and any number of arguments (including zero) in a function application: ::= | {+ } | {- } | {with { } } | | { *} | {fun {*} } Since you must change the FWAE datatype, and since different people may change it in different ways, you must provide a parse function this time, which accepts a quoted expression and produces an FWAE value. For parsing, assume that any symbol other than '+, '-, 'with, or 'fun can be an identifier. At run-time, a new error is now possible: function application with the wrong number of arguments. Your interp function should detect the mismatch and report an error that includes the words "wrong arity". A function would be ill-defined if two of its argument s were the same. To prevent this problem, your parse function should detect this problem and reports a "bad syntax" error. For example, (parse '{ fun { f x x } x } ) should report a "bad syntax" error, while (parse '{ fun { f x y } x } ) should produce a fun value. Remember that the PLAI language provides the useful function map: map takes a function and a list, and applies the function to each element in the list, returning a list of results. For example, if sexps is a list of S-expressions to parse, (map parse sexps) produces a list of FWAEs by parsing each S- expression. You can decide whether to use deferred substitution.

Adding Records Extend your interpreter to support the construction of records with named fields, and to support field selection from a record: ::= ... | {record { }* } | {getField } Your revised parse should check that each is distinct in a record expression. If there are duplicates, the error messages should include the words "duplicate fields". Adding records means that the language now has three kinds of values: numbers, functions, and records. At run-time, an error may occur because a record is misused as a number, a number is supplied to getField, or a record supplied to getField does not have the named field. Your error message for the last case should include the words "no such field", otherwise you can make up your own error messages (or just let primitive error checking handle problems, such as trying to add a record to a number). Extend parse to support record and getField expressions. Since records are now values, the result of interp can be a record instead of a number or a function. For homework purposes, we don't want to nail down the representation of a record result, because there are many choices. The examples below therefore use run, which is a wrapper on interp that just returns a number if interp produces a number, and it returns the symbol 'function if interp produces a function value, but it returns the symbol 'record if interp produces a record value. Note that the ids in getField and record expressions are not bound by with or function parameters. They are more like the "x" in "o.x" expressions in C and Java. Hint: change the result type of interp so that it returns a new define-type that represents values, with two alternatives (numV n) for some number n or a record expression (however you chose to represent them). Note that this also affects your subst function's input (since its input is interp's output in the example code (of course, your rewritten one may not do that).

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

Spatial Databases With Application To GIS

Authors: Philippe Rigaux, Michel Scholl, Agnès Voisard

1st Edition

1558605886, 978-1558605886

Students also viewed these Databases questions

Question

13-1 How does building new systems produce organizational change?

Answered: 1 week ago