Skip to content

Commit

Permalink
small notes, stuff for auth/contrib
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed Sep 5, 2017
1 parent f5c9f6a commit 4305f36
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,3 +1,4 @@
* [[`f5c9f6a363`](https://github.com/StoneCypher/jssm/commit/f5c9f6a363)] - all the attributes are now parsed (John Haugeland)
* [[`631c5c6e6c`](https://github.com/StoneCypher/jssm/commit/631c5c6e6c)] - 5.5.0 comment fixes and minor trash (John Haugeland)
* [[`25a9bb8391`](https://github.com/StoneCypher/jssm/commit/25a9bb8391)] - comment testing (John Haugeland)
* [[`124c2654c7`](https://github.com/StoneCypher/jssm/commit/124c2654c7)] - Merge pull request #304 from msmorgan/bugfix/comment-grammar (John Haugeland)
Expand Down
3 changes: 2 additions & 1 deletion build/jssm.es5.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions build/jssm.es5.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/jssm.es5.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/js/jssm.js
Expand Up @@ -287,6 +287,8 @@ class Machine<mNT, mDT> {
_actions : Map<mNT, Map<mNT, number>>;
_reverse_actions : Map<mNT, Map<mNT, number>>;
_reverse_action_targets : Map<mNT, Map<mNT, number>>;
_author : Array<string>;
_contributor : Array<string>;

_graph_layout : JssmLayout;

Expand Down Expand Up @@ -543,7 +545,7 @@ class Machine<mNT, mDT> {

const wstate_to : Array< mNT > = wstate.to,

wtf : Array< JssmTransition<mNT, mDT> >
wtf : Array< JssmTransition<mNT, mDT> > // wstate_to_filtered -> wtf
= wstate_to
.map( (ws) : ?JssmTransition<mNT, mDT> => this.lookup_transition_for(this.state(), ws))
.filter(Boolean);
Expand Down

0 comments on commit 4305f36

Please sign in to comment.