Skip to content

Commit

Permalink
Fix some Unknown property messages in Transcript when loading models
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhrmanator committed Jul 30, 2024
1 parent f1de6fe commit 453de10
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/Famix-TypeScript-Generator/FamixTypeScriptGenerator.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -340,21 +340,24 @@ FamixTypeScriptGenerator >> defineHierarchy [
"Module"
module --|> scriptEntity.
module --|> #TWithLocalVariables. "var can have module scope"
module --|> #TWithComments.
module --|> #TWithImports.
"module --|> #TWithNamespaces." "define this Trait for TypeScript namespaces"
module --|> #TImportable.

namespace --|> scopingEntity.
namespace --|> #TNamespace. "no use (empty trait)"
namespace --|> #TDefinedInModule.
namespace --|> #TImportable.

namedEntity --|> sourcedEntity.
namedEntity --|> #TInvocationsReceiver.
namedEntity --|> #TEntityMetaLevelDependency.
namedEntity --|> #TImportable. "Allow us abstract imported entities"
namedEntity --|> sourcedEntity.

parameter --|> structuralEntity.
parameter --|> #TParameter.
parameter --|> #TWithComments.

parameterType --|> type.
parameterType --|> #TGenericParameterType.
Expand Down Expand Up @@ -438,12 +441,7 @@ FamixTypeScriptGenerator >> defineProperties [
{ #category : #definition }
FamixTypeScriptGenerator >> defineRelations [
super defineRelations.
(decorator property: #decoratedEntity) *- (namedEntity property:#decorators).





(decorator property: #decoratedEntity) *- (namedEntity property: #decorators).
]

{ #category : #definition }
Expand Down

0 comments on commit 453de10

Please sign in to comment.