forked from idris-lang/Idris2
-
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.
feat(idris-lang#3400): generate only es6 -> implement, but not tested…
… on libraries
- Loading branch information
Showing
58 changed files
with
1,207 additions
and
503 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
module Calculator | ||
|
||
import Data.List1 | ||
import Text.Lexer | ||
import Text.Parser | ||
|
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
module LambdaCalculus | ||
|
||
import Data.List | ||
import Data.List1 | ||
import Text.Lexer | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build base.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install base.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src base.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc base.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build contrib.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install contrib.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src contrib.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc contrib.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean |
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build linear.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install linear.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src linear.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc linear.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean |
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 |
---|---|---|
@@ -1,14 +1,23 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build network.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install network.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src network.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc network.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean | ||
|
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build papers.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install papers.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src papers.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc papers.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean |
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build prelude.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install prelude.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src prelude.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc prelude.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean |
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
all: | ||
all: build | ||
.PHONY: all | ||
|
||
build: | ||
${IDRIS2} --build test.ipkg | ||
.PHONY: build | ||
|
||
install: | ||
${IDRIS2} --install test.ipkg | ||
.PHONY: install | ||
|
||
install-with-src: | ||
${IDRIS2} --install-with-src test.ipkg | ||
.PHONY: install-with-src | ||
|
||
docs: | ||
${IDRIS2} --mkdoc test.ipkg | ||
.PHONY: docs | ||
|
||
clean: | ||
$(RM) -r build | ||
.PHONY: clean |
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.