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

#0.1.8 / 2013-08-14 #48

Merged
merged 1 commit into from Aug 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/History.html
Expand Up @@ -178,6 +178,10 @@



<h1>0.1.8 / 2013-08-14</h1>
<ul>
<li>Fixed scoping issue where scoped variables defined in compile were not available to defined classes or functions.</li>
</ul>
<h1>0.1.7 / 2013-06-25</h1>
<ul>
<li>Fixed constraint parser to not evaluate functions that have the same name as operators as operators.</li>
Expand Down
10 changes: 5 additions & 5 deletions docs/nools.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions history.md
@@ -1,3 +1,7 @@
#0.1.8 / 2013-08-14

* Fixed scoping issue where scoped variables defined in compile were not available to defined classes or functions.

#0.1.7 / 2013-06-25

* Fixed constraint parser to not evaluate functions that have the same name as operators as operators.
Expand Down
2 changes: 1 addition & 1 deletion lib/compile/index.js
Expand Up @@ -164,7 +164,7 @@ exports.compile = function (flowObj, options, cb, Container) {
flow.addDefined(name, cls);
});

var scopeNames = extd(flowObj.scope).pluck("name").union(extd(scope).keys()).value();
var scopeNames = extd(flowObj.scope).pluck("name").union(extd(scope).keys().value()).value();
var definedNames = map(keys(defined), function (s) {
return s;
});
Expand Down