Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
fix custom pragma storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott J. Miles committed Feb 19, 2014
1 parent f9e9c87 commit c6d0c91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion context-free-parser.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
switch (pragma) {

case 'class':
case 'element':
current = {
name: content,
description: code
Expand All @@ -87,7 +88,8 @@
break;

default:
makePragma(current, pragma, content);
current[pragma] = content;
//makePragma(current, pragma, content);
break;
}
});
Expand Down

0 comments on commit c6d0c91

Please sign in to comment.