Skip to content

Commit

Permalink
V0.24.1, updated to khepri-compile 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbierner committed Apr 16, 2014
1 parent 2ebdc16 commit 55e0535
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.project
node_modules
_site
.settings

# OS Files #
############
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# ChangeLog #

## 0.24.1 - April 16, 2014
* Fixed bug that could cause the arguments unpack of an inlined function to be
pruned.
* Improvements to constant folding of non-immutable bindings.

## 0.24.0 - April 15, 2014
* Assignment expressions not counted in reachability.
* `delete` may only be used on member expressions and not identifiers.
* Calls to lambdas that use the arguments object can be inlined.

## 0.23.1 - April 13, 2014
* Compiler ~2x faster.

Expand Down
4 changes: 2 additions & 2 deletions lib/compile.kep
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ with
import 'khepri-compile::compile' khepriCompile
in {

var compiler = \input, options ->
var compiler := \input options ->
lex input
|> parseStream
|> (\x -> khepriCompile(x, options))
|> \x -> khepriCompile(x, options)
|> unparse
|> print;

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "khepri",
"preferGlobal": true,
"version": "0.23.2",
"version": "0.24.1",
"description": "Khepri Programming Language",
"author": "Matt Bierner",
"license": "MIT",
Expand Down Expand Up @@ -36,7 +36,7 @@
"dependencies": {
"khepri-ast": "3.9.x",

"khepri-compile": "0.5.2",
"khepri-compile": "0.5.3",
"khepri-parse": "1.0.0",

"ecma-unparse": "3.3.x",
Expand Down

0 comments on commit 55e0535

Please sign in to comment.