Replace syntax

This commit is contained in:
MaiaVictor 2021-11-10 01:56:05 -03:00
parent 03f4ed9ffd
commit 12706e3a9a
4 changed files with 14867 additions and 14549 deletions

View File

@ -1,3 +1,13 @@
## Kind 1.0.112
- Replace syntax is like rewrite, but equality is reversed
replace x with e in goal
This replaces the right side of the equality by the left side in the goal
This should be more robust since it doesn't need to use mirror and, thus,
avoids some holes
## Kind 1.0.108
- Allow "for" to be on the left side of a list comprehension

View File

@ -33,6 +33,7 @@ Kind.Parser.term: Parser(Kind.Term)
Kind.Parser.use((x) Kind.Parser.term)
Kind.Parser.implicit
Kind.Parser.goal_rewrite
Kind.Parser.goal_replace
Kind.Parser.if
Kind.Parser.char
Kind.Parser.string('"')

View File

@ -1,6 +1,6 @@
{
"name": "kind-lang",
"version": "1.0.111",
"version": "1.0.112",
"description": "Kind-Lang in JavaScript",
"main": "src/kind.js",
"scripts": {

File diff suppressed because it is too large Load Diff