Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #431 from eclipse/cd_lib_issue87
Browse files Browse the repository at this point in the history
[eclipse/xtext-lib#87] added getResolvedErasureSignature to ResolvedExecutable
  • Loading branch information
cdietrich authored Apr 23, 2018
2 parents e9ee51b + 465cef9 commit 8def762
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ class ResolvedExecutableImpl<T extends IResolvedExecutable, D extends Executable
override toString() {
delegate.toString
}

override getResolvedErasureSignature() {
delegate.resolvedErasureSignature
}

}

class ResolvedMethodImpl extends ResolvedExecutableImpl<IResolvedOperation, MethodDeclaration> implements ResolvedMethod {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,9 @@ public String getSimpleSignature() {
public String toString() {
return this.getDelegate().toString();
}

@Override
public String getResolvedErasureSignature() {
return this.getDelegate().getResolvedErasureSignature();
}
}

0 comments on commit 8def762

Please sign in to comment.