Difference between revisions of "Itty Bitty Programming Language Assignment"

From CSE425S Wiki
Jump to navigation Jump to search
(Created page with "=Credit= This assignment is based on MUPL by Dan Grossman and his team at UW. =Code To Investigate= ==Ast== <syntaxhighlight lang="racket"> (struct IdentifierExp (name)...")
 
Line 1: Line 1:
 
=Credit=
 
=Credit=
This assignment is based on MUPL by Dan Grossman and his team at UW.
+
This assignment is based on [[MUPL_Assignment|MUPL]] by Dan Grossman and his team at UW.
  
 
=Code To Investigate=
 
=Code To Investigate=

Revision as of 03:09, 6 March 2023

Credit

This assignment is based on MUPL by Dan Grossman and his team at UW.

Code To Investigate

Ast

(struct IdentifierExp (name)                                           #:transparent)
(struct IntExp        (value)                                          #:transparent)
(struct AddExp        (left_exp right_exp)                             #:transparent)
(struct IfGreaterExp  (left_exp right_exp then_body_exp else_body_exp) #:transparent)
(struct NilExp        ()                                               #:transparent)
(struct IsNilExp      (exp)                                            #:transparent)
(struct ConsExp       (car_exp cdr_exp)                                #:transparent)
(struct CarOfConsExp  (cons_exp)                                       #:transparent)
(struct CdrOfConsExp  (cons_exp)                                       #:transparent)
(struct LetExp        (binding_name binding_exp body_exp)              #:transparent)
(struct FunctionExp   (name_option parameter_name body_exp)            #:transparent)
(struct CallExp       (function_exp argument_exp)                      #:transparent)

Code To Implement

Warmup

racket-integers->ibpl-IntExps

ibpl-IntExps->racket-integers

Eval

value?

ensure-value?

lookup-value-in-environment

(struct entry (name value) #:transparent)

(define (lookup-value-in-environment env identifier-name)
  (cond [(null? env) (error "unbound identifier during evaluation" identifier-name)]
        [(equal? (entry-name (car env)) identifier-name) (entry-value (car env))]
        [#t (lookup-value-in-environment (cdr env) identifier-name)]))

expand-environment

eval-under-env

Macros

IbIfNil

IbLet*

(struct binding (name exp) #:transparent)

IbIfEq

Functions

ib-double

ib-sum-curry

ib-call-with-one

ib-map

ib-mapAddN

Testing