-
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 #36 from moosetechnology/31-create-FamixF77Implicit
- Loading branch information
Showing
5 changed files
with
138 additions
and
3 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/Famix-Fortran77-Entities/FamixF77ExternalDeclaration.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,18 @@ | ||
" | ||
Im a external declaration. | ||
[See more](https://docs.oracle.com/cd/E19957-01/805-4939/6j4m0vn9d/index.html) | ||
" | ||
Class { | ||
#name : #FamixF77ExternalDeclaration, | ||
#superclass : #FamixF77NamedEntity, | ||
#category : #'Famix-Fortran77-Entities-Entities' | ||
} | ||
|
||
{ #category : #meta } | ||
FamixF77ExternalDeclaration class >> annotation [ | ||
|
||
<FMClass: #ExternalDeclaration super: #FamixF77NamedEntity> | ||
<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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
" | ||
[Implicit](https://docs.oracle.com/cd/E19957-01/805-4939/6j4m0vn9v/index.html) statement | ||
" | ||
Class { | ||
#name : #FamixF77Implicit, | ||
#superclass : #FamixF77Entity, | ||
#instVars : [ | ||
'#letters => FMProperty', | ||
'#type => FMProperty' | ||
], | ||
#category : #'Famix-Fortran77-Entities-Entities' | ||
} | ||
|
||
{ #category : #meta } | ||
FamixF77Implicit class >> annotation [ | ||
|
||
<FMClass: #Implicit super: #FamixF77Entity> | ||
<package: #'Famix-Fortran77-Entities'> | ||
<generated> | ||
^ self | ||
] | ||
|
||
{ #category : #accessing } | ||
FamixF77Implicit >> letters [ | ||
|
||
<FMProperty: #letters type: #Object> | ||
<generated> | ||
^ letters | ||
] | ||
|
||
{ #category : #accessing } | ||
FamixF77Implicit >> letters: anObject [ | ||
<generated> | ||
letters := anObject | ||
] | ||
|
||
{ #category : #accessing } | ||
FamixF77Implicit >> type [ | ||
|
||
<FMProperty: #type type: #FamixTType> | ||
<generated> | ||
^ type | ||
] | ||
|
||
{ #category : #accessing } | ||
FamixF77Implicit >> type: anObject [ | ||
<generated> | ||
type := anObject | ||
] |
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