Skip to content

Commit

Permalink
delete Attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
AyechiNour committed Jul 4, 2024
1 parent f755526 commit eb8e5a6
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 93 deletions.
55 changes: 0 additions & 55 deletions src/Famix-TypeScript-Entities/FamixTypeScriptAttribute.class.st

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,6 @@ FamixTypeScriptImportingContext >> importArrowFunction [
^ self importConcreteEntity: (self class fm3ClassNamed: #ArrowFunction)
]

{ #category : #importing }
FamixTypeScriptImportingContext >> importAttribute [

<generated>
^ self importConcreteEntity: (self class fm3ClassNamed: #Attribute)
]

{ #category : #importing }
FamixTypeScriptImportingContext >> importBehaviouralEntity [

Expand Down Expand Up @@ -358,13 +351,6 @@ FamixTypeScriptImportingContext >> shouldImportArrowFunction [
^ self shouldImport: #ArrowFunction
]

{ #category : #testing }
FamixTypeScriptImportingContext >> shouldImportAttribute [

<generated>
^ self shouldImport: #Attribute
]

{ #category : #testing }
FamixTypeScriptImportingContext >> shouldImportBehaviouralEntity [

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,6 @@ FamixTypeScriptTEntityCreator >> newArrowFunctionNamed: aName [
^ self add: (FamixTypeScriptArrowFunction named: aName)
]

{ #category : #'entity creation' }
FamixTypeScriptTEntityCreator >> newAttribute [

<generated>
^ self add: FamixTypeScriptAttribute new
]

{ #category : #'entity creation' }
FamixTypeScriptTEntityCreator >> newAttributeNamed: aName [

<generated>
^ self add: (FamixTypeScriptAttribute named: aName)
]

{ #category : #'entity creation' }
FamixTypeScriptTEntityCreator >> newBehaviouralEntity [

Expand Down
10 changes: 0 additions & 10 deletions src/Famix-TypeScript-Generator/FamixTypeScriptGenerator.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Class {
#superclass : #FamixBasicInfrastructureGenerator,
#instVars : [
'access',
'attribute',
'class',
'type',
'namespace',
Expand Down Expand Up @@ -173,7 +172,6 @@ FamixTypeScriptGenerator >> defineClasses [
access := builder newClassNamed: #Access.
accessor := builder newClassNamed: #Accessor comment: 'I represent a TypeScript Accessor (getter or setter)'.
alias := builder newClassNamed: #Alias.
attribute := builder newClassNamed: #Attribute.
behaviouralEntity := builder newClassNamed: #BehaviouralEntity comment: 'I represent an abstraction of various entities that have behavior.'.
class := builder newClassNamed: #Class comment: 'I represent a TypeScript class.'.
class withTesting.
Expand Down Expand Up @@ -414,14 +412,6 @@ FamixTypeScriptGenerator >> defineHierarchy [
variable --|> #TImportable.

parameterType --|> #TWithInheritances.

attribute --|> namedEntity.
attribute --|> #TAttribute.
attribute --|> #TCanBeFinal.
attribute --|> #THasVisibility.
attribute --|> #TInvocationsReceiver.
attribute --|> #TWithComments.
attribute --|> #TCanBeClassSide.
]

{ #category : #definition }
Expand Down

0 comments on commit eb8e5a6

Please sign in to comment.