Skip to content

Commit

Permalink
Fixed EOF member end
Browse files Browse the repository at this point in the history
  • Loading branch information
IHateYourCode committed Jul 23, 2022
1 parent 105d3f6 commit 34cae07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Decode.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ function member(state){
const token = tokens.next();

if(token.done)
throw 'Missing Member End';
return;
// throw 'Missing Member End';

const { type } = token.value;

Expand Down

0 comments on commit 34cae07

Please sign in to comment.