Skip to content

Commit

Permalink
fix(compiler-core): typeof should be allowed in browser expression va…
Browse files Browse the repository at this point in the history
…lidation (#7037)
  • Loading branch information
s-rigaud committed Nov 14, 2022
1 parent 11bd8db commit 3783866
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/compiler-core/src/validateExpression.ts
@@ -1,16 +1,15 @@
// these keywords should not appear inside expressions, but operators like

import { SimpleExpressionNode } from './ast'
import { TransformContext } from './transform'
import { createCompilerError, ErrorCodes } from './errors'

// typeof, instanceof and in are allowed
// these keywords should not appear inside expressions, but operators like
// 'typeof', 'instanceof', and 'in' are allowed
const prohibitedKeywordRE = new RegExp(
'\\b' +
(
'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +
'super,throw,while,yield,delete,export,import,return,switch,default,' +
'extends,finally,continue,debugger,function,arguments,typeof,void'
'arguments,await,break,case,catch,class,const,continue,debugger,default,' +
'delete,do,else,export,extends,finally,for,function,if,import,let,new,' +
'return,super,switch,throw,try,var,void,while,with,yield'
)
.split(',')
.join('\\b|\\b') +
Expand Down

0 comments on commit 3783866

Please sign in to comment.