Skip to content

Commit 34cae07

Browse files
committed
Fixed EOF member end
1 parent 105d3f6 commit 34cae07

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Source/Decode.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ function member(state){
141141
const token = tokens.next();
142142

143143
if(token.done)
144-
throw 'Missing Member End';
144+
return;
145+
// throw 'Missing Member End';
145146

146147
const { type } = token.value;
147148

0 commit comments

Comments
 (0)