We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 617de40 + 0b5297b commit 2c46310Copy full SHA for 2c46310
src/Famix-TypeScript-Extensions/FamixTypeScriptParametricMethod.extension.st
@@ -0,0 +1,15 @@
1
+Extension { #name : #FamixTypeScriptParametricMethod }
2
+
3
+{ #category : #'*Famix-TypeScript-Extensions' }
4
+FamixTypeScriptParametricMethod >> isConcreteEntity [
5
+ "I am concrete if I concretize a generic entity."
6
7
+ ^ self concreteParameters isNotNil
8
+]
9
10
11
+FamixTypeScriptParametricMethod >> isGenericEntity [
12
+ "I am generic if I don't concretize a generic entity."
13
14
+ ^ self genericParameters isNotNil
15
0 commit comments