File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ class ExternalApi extends DotNet::Callable {
37
37
/**
38
38
* Gets the unbound type, name and parameter types of this API.
39
39
*/
40
+ bindingset [ this ]
40
41
private string getSignature ( ) {
41
42
result =
42
43
this .getDeclaringType ( ) .getUnboundDeclaration ( ) + "." + this .getName ( ) + "(" +
@@ -46,11 +47,13 @@ class ExternalApi extends DotNet::Callable {
46
47
/**
47
48
* Gets the namespace of this API.
48
49
*/
50
+ bindingset [ this ]
49
51
string getNamespace ( ) { this .getDeclaringType ( ) .hasQualifiedName ( result , _) }
50
52
51
53
/**
52
54
* Gets the namespace and signature of this API.
53
55
*/
56
+ bindingset [ this ]
54
57
string getApiName ( ) { result = this .getNamespace ( ) + "#" + this .getSignature ( ) }
55
58
56
59
/** Gets a node that is an input to a call to this API. */
You can’t perform that action at this time.
0 commit comments