forked from source-academy/js-slang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lazy lists support for lazy source 2 (source-academy#564)
* added option for lazy evaluation to interpreter * tests for lazy evaluation * finished transpiler * additional test case * updated REPL to have nice command line args * updated REPL to have nice command line args * added html test reporter * fixed function printing bug in REPL * formatting * fixed REPL printing bug for null and undefined * changed REPL bug fix * changed REPL bug fix * implement lazy pairs * add lazy pairs * add tests for lists, fix bugs for lazy lists * previous tests fixes * remove console.log calls * minor style fix for lazy context creation * untracked coverage * formatting * Updated last references to evaluationMethod Co-authored-by: Ian Duncan <[email protected]>
- Loading branch information
Showing
11 changed files
with
2,916 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ node_modules | |
*.map | ||
dist/ | ||
.idea/ | ||
coverage/ | ||
|
||
# emacs backup files | ||
*~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.