Set exprAllowed to false for star token (#11449)

This commit is contained in:
Brian Ng
2020-04-21 14:22:40 -05:00
committed by GitHub
parent fba64d439d
commit 40c517ed84
15 changed files with 465 additions and 0 deletions

View File

@@ -136,3 +136,7 @@ tt.backQuote.updateContext = function() {
}
this.state.exprAllowed = false;
};
tt.star.updateContext = function() {
this.state.exprAllowed = false;
};