Skip to content

Commit

Permalink
fix: fix function expression regex (#9922)
Browse files Browse the repository at this point in the history
fix #9920
  • Loading branch information
Justineo authored and yyx990803 committed Apr 25, 2019
1 parent ab50e8e commit 569b728
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/codegen/events.js
@@ -1,6 +1,6 @@
/* @flow */

const fnExpRE = /^([\w$_]+|\([^)]*?\))\s*=>|^function\s*(?:[\w$]+)?\s*\(/
const fnExpRE = /^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/
const fnInvokeRE = /\([^)]*?\);*$/
const simplePathRE = /^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/

Expand Down
5 changes: 5 additions & 0 deletions test/unit/modules/compiler/codegen.spec.js
Expand Up @@ -345,6 +345,11 @@ describe('codegen', () => {
`<input @input="onInput(');[\\'());');">`,
`with(this){return _c('input',{on:{"input":function($event){onInput(');[\\'());');}}})}`
)
// function name including a `function` part (#9920)
assertCodegen(
'<input @input="functionName()">',
`with(this){return _c('input',{on:{"input":function($event){return functionName()}}})}`
)
})

it('generate events with multiple statements', () => {
Expand Down

0 comments on commit 569b728

Please sign in to comment.