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

Expose {method,module}Name on Method class #975

Merged
merged 2 commits into from
Jun 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions packages/types/src/primitive/Method.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,20 @@ export default class Method extends Struct implements IMethod {
return this._meta;
}

/**
* @description Returns the name of the method
*/
get methodName (): string {
return Method.findFunction(this.callIndex).method;
}

/**
* @description Returns the module containing the method
*/
get sectionName (): string {
return Method.findFunction(this.callIndex).section;
}

/**
* @description Returns the base runtime type name for this instance
*/
Expand Down