Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Interpreter and Testing Refactor #1745

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ You can set additional options:
Usage: js-slang [PROGRAM_STRING] [OPTION]

-c, --chapter=CHAPTER set the Source chapter number (i.e., 1-4) (default: 1)
-v, --variant=VARIANT set the Source variant (i.e., default, interpreter, substituter, typed, concurrent, wasm) (default: default)
-v, --variant=VARIANT set the Source variant (i.e., default, interpreter, substituter, typed, wasm) (default: default)
-h, --help display this help
-e, --eval don't show REPL, only display output of evaluation
```
Expand All @@ -81,7 +81,6 @@ Currently, valid CHAPTER/VARIANT combinations are:
- `--chapter=2 --variant=interpreter`
- `--chapter=2 --variant=typed`
- `--chapter=3 --variant=default`
- `--chapter=3 --variant=concurrent`
- `--chapter=3 --variant=interpreter`
- `--chapter=3 --variant=typed`
- `--chapter=4 --variant=default`
Expand Down
32 changes: 0 additions & 32 deletions docs/lib/concurrency.js

This file was deleted.

62 changes: 0 additions & 62 deletions docs/md/README_3_CONCURRENT.md

This file was deleted.

10 changes: 0 additions & 10 deletions docs/md/README_CONCURRENCY.md

This file was deleted.

4 changes: 0 additions & 4 deletions docs/md/README_top.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ the members of our learning community.

#### <a href="source_2_typed/">Source §2 Typed</a>

#### <a href="source_3_concurrent/">Source §3 Concurrent</a>

#### <a href="source_3_typed/">Source §3 Typed</a>

#### <a href="source_4_typed/">Source §4 Typed</a>
Expand All @@ -58,8 +56,6 @@ the Source Academy.

#### <a href="source_2_typed.pdf">Specification of Source §2 Typed</a>

#### <a href="source_3_concurrent.pdf">Specification of Source §3 Concurrent</a>

#### <a href="source_3_typed.pdf">Specification of Source §3 Typed</a>

#### <a href="source_4_typed.pdf">Specification of Source §4 Typed</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/specs/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PDFLATEX = latexmk -pdf

SPECSNUMS = 1 1_wasm 1_type_inference 1_infinite_loop_detection 1_typed 2 2_typed 3_type_inference 3 3_concurrent 3_typed 4 4_explicitcontrol 4_typed styleguide 2_stepper studio_2 python_1
SPECSNUMS = 1 1_wasm 1_type_inference 1_infinite_loop_detection 1_typed 2 2_typed 3_type_inference 3 3_typed 4 4_explicitcontrol 4_typed styleguide 2_stepper studio_2 python_1

SPECS = $(SPECSNUMS:%=source_%)

Expand Down
106 changes: 0 additions & 106 deletions docs/specs/source_3_concurrent.tex

This file was deleted.

9 changes: 0 additions & 9 deletions docs/specs/source_concurrency.tex

This file was deleted.

1 change: 0 additions & 1 deletion scripts/autocomplete.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const TARGETS = [
"source_2",
"source_2_typed",
"source_3",
"source_3_concurrent",
"source_3_typed",
"source_4",
"source_4_typed",
Expand Down
21 changes: 0 additions & 21 deletions scripts/docs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -71,20 +71,6 @@ const configs = {
"pairmutator.js"
]
},
"Source §3 Concurrent": {
"readme": "README_3_CONCURRENT.md",
"dst": "source_3_concurrent/",
"libs": [
"auxiliary.js",
"misc.js",
"math.js",
"list.js",
"stream.js",
"array.js",
"pairmutator.js",
"concurrency.js"
]
},
"Source §3 Typed": {
"readme": "README_3_TYPED.md",
"dst": "source_3_typed/",
Expand Down Expand Up @@ -190,13 +176,6 @@ const configs = {
"pairmutator.js"
]
},
"CONCURRENCY": {
"readme": "README_CONCURRENCY.md",
"dst": "CONCURRENCY/",
"libs": [
"concurrency.js"
]
},
"MCE": {
"readme": "README_MCE.md",
"dst": "MCE/",
Expand Down
Loading
Loading