-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from moosetechnology/unknown-variable
Created FamixF77UnkownVariable
- Loading branch information
Showing
5 changed files
with
89 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/Famix-Fortran77-Entities/FamixF77UnknownVariable.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
" | ||
Variable used but not resolved | ||
## Relations | ||
====================== | ||
### Incoming dependencies | ||
| Relation | Origin | Opposite | Type | Comment | | ||
|---| | ||
| `incomingAccesses` | `FamixTAccessible` | `variable` | `FamixTAccess` | All Famix accesses pointing to this structural entity| | ||
### Other | ||
| Relation | Origin | Opposite | Type | Comment | | ||
|---| | ||
| `declaredType` | `FamixTTypedEntity` | `typedEntities` | `FamixTType` | Type of the entity, if any| | ||
| `sourceAnchor` | `FamixTSourceEntity` | `element` | `FamixTSourceAnchor` | SourceAnchor entity linking to the original source code for this entity| | ||
## Properties | ||
====================== | ||
| Name | Type | Default value | Comment | | ||
|---| | ||
| `isStub` | `Boolean` | false | Flag true if the entity attributes are incomplete, either because the entity is missing or not imported.| | ||
| `name` | `String` | nil | Basic name of the entity, not full reference.| | ||
" | ||
Class { | ||
#name : #FamixF77UnknownVariable, | ||
#superclass : #FamixF77Entity, | ||
#traits : 'FamixTUnknownVariable', | ||
#classTraits : 'FamixTUnknownVariable classTrait', | ||
#category : #'Famix-Fortran77-Entities-Entities' | ||
} | ||
|
||
{ #category : #meta } | ||
FamixF77UnknownVariable class >> annotation [ | ||
|
||
<FMClass: #UnknownVariable super: #FamixF77Entity> | ||
<package: #'Famix-Fortran77-Entities'> | ||
<generated> | ||
^ self | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters