Skip to content

Commit da30aa2

Browse files
authored
Merge pull request #34 from tokyRT/main
add famixCPreproc as remote entity in order to have C testing methods…
2 parents a0a9445 + 28284cb commit da30aa2

12 files changed

+188
-160
lines changed

src/Famix-C-Entities/FamixCEntity.class.st

Lines changed: 0 additions & 136 deletions
This file was deleted.

src/Famix-C-Entities/FamixCEntityTyping.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"
2525
Class {
2626
#name : 'FamixCEntityTyping',
27-
#superclass : 'FamixCEntity',
27+
#superclass : 'FamixCPreprocEntity',
2828
#traits : 'FamixTEntityTyping',
2929
#classTraits : 'FamixTEntityTyping classTrait',
3030
#category : 'Famix-C-Entities-Entities',
@@ -35,7 +35,7 @@ Class {
3535
{ #category : 'meta' }
3636
FamixCEntityTyping class >> annotation [
3737

38-
<FMClass: #EntityTyping super: #FamixCEntity>
38+
<FMClass: #EntityTyping super: #FamixCPreprocEntity>
3939
<package: #'Famix-C-Entities'>
4040
<generated>
4141
^ self
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
Extension { #name : 'FamixCPreprocEntity' }
2+
3+
{ #category : '*Famix-C-Entities' }
4+
FamixCPreprocEntity >> isAccess [
5+
6+
<generated>
7+
^ false
8+
]
9+
10+
{ #category : '*Famix-C-Entities' }
11+
FamixCPreprocEntity >> isAssociation [
12+
13+
<generated>
14+
^ false
15+
]
16+
17+
{ #category : '*Famix-C-Entities' }
18+
FamixCPreprocEntity >> isAttribute [
19+
20+
<generated>
21+
^ false
22+
]
23+
24+
{ #category : '*Famix-C-Entities' }
25+
FamixCPreprocEntity >> isBehavioural [
26+
27+
<generated>
28+
^ false
29+
]
30+
31+
{ #category : '*Famix-C-Entities' }
32+
FamixCPreprocEntity >> isComment [
33+
34+
<generated>
35+
^ false
36+
]
37+
38+
{ #category : '*Famix-C-Entities' }
39+
FamixCPreprocEntity >> isEnumValue [
40+
41+
<generated>
42+
^ false
43+
]
44+
45+
{ #category : '*Famix-C-Entities' }
46+
FamixCPreprocEntity >> isFileAnchor [
47+
48+
<generated>
49+
^ false
50+
]
51+
52+
{ #category : '*Famix-C-Entities' }
53+
FamixCPreprocEntity >> isFunction [
54+
55+
<generated>
56+
^ false
57+
]
58+
59+
{ #category : '*Famix-C-Entities' }
60+
FamixCPreprocEntity >> isInvocation [
61+
62+
<generated>
63+
^ false
64+
]
65+
66+
{ #category : '*Famix-C-Entities' }
67+
FamixCPreprocEntity >> isLocalVariable [
68+
69+
<generated>
70+
^ false
71+
]
72+
73+
{ #category : '*Famix-C-Entities' }
74+
FamixCPreprocEntity >> isNamedEntity [
75+
76+
<generated>
77+
^ false
78+
]
79+
80+
{ #category : '*Famix-C-Entities' }
81+
FamixCPreprocEntity >> isPrimitiveType [
82+
83+
<generated>
84+
^ false
85+
]
86+
87+
{ #category : '*Famix-C-Entities' }
88+
FamixCPreprocEntity >> isReference [
89+
90+
<generated>
91+
^ false
92+
]
93+
94+
{ #category : '*Famix-C-Entities' }
95+
FamixCPreprocEntity >> isStructuralEntity [
96+
97+
<generated>
98+
^ false
99+
]
100+
101+
{ #category : '*Famix-C-Entities' }
102+
FamixCPreprocEntity >> isType [
103+
104+
<generated>
105+
^ false
106+
]

src/Famix-C-Entities/FamixCRelativeSourceAnchor.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"
2121
Class {
2222
#name : 'FamixCRelativeSourceAnchor',
23-
#superclass : 'FamixCEntity',
23+
#superclass : 'FamixCPreprocEntity',
2424
#traits : 'FamixTRelativeSourceAnchor',
2525
#classTraits : 'FamixTRelativeSourceAnchor classTrait',
2626
#category : 'Famix-C-Entities-Entities',
@@ -31,7 +31,7 @@ Class {
3131
{ #category : 'meta' }
3232
FamixCRelativeSourceAnchor class >> annotation [
3333

34-
<FMClass: #RelativeSourceAnchor super: #FamixCEntity>
34+
<FMClass: #RelativeSourceAnchor super: #FamixCPreprocEntity>
3535
<package: #'Famix-C-Entities'>
3636
<generated>
3737
^ self

src/Famix-C-Entities/FamixCSourceAnchor.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"
1313
Class {
1414
#name : 'FamixCSourceAnchor',
15-
#superclass : 'FamixCEntity',
15+
#superclass : 'FamixCPreprocEntity',
1616
#traits : 'FamixTSourceAnchor',
1717
#classTraits : 'FamixTSourceAnchor classTrait',
1818
#category : 'Famix-C-Entities-Entities',
@@ -23,7 +23,7 @@ Class {
2323
{ #category : 'meta' }
2424
FamixCSourceAnchor class >> annotation [
2525

26-
<FMClass: #SourceAnchor super: #FamixCEntity>
26+
<FMClass: #SourceAnchor super: #FamixCPreprocEntity>
2727
<package: #'Famix-C-Entities'>
2828
<generated>
2929
<abstract>

src/Famix-C-Entities/FamixCSourceLanguage.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"
1313
Class {
1414
#name : 'FamixCSourceLanguage',
15-
#superclass : 'FamixCEntity',
15+
#superclass : 'FamixCPreprocEntity',
1616
#traits : 'FamixTSourceLanguage',
1717
#classTraits : 'FamixTSourceLanguage classTrait',
1818
#category : 'Famix-C-Entities-Entities',
@@ -23,7 +23,7 @@ Class {
2323
{ #category : 'meta' }
2424
FamixCSourceLanguage class >> annotation [
2525

26-
<FMClass: #SourceLanguage super: #FamixCEntity>
26+
<FMClass: #SourceLanguage super: #FamixCPreprocEntity>
2727
<package: #'Famix-C-Entities'>
2828
<generated>
2929
^ self

src/Famix-C-Entities/FamixCSourcedEntity.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"
1313
Class {
1414
#name : 'FamixCSourcedEntity',
15-
#superclass : 'FamixCEntity',
15+
#superclass : 'FamixCPreprocEntity',
1616
#traits : 'FamixTSourceEntity',
1717
#classTraits : 'FamixTSourceEntity classTrait',
1818
#category : 'Famix-C-Entities-Entities',
@@ -23,7 +23,7 @@ Class {
2323
{ #category : 'meta' }
2424
FamixCSourcedEntity class >> annotation [
2525

26-
<FMClass: #SourcedEntity super: #FamixCEntity>
26+
<FMClass: #SourcedEntity super: #FamixCPreprocEntity>
2727
<package: #'Famix-C-Entities'>
2828
<generated>
2929
<abstract>

0 commit comments

Comments
 (0)