Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(propDefinition): 函数匹配支持参数表和异步函数 #39

Merged
merged 1 commit into from
Jun 23, 2019

Conversation

NewFuture
Copy link
Contributor

// √
getUserInfo:(e:any)=>{}
// √
getUserInfo:(
	   e:{}
 )=>{}
// √
getUserInfo:async (e:any)=>{}

// √
getUserInfo: async function(){}
// ×
getUserInfo: async,
// ×
getUserInfo: functionx,

// √
 getUserInfo(e) {}

// √
async getUserInfo(e) {

@qiu8310 qiu8310 merged commit a8aa63b into wx-minapp:master Jun 23, 2019
@NewFuture NewFuture deleted the feat-function-link branch June 25, 2019 12:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants