Emily Ong

Results 3 issues of Emily Ong

https://share.sourceacademy.org/81fek > Show how to implement `&&` and `||` as derived components. ```javascript function make_conditional_expr_decl(predicate, consequent_expression, alternative_expression) { return list("conditional_expression", predicate, consequent_expression, alternative_expression); } function make_literal(value) { return list("literal", value);...

Exercise solution

Here is my suggestion for Exercise 4.2: https://share.sourceacademy.org/c53du Specifications on syntax predicates and selectors are taken from: https://sourceacademy.org/sicpjs/4.1.2 Supports - Literals - Names - Applications - Conditionals - Lambdas -...

_work in progress
Exercise solution

Note: There is no error in evaluation. ## Reproduction ### Not OK 1. When the string is `xxxx&xxx` `const foo = "a&b` is parsed as `variable.language` and `";` is parsed...

Bug
minor
good first issue